From: H Hartley Sweeten Date: Fri, 15 Jan 2010 09:08:58 +0000 (-0800) Subject: net/core/sock.c: quiet sparse noise X-Git-Tag: v2.6.34-rc1~233^2~586 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4d0392be21d4710121f855c0caf57d32ffd1ced0;p=pandora-kernel.git net/core/sock.c: quiet sparse noise In sock_getsockopt the symbol 'lv' is declared as an unsigned int type, probably due to sizeof returning a size_t which is really an unsigned int. This produces a sparse warning for SO_PEERNAME due to the sock->ops->getname() call: warning: incorrect type in argument 3 (different signedness) expected int *sockaddr_len got unsigned int * Quiet the warning by changing the type of 'lv' to an int. Signed-off-by: H Hartley Sweeten Signed-off-by: David S. Miller --- Reading git-diff-tree failed