aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLars Ellenberg <lars.ellenberg@linbit.com>2011-05-04 04:33:52 -0400
committerPhilipp Reisner <philipp.reisner@linbit.com>2012-11-08 10:55:43 -0500
commit563e4cf25ec804eb02cd30a41baa2fcc6c06679b (patch)
tree78714255143b283d7a58681ab6142c3e245ebc7b /include
parent2ec91e0e29a3f1166ad96dbb3466b57dbc5d8ebf (diff)
drbd: Introduce __s32_field in the genetlink macro magic
...and drop explicit typecasts (int)meta_dev_idx < 0. Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com> Signed-off-by: Lars Ellenberg <lars.ellenberg@linbit.com>
Diffstat (limited to 'include')
-rw-r--r--include/linux/drbd_genl.h2
-rw-r--r--include/linux/genl_magic_struct.h3
2 files changed, 4 insertions, 1 deletions
diff --git a/include/linux/drbd_genl.h b/include/linux/drbd_genl.h
index 549800668cb9..f143e3c0f33b 100644
--- a/include/linux/drbd_genl.h
+++ b/include/linux/drbd_genl.h
@@ -102,7 +102,7 @@ GENL_struct(DRBD_NLA_CFG_CONTEXT, 2, drbd_cfg_context,
102GENL_struct(DRBD_NLA_DISK_CONF, 3, disk_conf, 102GENL_struct(DRBD_NLA_DISK_CONF, 3, disk_conf,
103 __str_field(1, GENLA_F_REQUIRED | GENLA_F_INVARIANT, backing_dev, 128) 103 __str_field(1, GENLA_F_REQUIRED | GENLA_F_INVARIANT, backing_dev, 128)
104 __str_field(2, GENLA_F_REQUIRED | GENLA_F_INVARIANT, meta_dev, 128) 104 __str_field(2, GENLA_F_REQUIRED | GENLA_F_INVARIANT, meta_dev, 128)
105 __u32_field(3, GENLA_F_REQUIRED | GENLA_F_INVARIANT, meta_dev_idx) 105 __s32_field(3, GENLA_F_REQUIRED | GENLA_F_INVARIANT, meta_dev_idx)
106 106
107 /* use the resize command to try and change the disk_size */ 107 /* use the resize command to try and change the disk_size */
108 __u64_field(4, GENLA_F_MANDATORY | GENLA_F_INVARIANT, disk_size) 108 __u64_field(4, GENLA_F_MANDATORY | GENLA_F_INVARIANT, disk_size)
diff --git a/include/linux/genl_magic_struct.h b/include/linux/genl_magic_struct.h
index f2c7cc7831df..ddbdd0a24476 100644
--- a/include/linux/genl_magic_struct.h
+++ b/include/linux/genl_magic_struct.h
@@ -97,6 +97,9 @@ enum {
97#define __u32_field(attr_nr, attr_flag, name) \ 97#define __u32_field(attr_nr, attr_flag, name) \
98 __field(attr_nr, attr_flag, name, NLA_U32, __u32, \ 98 __field(attr_nr, attr_flag, name, NLA_U32, __u32, \
99 nla_get_u32, NLA_PUT_U32) 99 nla_get_u32, NLA_PUT_U32)
100#define __s32_field(attr_nr, attr_flag, name) \
101 __field(attr_nr, attr_flag, name, NLA_U32, __s32, \
102 nla_get_u32, NLA_PUT_U32)
100#define __u64_field(attr_nr, attr_flag, name) \ 103#define __u64_field(attr_nr, attr_flag, name) \
101 __field(attr_nr, attr_flag, name, NLA_U64, __u64, \ 104 __field(attr_nr, attr_flag, name, NLA_U64, __u64, \
102 nla_get_u64, NLA_PUT_U64) 105 nla_get_u64, NLA_PUT_U64)