Commit bbbef2d5ad8203f67274196dac90754ae106a463
Committed by
Philipp Reisner
1 parent
509100e601
Exists in
smarc-l5.0.0_1.0.0-ga
and in
5 other branches
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>
Showing 1 changed file with 0 additions and 6 deletions Side-by-side Diff
include/linux/genl_magic_struct.h
... | ... | @@ -40,11 +40,6 @@ |
40 | 40 | * yet implemented features, if newer userland tries to use them even though |
41 | 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 | 43 | * NOTE: These flags overload |
49 | 44 | * NLA_F_NESTED (1 << 15) |
50 | 45 | * NLA_F_NET_BYTEORDER (1 << 14) |
... | ... | @@ -55,7 +50,6 @@ |
55 | 50 | * See also: nla_type() |
56 | 51 | */ |
57 | 52 | enum { |
58 | - GENLA_F_MAY_IGNORE = 0, | |
59 | 53 | GENLA_F_MANDATORY = 1 << 14, |
60 | 54 | GENLA_F_REQUIRED = 1 << 15, |
61 | 55 |