mirror of
https://github.com/clearlinux/systemd-stable.git
synced 2026-09-06 21:51:37 +00:00
Add initialization helper for file_handle_union
This commit is contained in:
@@ -109,10 +109,7 @@ static struct udev_monitor *udev_monitor_new(struct udev *udev)
|
||||
/* we consider udev running when /dev is on devtmpfs */
|
||||
static bool udev_has_devtmpfs(struct udev *udev) {
|
||||
|
||||
union file_handle_union h = {
|
||||
.handle.handle_bytes = MAX_HANDLE_SZ
|
||||
};
|
||||
|
||||
union file_handle_union h = FILE_HANDLE_INIT;
|
||||
_cleanup_fclose_ FILE *f = NULL;
|
||||
char line[LINE_MAX], *e;
|
||||
int mount_id;
|
||||
|
||||
@@ -454,10 +454,7 @@ char* path_join(const char *root, const char *path, const char *rest) {
|
||||
|
||||
int path_is_mount_point(const char *t, bool allow_symlink) {
|
||||
|
||||
union file_handle_union h = {
|
||||
.handle.handle_bytes = MAX_HANDLE_SZ
|
||||
};
|
||||
|
||||
union file_handle_union h = FILE_HANDLE_INIT;
|
||||
int mount_id = -1, mount_id_parent = -1;
|
||||
_cleanup_free_ char *parent = NULL;
|
||||
struct stat a, b;
|
||||
|
||||
@@ -993,6 +993,7 @@ union file_handle_union {
|
||||
struct file_handle handle;
|
||||
char padding[sizeof(struct file_handle) + MAX_HANDLE_SZ];
|
||||
};
|
||||
#define FILE_HANDLE_INIT { .handle.handle_bytes = MAX_HANDLE_SZ }
|
||||
|
||||
int update_reboot_param_file(const char *param);
|
||||
|
||||
|
||||
@@ -230,10 +230,7 @@ static bool unix_socket_alive(const char *fn) {
|
||||
|
||||
static int dir_is_mount_point(DIR *d, const char *subdir) {
|
||||
|
||||
union file_handle_union h = {
|
||||
.handle.handle_bytes = MAX_HANDLE_SZ
|
||||
};
|
||||
|
||||
union file_handle_union h = FILE_HANDLE_INIT;
|
||||
int mount_id_parent, mount_id;
|
||||
int r_p, r;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user