On Wed, Aug 12, 2015 at 5:21 PM, Eric Dumazet wrote:
> On Tue, 2015-08-11 at 21:54 -0700, Calvin Owens wrote:
>> Commit 8133534c760d4083 ("net: limit tcp/udp rmem/wmem to
>> SOCK_{RCV,SND}BUF_MIN") modified four sysctls to enforce that the values
>> written to them are not less than SOCK_MIN_{RCV,
across all the wmem/rmem sysctls.
Signed-off-by: Sorin Dumitru
---
net/ipv4/sysctl_net_ipv4.c | 10 ++
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/net/ipv4/sysctl_net_ipv4.c b/net/ipv4/sysctl_net_ipv4.c
index e648927..4f36afd 100644
--- a/net/ipv4/sysctl_net_ipv4.c
+++
On Wed, May 27, 2015 at 8:44 PM, Cong Wang wrote:
> On Tue, May 26, 2015 at 12:42 AM, Sorin Dumitru wrote:
>> We're seeing some softlockups from this function when there
>> are a lot fdb entries on a vxlan device. Taking the lock for
>> each bucket instead of the wh
We're seeing some softlockups from this function when there
are a lot fdb entries on a vxlan device. Taking the lock for
each bucket instead of the whole table is enough to fix that.
Signed-off-by: Sorin Dumitru
---
drivers/net/vxlan.c | 5 +++--
1 file changed, 3 insertions(+), 2 dele