Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
Conflicts: net/bluetooth/l2cap_core.c Just two overlapping changes, one added an initialization of a local variable, and another change added a new local variable. Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
@@ -123,7 +123,9 @@ static void sel_netport_insert(struct sel_netport *port)
|
||||
if (sel_netport_hash[idx].size == SEL_NETPORT_HASH_BKT_LIMIT) {
|
||||
struct sel_netport *tail;
|
||||
tail = list_entry(
|
||||
rcu_dereference(sel_netport_hash[idx].list.prev),
|
||||
rcu_dereference_protected(
|
||||
sel_netport_hash[idx].list.prev,
|
||||
lockdep_is_held(&sel_netport_lock)),
|
||||
struct sel_netport, list);
|
||||
list_del_rcu(&tail->list);
|
||||
kfree_rcu(tail, rcu);
|
||||
|
Reference in New Issue
Block a user