aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/genl_magic_struct.h
diff options
context:
space:
mode:
authorAndreas Gruenbacher <agruen@linbit.com>2011-05-18 10:48:16 -0400
committerPhilipp Reisner <philipp.reisner@linbit.com>2012-11-08 10:55:55 -0500
commitbbbef2d5ad8203f67274196dac90754ae106a463 (patch)
tree52cb31fac29a460734a75a278d80e715098a828b /include/linux/genl_magic_struct.h
parent509100e6012db92f4af3796436b450447c6c8268 (diff)
drbd: Remove unused GENLA_F_MAY_IGNORE flag
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com> Signed-off-by: Lars Ellenberg <lars.ellenberg@linbit.com>
Diffstat (limited to 'include/linux/genl_magic_struct.h')
-rw-r--r--include/linux/genl_magic_struct.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/include/linux/genl_magic_struct.h b/include/linux/genl_magic_struct.h
index ba911da84d9f..f3c3425ac30f 100644
--- a/include/linux/genl_magic_struct.h
+++ b/include/linux/genl_magic_struct.h
@@ -40,11 +40,6 @@ extern void CONCAT_(GENL_MAGIC_FAMILY, _genl_unregister)(void);
40 * yet implemented features, if newer userland tries to use them even though 40 * yet implemented features, if newer userland tries to use them even though
41 * the genl_family version clearly indicates they are not available. 41 * the genl_family version clearly indicates they are not available.
42 * 42 *
43 * @GENLA_F_MAY_IGNORE: To clearly document the fact, for good measure.
44 * To be used for API extensions for things that have sane defaults,
45 * so newer userland can still talk to older kernel, knowing it will
46 * silently ignore these attributes if not yet known.
47 *
48 * NOTE: These flags overload 43 * NOTE: These flags overload
49 * NLA_F_NESTED (1 << 15) 44 * NLA_F_NESTED (1 << 15)
50 * NLA_F_NET_BYTEORDER (1 << 14) 45 * NLA_F_NET_BYTEORDER (1 << 14)
@@ -55,7 +50,6 @@ extern void CONCAT_(GENL_MAGIC_FAMILY, _genl_unregister)(void);
55 * See also: nla_type() 50 * See also: nla_type()
56 */ 51 */
57enum { 52enum {
58 GENLA_F_MAY_IGNORE = 0,
59 GENLA_F_MANDATORY = 1 << 14, 53 GENLA_F_MANDATORY = 1 << 14,
60 GENLA_F_REQUIRED = 1 << 15, 54 GENLA_F_REQUIRED = 1 << 15,
61 55