Skip to content

Commit

Permalink
Merge branch 'master' of git://1984.lsi.us.es/net-2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
David S. Miller committed Jan 13, 2011
2 parents 3806b4f + f31e8d4 commit 1949e08
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion net/netfilter/nf_conntrack_netlink.c
Original file line number Diff line number Diff line change
Expand Up @@ -972,7 +972,8 @@ ctnetlink_get_conntrack(struct sock *ctnl, struct sk_buff *skb,
free:
kfree_skb(skb2);
out:
return err;
/* this avoids a loop in nfnetlink. */
return err == -EAGAIN ? -ENOBUFS : err;
}

#ifdef CONFIG_NF_NAT_NEEDED
Expand Down

0 comments on commit 1949e08

Please sign in to comment.