From ff86c6ed00859a93b984ffd5944c6ba3e450c747 Mon Sep 17 00:00:00 2001 From: Zdenek Kabelac Date: Thu, 16 Aug 2012 20:06:07 +0200 Subject: cleanup: keep MKNOD type cast clean Setup major already a dev_t type before it gets shifted. --- lib/device/device.c | 2 +- libdm/ioctl/libdm-iface.c | 6 +++--- libdm/libdm-common.c | 2 +- libdm/libdm-deptree.c | 4 ++-- tools/pvscan.c | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/device/device.c b/lib/device/device.c index 37bed631..3e5e2a41 100644 --- a/lib/device/device.c +++ b/lib/device/device.c @@ -347,7 +347,7 @@ int get_primary_dev(const char *sysfs_dir, path, buffer); goto out; } - *result = MKDEV(pri_maj, pri_min); + *result = MKDEV((dev_t)pri_maj, pri_min); ret = 1; out: diff --git a/libdm/ioctl/libdm-iface.c b/libdm/ioctl/libdm-iface.c index 5276c113..9932aa9c 100644 --- a/libdm/ioctl/libdm-iface.c +++ b/libdm/ioctl/libdm-iface.c @@ -239,7 +239,7 @@ static int _control_exists(const char *control, uint32_t major, uint32_t minor) return -1; } - if (major && buf.st_rdev != MKDEV(major, minor)) { + if (major && buf.st_rdev != MKDEV((dev_t)major, minor)) { log_verbose("%s: Wrong device number: (%u, %u) instead of " "(%u, %u)", control, MAJOR(buf.st_mode), MINOR(buf.st_mode), @@ -282,7 +282,7 @@ static int _create_control(const char *control, uint32_t major, uint32_t minor) (void) dm_prepare_selinux_context(control, S_IFCHR); old_umask = umask(DM_CONTROL_NODE_UMASK); if (mknod(control, S_IFCHR | S_IRUSR | S_IWUSR, - MKDEV(major, minor)) < 0) { + MKDEV((dev_t)major, minor)) < 0) { log_sys_error("mknod", control); (void) dm_prepare_selinux_context(NULL, 0); return 0; @@ -1062,7 +1062,7 @@ static struct dm_ioctl *_flatten(struct dm_task *dmt, unsigned repeat_count) } dmi->flags |= DM_PERSISTENT_DEV_FLAG; - dmi->dev = MKDEV(dmt->major, dmt->minor); + dmi->dev = MKDEV((dev_t)dmt->major, dmt->minor); } /* Does driver support device number referencing? */ diff --git a/libdm/libdm-common.c b/libdm/libdm-common.c index fd775ca3..7929889f 100644 --- a/libdm/libdm-common.c +++ b/libdm/libdm-common.c @@ -841,7 +841,7 @@ static int _add_dev_node(const char *dev_name, uint32_t major, uint32_t minor, { char path[PATH_MAX]; struct stat info; - dev_t dev = MKDEV(major, minor); + dev_t dev = MKDEV((dev_t)major, minor); mode_t old_mask; _build_dev_path(path, sizeof(path), dev_name); diff --git a/libdm/libdm-deptree.c b/libdm/libdm-deptree.c index 503b2403..28d1153b 100644 --- a/libdm/libdm-deptree.c +++ b/libdm/libdm-deptree.c @@ -484,7 +484,7 @@ static struct dm_tree_node *_create_dm_tree_node(struct dm_tree *dtree, dm_list_init(&node->used_by); dm_list_init(&node->props.segs); - dev = MKDEV(info->major, info->minor); + dev = MKDEV((dev_t)info->major, info->minor); if (!dm_hash_insert_binary(dtree->devs, (const char *) &dev, sizeof(dev), node)) { @@ -508,7 +508,7 @@ static struct dm_tree_node *_create_dm_tree_node(struct dm_tree *dtree, static struct dm_tree_node *_find_dm_tree_node(struct dm_tree *dtree, uint32_t major, uint32_t minor) { - dev_t dev = MKDEV(major, minor); + dev_t dev = MKDEV((dev_t)major, minor); return dm_hash_lookup_binary(dtree->devs, (const char *) &dev, sizeof(dev)); diff --git a/tools/pvscan.c b/tools/pvscan.c index a0408998..a846322e 100644 --- a/tools/pvscan.c +++ b/tools/pvscan.c @@ -209,7 +209,7 @@ static int _pvscan_lvmetad(struct cmd_context *cmd, int argc, char **argv) if (major < 0 || minor < 0) continue; - devno = MKDEV(major, minor); + devno = MKDEV((dev_t)major, minor); if (!(dev = dev_cache_get_by_devt(devno, NULL))) { if (!dm_asprintf(&buf, "%" PRIi32 ":%" PRIi32, major, minor)) -- cgit