negative sbsize

cpm@

Moderator
Moderator
Developer
Hi,

After running Skype, I'm getting a lot of messages repeated:

From /var/log/messages:
Code:
kernel: negative sbsize for uid = 1001
last message repeated 982 times

How to fix this error? Any hint?
 
I try tuning some sysctl(8)() variables and look what happens.

My entries in /etc/sysctl.conf

Code:
net.inet.ip.intr_queue_maxlen=256
kern.ipc.maxsockbuf=2097152
kern.ipc.nmbclusters=65536
kern.ipc.somaxconn=128
kern.ipc.maxsockets=65536
kern.maxfilesperproc=32768
kern.maxfiles=65536
net.inet.tcp.nolocaltimewait=0
kern.ipc.shm_use_phys=0
net.inet.tcp.sendbuf_max=2097152
net.inet.tcp.recvbuf_max=2097152
net.inet.tcp.sendbuf_inc=8192
net.inet.tcp.recvbuf_inc=16384
net.inet.tcp.hostcache.expire=3600

What could I change to increase the network performance?
 
I noticed that switching to shell/zsh made disappear those messages. The value reported by limit(1)() is correct.
Code:
[CMD]% limit | grep sbsize[/CMD]
sbsize     unlimited
 
Back
Top