Skip to content

Commit

Permalink
[NETLINK]: use the macro min(x,y) provided by <linux/kernel.h> instead
Browse files Browse the repository at this point in the history
Signed-off-by: Denis Cheng <crquan@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Denis Cheng authored and David S. Miller committed Oct 10, 2007
1 parent 5288605 commit 99406c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/netlink/af_netlink.c
Original file line number Diff line number Diff line change
Expand Up @@ -1969,7 +1969,7 @@ static int __init netlink_proto_init(void)

order = get_bitmask_order(max) - 1 + PAGE_SHIFT;
max = (1UL << order) / sizeof(struct hlist_head);
order = get_bitmask_order(max > UINT_MAX ? UINT_MAX : max) - 1;
order = get_bitmask_order(min(max, (unsigned long)UINT_MAX)) - 1;

for (i = 0; i < MAX_LINKS; i++) {
struct nl_pid_hash *hash = &nl_table[i].hash;
Expand Down

0 comments on commit 99406c8

Please sign in to comment.