diff options
Diffstat (limited to 'net/netlink')
| -rw-r--r-- | net/netlink/genetlink.c | 24 |
1 files changed, 8 insertions, 16 deletions
diff --git a/net/netlink/genetlink.c b/net/netlink/genetlink.c index ddfdb7d2e02b..d07ecda0a92d 100644 --- a/net/netlink/genetlink.c +++ b/net/netlink/genetlink.c | |||
| @@ -97,25 +97,17 @@ static struct genl_ops *genl_get_cmd(u8 cmd, struct genl_family *family) | |||
| 97 | */ | 97 | */ |
| 98 | static inline u16 genl_generate_id(void) | 98 | static inline u16 genl_generate_id(void) |
| 99 | { | 99 | { |
| 100 | static u16 id_gen_idx; | 100 | static u16 id_gen_idx = GENL_MIN_ID; |
| 101 | int overflowed = 0; | 101 | int i; |
| 102 | 102 | ||
| 103 | do { | 103 | for (i = 0; i <= GENL_MAX_ID - GENL_MIN_ID; i++) { |
| 104 | if (id_gen_idx == 0) | 104 | if (!genl_family_find_byid(id_gen_idx)) |
| 105 | return id_gen_idx; | ||
| 106 | if (++id_gen_idx > GENL_MAX_ID) | ||
| 105 | id_gen_idx = GENL_MIN_ID; | 107 | id_gen_idx = GENL_MIN_ID; |
| 108 | } | ||
| 106 | 109 | ||
| 107 | if (++id_gen_idx > GENL_MAX_ID) { | 110 | return 0; |
| 108 | if (!overflowed) { | ||
| 109 | overflowed = 1; | ||
| 110 | id_gen_idx = 0; | ||
| 111 | continue; | ||
| 112 | } else | ||
| 113 | return 0; | ||
| 114 | } | ||
| 115 | |||
| 116 | } while (genl_family_find_byid(id_gen_idx)); | ||
| 117 | |||
| 118 | return id_gen_idx; | ||
| 119 | } | 111 | } |
| 120 | 112 | ||
| 121 | static struct genl_multicast_group notify_grp; | 113 | static struct genl_multicast_group notify_grp; |
