]> sourceware.org Git - dm.git/log
dm.git
19 years ago o forgot to add this
AJ Lewis [Tue, 3 May 2005 18:23:23 +0000 (18:23 +0000)]
 o forgot to add this

19 years agoworking dm_get_registered_device(). dmevent.c update to use it.
Heinz Mauelshagen [Tue, 3 May 2005 16:15:20 +0000 (16:15 +0000)]
working dm_get_registered_device(). dmevent.c update to use it.

19 years agomore dm_get_registered_device() code
Heinz Mauelshagen [Tue, 3 May 2005 13:50:42 +0000 (13:50 +0000)]
more dm_get_registered_device() code

19 years agoindentation
Heinz Mauelshagen [Tue, 3 May 2005 09:13:43 +0000 (09:13 +0000)]
indentation

19 years ago o Changes to configure script to handle async logging directory for
AJ Lewis [Mon, 2 May 2005 22:20:46 +0000 (22:20 +0000)]
 o Changes to configure script to handle async logging directory for
   multilog

19 years ago o Moved the circular buffer code into a separate dynamic library
AJ Lewis [Mon, 2 May 2005 22:13:32 +0000 (22:13 +0000)]
 o Moved the circular buffer code into a separate dynamic library
   called libmultilog_async so that users of multilog aren't required to
   use pthreads
 o multilog now has a way to add logging types and remove types, and can be
   called from other libraries.
 o multiple logging types can be in place at a time, and they are all
   called in turn when log_* fxns are called
 o Currently, the 'standard' (stderr) logging type is registered if
   multilog is called with no log types registered.  I'm not sure that's
   the best way to do things, but it's what I'm doing for now.

19 years agodmeventd was looking for dsos with libdmeventd<name>.so
Benjamin Marzinski [Mon, 2 May 2005 19:34:25 +0000 (19:34 +0000)]
dmeventd was looking for dsos with libdmeventd<name>.so
The Makefile turned noop.c into    libdmeventnoop.so
The Makefile now turns noop.c into libdmeventdnoop.so

19 years agostopped printing a string after we erased the pointer to it.
Benjamin Marzinski [Mon, 2 May 2005 18:43:23 +0000 (18:43 +0000)]
stopped printing a string after we erased the pointer to it.

19 years agoremoved the -lmultilog for now.
Benjamin Marzinski [Mon, 2 May 2005 18:42:07 +0000 (18:42 +0000)]
removed the -lmultilog for now.

19 years agoget the makefile to clean up the .o's
Benjamin Marzinski [Mon, 2 May 2005 17:41:54 +0000 (17:41 +0000)]
get the makefile to clean up the .o's

19 years agoStart fixing get_registered_device()
Heinz Mauelshagen [Mon, 2 May 2005 13:11:40 +0000 (13:11 +0000)]
Start fixing get_registered_device()

19 years agoFixes to comms, list handling to get dmeventd() to work
Heinz Mauelshagen [Mon, 2 May 2005 11:52:04 +0000 (11:52 +0000)]
Fixes to comms, list handling to get dmeventd() to work

19 years agoIntroduce exit() in main() and cleanup signal settings for parent/child
Heinz Mauelshagen [Mon, 2 May 2005 11:02:19 +0000 (11:02 +0000)]
Introduce exit() in main() and cleanup signal settings for parent/child

19 years agomore variable initialization.
Benjamin Marzinski [Fri, 29 Apr 2005 22:12:09 +0000 (22:12 +0000)]
more variable initialization.

19 years agochanged client_path and sever_path from 'char *' to 'const char *' to stop
Benjamin Marzinski [Fri, 29 Apr 2005 21:52:46 +0000 (21:52 +0000)]
changed client_path and sever_path from 'char *' to 'const char *' to stop
compiler warning messages.

19 years agoJust initializing some variables that needed to be.
Benjamin Marzinski [Fri, 29 Apr 2005 21:37:23 +0000 (21:37 +0000)]
Just initializing some variables that needed to be.

19 years agovariables in a signal handler should be static volatile sig_atomic_t
Alasdair Kergon [Fri, 29 Apr 2005 21:21:24 +0000 (21:21 +0000)]
variables in a signal handler should be static volatile sig_atomic_t

19 years agodmeventd depends on multilog
Alasdair Kergon [Fri, 29 Apr 2005 21:14:56 +0000 (21:14 +0000)]
dmeventd depends on multilog

19 years ago o Reorder dmeventd and multilog subdirs so multilog gets compiled first
AJ Lewis [Fri, 29 Apr 2005 21:03:07 +0000 (21:03 +0000)]
 o Reorder dmeventd and multilog subdirs so multilog gets compiled first

19 years ago- no longer exec'ing daemon.
Jonathan Earl Brassow [Fri, 29 Apr 2005 20:41:34 +0000 (20:41 +0000)]
- no longer exec'ing daemon.

- doesn't compile yet 'cause something is trying to link against multilog

- want to get this in... will fix ASAP

19 years agoo checking in instrumented code for AJ to follow up on comms and logging
Heinz Mauelshagen [Fri, 29 Apr 2005 14:56:35 +0000 (14:56 +0000)]
o checking in instrumented code for AJ to follow up on comms and logging

o changed

  int dm_get_next_registered_device(char **dso_name, char **device,
                                    enum event_type *events);

  to

  int dm_get_registered_device(char **dso_name, char **device,
                               enum event_type *events, int next)

  so that the daemon is able to retrive the next one of the list without
  running into locking issues.

o changed dmevent.c to use dm_get_registered_device()

o couldn't test this yet because of the comms issues
  (daemon exits in do_process_request())

19 years agofirst changes to get comms back to work after flock changes
Heinz Mauelshagen [Fri, 29 Apr 2005 13:41:22 +0000 (13:41 +0000)]
first changes to get comms back to work after flock changes

19 years agominor cleanup
Heinz Mauelshagen [Fri, 29 Apr 2005 10:58:34 +0000 (10:58 +0000)]
minor cleanup

19 years ago o Build dmeventd against multilog
AJ Lewis [Thu, 28 Apr 2005 22:47:52 +0000 (22:47 +0000)]
 o Build dmeventd against multilog

19 years ago o add infrastructure to build and use multilog
AJ Lewis [Thu, 28 Apr 2005 22:41:06 +0000 (22:41 +0000)]
 o add infrastructure to build and use multilog

19 years ago o Initial draft of libmultilog - a logging library that, eventually, will
AJ Lewis [Thu, 28 Apr 2005 22:18:22 +0000 (22:18 +0000)]
 o Initial draft of libmultilog - a logging library that, eventually, will
   offer the same logging facilities as the logging in lvm2, plus a
   non-blocking logging for syslog, plus anything else that people think it
   needs.  Currently only the non-blocking syslog logging is implemented.
 o This library requires pthreads

19 years ago- I expanded init_client() because of how the launching of the daemon
Jonathan Earl Brassow [Thu, 28 Apr 2005 21:29:00 +0000 (21:29 +0000)]
- I expanded init_client() because of how the launching of the daemon
  is now interlaced between opening of fifos.

- I eliminated create_fifo[s]() open_fifo[s]() _lock _unlock and maybe
  some other functions.

- I have not completed the launching of the daemon.  What I want is
  to use 'fork()' but not 'exec()'.  The child will call the daemon
  function.  The parent will wait for signal confirmation that the
  daemon is ready or an exit (see CCS for how this is done).

- There is no more client side lock file.

- Clients are serialized so they will not be simultaneous daemon
  launches or interleaved writes to the fifos.

19 years agobuild libdmeventnoop.so for testing
Alasdair Kergon [Thu, 28 Apr 2005 17:32:27 +0000 (17:32 +0000)]
build libdmeventnoop.so for testing

19 years agotest.c->dmevent.c
Alasdair Kergon [Thu, 28 Apr 2005 14:49:41 +0000 (14:49 +0000)]
test.c->dmevent.c

19 years agoo adds dm_get_next_registered_device() (not functional yet)
Alasdair Kergon [Thu, 28 Apr 2005 14:02:25 +0000 (14:02 +0000)]
o adds dm_get_next_registered_device() (not functional yet)
  to retrieve which devices got registered with the daemon;
  needs locking changes as well

19 years agoPrototype for a device-mapper event-handling daemon.
Alasdair Kergon [Wed, 27 Apr 2005 22:31:58 +0000 (22:31 +0000)]
Prototype for a device-mapper event-handling daemon.

19 years agopost-release
Alasdair Kergon [Tue, 29 Mar 2005 18:10:57 +0000 (18:10 +0000)]
post-release

19 years ago1.01.01 v1_01_01
Alasdair Kergon [Tue, 29 Mar 2005 14:47:39 +0000 (14:47 +0000)]
1.01.01

19 years agoUpdate dmsetup man page.
Alasdair Kergon [Tue, 29 Mar 2005 14:46:30 +0000 (14:46 +0000)]
Update dmsetup man page.

19 years agoDrop-in devmap_name replacement.
Alasdair Kergon [Sun, 27 Mar 2005 11:37:45 +0000 (11:37 +0000)]
Drop-in devmap_name replacement.

19 years agoAdd option to compile without ioctl for testing.
Alasdair Kergon [Thu, 27 Jan 2005 16:16:50 +0000 (16:16 +0000)]
Add option to compile without ioctl for testing.

19 years agoFix DM_LIB_VERSION sed
Alasdair Kergon [Thu, 27 Jan 2005 15:53:28 +0000 (15:53 +0000)]
Fix DM_LIB_VERSION sed

19 years agopost-1.01.00
Alasdair Kergon [Mon, 17 Jan 2005 20:12:11 +0000 (20:12 +0000)]
post-1.01.00

19 years ago1.01.00 v1_01_00
Alasdair Kergon [Mon, 17 Jan 2005 20:00:28 +0000 (20:00 +0000)]
1.01.00

19 years agoAdd dm_task_no_open_count() to skip getting open_count.
Alasdair Kergon [Wed, 12 Jan 2005 22:10:10 +0000 (22:10 +0000)]
Add dm_task_no_open_count() to skip getting open_count.

19 years agopost-1.00.21
Alasdair Kergon [Fri, 7 Jan 2005 17:10:16 +0000 (17:10 +0000)]
post-1.00.21

19 years ago1.00.21 v1_00_21
Alasdair Kergon [Fri, 7 Jan 2005 15:53:37 +0000 (15:53 +0000)]
1.00.21

19 years agoFix /proc/devices parsing.
Alasdair Kergon [Fri, 7 Jan 2005 15:39:51 +0000 (15:39 +0000)]
Fix /proc/devices parsing.

19 years agopost-1.00.20
Alasdair Kergon [Thu, 6 Jan 2005 18:41:38 +0000 (18:41 +0000)]
post-1.00.20

19 years ago1.00.20 v1_00_20
Alasdair Kergon [Thu, 6 Jan 2005 18:30:17 +0000 (18:30 +0000)]
1.00.20

19 years agoAttempt to fix /dev/mapper/control transparently if it's wrong.
Alasdair Kergon [Thu, 6 Jan 2005 18:22:43 +0000 (18:22 +0000)]
Attempt to fix /dev/mapper/control transparently if it's wrong.

19 years agoConfiguration-time option for setting uid/gid/mode for /dev/mapper nodes.
Alasdair Kergon [Wed, 5 Jan 2005 22:00:39 +0000 (22:00 +0000)]
Configuration-time option for setting uid/gid/mode for /dev/mapper nodes.

19 years agoupdate
Alasdair Kergon [Fri, 15 Oct 2004 17:31:37 +0000 (17:31 +0000)]
update

19 years ago o patch refresh
AJ Lewis [Fri, 15 Oct 2004 16:56:36 +0000 (16:56 +0000)]
 o patch refresh
   - Adjust maintainership
   - fix vcalloc call in dm-table.c
     - Kevin Corry
   - fix error cleanup in dm-exception-store.c:dm_create_persistent()
     - Dave Olien
   - proper error handling when someone is trying to read from multiple
     regions.
     - Kevin Corry

19 years agoAdd --noheadings option to dmsetup -c for colon-separated output.
Alasdair Kergon [Tue, 12 Oct 2004 16:42:38 +0000 (16:42 +0000)]
Add --noheadings option to dmsetup -c for colon-separated output.

19 years agoSupport device referencing by uuid or major/minor.
Alasdair Kergon [Fri, 1 Oct 2004 19:11:37 +0000 (19:11 +0000)]
Support device referencing by uuid or major/minor.

19 years agoprintf->fprintf
Alasdair Kergon [Fri, 1 Oct 2004 19:07:41 +0000 (19:07 +0000)]
printf->fprintf

20 years agoupdate version
Alasdair Kergon [Sat, 3 Jul 2004 18:28:00 +0000 (18:28 +0000)]
update version

20 years agomisc autoconf fixes v1_00_19
Alasdair Kergon [Sat, 3 Jul 2004 18:17:32 +0000 (18:17 +0000)]
misc autoconf fixes

20 years agofix missing pogen link
Alasdair Kergon [Sat, 3 Jul 2004 18:15:38 +0000 (18:15 +0000)]
fix missing pogen link

20 years agofix a newline
Alasdair Kergon [Sat, 3 Jul 2004 18:15:14 +0000 (18:15 +0000)]
fix a newline

20 years agoset_selinux_context() return code fix
Alasdair Kergon [Sat, 3 Jul 2004 18:14:12 +0000 (18:14 +0000)]
set_selinux_context() return code fix

20 years agoFix device number handling for 2.6 kernels.
Alasdair Kergon [Thu, 1 Jul 2004 15:14:28 +0000 (15:14 +0000)]
Fix device number handling for 2.6 kernels.

20 years agoFix targets string size calc in driver. v1_00_18
Alasdair Kergon [Sun, 20 Jun 2004 13:50:42 +0000 (13:50 +0000)]
Fix targets string size calc in driver.
Fix a uuid free in libdm-iface. [Eric Taylor]
Update version.

20 years agoAdd dmsetup -C for column-based output.
Alasdair Kergon [Wed, 16 Jun 2004 16:44:11 +0000 (16:44 +0000)]
Add dmsetup -C for column-based output.

20 years agoClear message buffer before use.
Alasdair Kergon [Thu, 10 Jun 2004 16:14:16 +0000 (16:14 +0000)]
Clear message buffer before use.

20 years agoSupport new target message ioctl.
Alasdair Kergon [Tue, 8 Jun 2004 20:34:39 +0000 (20:34 +0000)]
Support new target message ioctl.

20 years agofix selinux library linking v1_00_17
Alasdair Kergon [Mon, 19 Apr 2004 14:01:23 +0000 (14:01 +0000)]
fix selinux library linking

20 years agoconfig option to avoid using install -o -g
Alasdair Kergon [Mon, 19 Apr 2004 13:10:05 +0000 (13:10 +0000)]
config option to avoid using install -o -g

20 years agoupdate v1_00_16
Alasdair Kergon [Fri, 16 Apr 2004 16:33:32 +0000 (16:33 +0000)]
update

20 years agoIgnore error setting selinux file context if fs doesn't support it.
Alasdair Kergon [Fri, 16 Apr 2004 12:24:46 +0000 (12:24 +0000)]
Ignore error setting selinux file context if fs doesn't support it.

20 years agoFix status overflow check in kernel patches. v1_00_15
Alasdair Kergon [Wed, 7 Apr 2004 12:39:59 +0000 (12:39 +0000)]
Fix status overflow check in kernel patches.

20 years agofix static selinux build v1_00_14
Alasdair Kergon [Tue, 6 Apr 2004 20:32:00 +0000 (20:32 +0000)]
fix static selinux build

20 years ago1.00.13 v1_00_13
Alasdair Kergon [Tue, 6 Apr 2004 18:57:12 +0000 (18:57 +0000)]
1.00.13

20 years agoadd some selinux support
Alasdair Kergon [Tue, 6 Apr 2004 18:53:56 +0000 (18:53 +0000)]
add some selinux support

20 years agoFix dmsetup.static install. v1_00_12
Alasdair Kergon [Tue, 6 Apr 2004 12:06:53 +0000 (12:06 +0000)]
Fix dmsetup.static install.

20 years agoVersion 1.00.11 v1_00_11
Alasdair Kergon [Mon, 5 Apr 2004 20:51:41 +0000 (20:51 +0000)]
Version 1.00.11

20 years agoCombine static/dynamic build.
Alasdair Kergon [Mon, 5 Apr 2004 20:48:07 +0000 (20:48 +0000)]
Combine static/dynamic build.

20 years agoMove library targets definition into template.
Alasdair Kergon [Mon, 5 Apr 2004 16:20:49 +0000 (16:20 +0000)]
Move library targets definition into template.

20 years agoupdate for 1.00.10 v1_00_10
Alasdair Kergon [Fri, 2 Apr 2004 16:47:43 +0000 (16:47 +0000)]
update for 1.00.10

20 years agovsn 1.00.10
Alasdair Kergon [Fri, 2 Apr 2004 16:17:54 +0000 (16:17 +0000)]
vsn 1.00.10

20 years agotest file
Alasdair Kergon [Fri, 2 Apr 2004 15:57:08 +0000 (15:57 +0000)]
test file

20 years agoBasic internationalisation support.
Alasdair Kergon [Fri, 2 Apr 2004 15:19:23 +0000 (15:19 +0000)]
Basic internationalisation support.

20 years agoBuild process fixes/tidy-ups.
Alasdair Kergon [Fri, 2 Apr 2004 15:18:36 +0000 (15:18 +0000)]
Build process fixes/tidy-ups.

20 years agoupdate text for release v1_00_09
Alasdair Kergon [Wed, 31 Mar 2004 20:09:56 +0000 (20:09 +0000)]
update text for release

20 years agoUpdate version
Alasdair Kergon [Wed, 31 Mar 2004 19:07:51 +0000 (19:07 +0000)]
Update version

20 years agoAdd 2.4 support for DM_LIST_VERSIONS (dmsetup targets).
Alasdair Kergon [Wed, 31 Mar 2004 18:54:16 +0000 (18:54 +0000)]
Add 2.4 support for DM_LIST_VERSIONS (dmsetup targets).
Rebaseline patches to 2.4.26-rc1.

20 years agoreorder files in patch
Alasdair Kergon [Wed, 31 Mar 2004 18:51:59 +0000 (18:51 +0000)]
reorder files in patch

20 years agoUpdate changelog.
Alasdair Kergon [Tue, 30 Mar 2004 19:12:42 +0000 (19:12 +0000)]
Update changelog.

20 years agoUpdate copyright messages.
Alasdair Kergon [Tue, 30 Mar 2004 19:08:56 +0000 (19:08 +0000)]
Update copyright messages.

20 years agoMove full mknodes functionality from dmsetup into libdevmapper.
Alasdair Kergon [Tue, 30 Mar 2004 14:31:51 +0000 (14:31 +0000)]
Move full mknodes functionality from dmsetup into libdevmapper.

20 years agoAvoid sscanf %as for uClibc
Alasdair Kergon [Fri, 19 Mar 2004 15:52:22 +0000 (15:52 +0000)]
Avoid sscanf %as for uClibc

20 years agoDetailed changelog. v1_00_08
Alasdair Kergon [Fri, 27 Feb 2004 22:36:12 +0000 (22:36 +0000)]
Detailed changelog.

20 years agoUpdate README (refer to Resource Page).
Alasdair Kergon [Fri, 27 Feb 2004 20:38:18 +0000 (20:38 +0000)]
Update README (refer to Resource Page).

20 years agoUpdate man page incl. 'targets', event_nr.
Alasdair Kergon [Fri, 27 Feb 2004 19:36:49 +0000 (19:36 +0000)]
Update man page incl. 'targets', event_nr.

20 years agomore syncing with lvm2 build process
Alasdair Kergon [Tue, 24 Feb 2004 19:23:27 +0000 (19:23 +0000)]
more syncing with lvm2 build process

20 years agoSome missing DESTDIRs.
Alasdair Kergon [Tue, 24 Feb 2004 19:05:43 +0000 (19:05 +0000)]
Some missing DESTDIRs.

20 years agoExtract log.h and tweak funcs to be like lvm2 ones.
Alasdair Kergon [Tue, 24 Feb 2004 18:50:08 +0000 (18:50 +0000)]
Extract log.h and tweak funcs to be like lvm2 ones.

20 years agomore makefile syncing
Alasdair Kergon [Tue, 24 Feb 2004 18:46:20 +0000 (18:46 +0000)]
more makefile syncing

20 years agominor makefile tweaks
Alasdair Kergon [Tue, 24 Feb 2004 18:34:24 +0000 (18:34 +0000)]
minor makefile tweaks

20 years agoUpdate autoconf files.
Alasdair Kergon [Tue, 24 Feb 2004 18:33:52 +0000 (18:33 +0000)]
Update autoconf files.

20 years agoUpdate for move to sources.
Alasdair Kergon [Tue, 10 Feb 2004 15:30:06 +0000 (15:30 +0000)]
Update for move to sources.

20 years agoStatic build too.
Alasdair Kergon [Wed, 28 Jan 2004 03:40:30 +0000 (03:40 +0000)]
Static build too.

20 years agoUserspace support for LIST_VERSIONS ioctl.
Alasdair Kergon [Fri, 23 Jan 2004 14:37:45 +0000 (14:37 +0000)]
Userspace support for LIST_VERSIONS ioctl.

20 years agoAdd event number arg to dmsetup wait.
Alasdair Kergon [Fri, 23 Jan 2004 14:09:33 +0000 (14:09 +0000)]
Add event number arg to dmsetup wait.

This page took 0.05901 seconds and 5 git commands to generate.