search for: 0a59c84

Displaying 2 results from an estimated 2 matches for "0a59c84".

Did you mean: 0.5984
2014 Aug 08
3
[PATCH] daemon: add CLEANUP_CLOSE
...nlink_free))) +#define CLEANUP_CLOSE __attribute__((cleanup(cleanup_close))) #else #define CLEANUP_FREE #define CLEANUP_FREE_STRING_LIST #define CLEANUP_UNLINK_FREE +#define CLEANUP_CLOSE #endif #endif /* GUESTFSD_DAEMON_H */ diff --git a/daemon/guestfsd.c b/daemon/guestfsd.c index 622bda1..0a59c84 100644 --- a/daemon/guestfsd.c +++ b/daemon/guestfsd.c @@ -1482,3 +1482,12 @@ cleanup_unlink_free (void *ptr) free (filename); } } + +void +cleanup_close (void *ptr) +{ + int fd = * (int *) ptr; + + if (fd >= 0) + close (fd); +} -- 1.9.3
2014 Aug 26
6
[PATCH 0/3] fix setting lvm filter with newer lvm2
Hi, newer lvm2 releases don't have have uncommented "filter" lines, so the current way to edit lvm.conf doesn't work anymore. Instead, switch to augeas (with a "custom" len) for a cleaner and working way to set the lvm filter. Pino Toscano (3): daemon: add add_sprintf daemon: move AUGEAS_ERROR to the common header daemon: lvm-filter: use augeas for setting the