From: Milton Miller Date: Thu, 10 Jul 2008 23:51:32 +0000 (-0700) Subject: tcp: correct kcalloc usage X-Git-Tag: v3.12-rc1~20134^2~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3d8ea1fd7001f39b5cc0ad2ff51696292ea3cfbf;p=kernel%2Fkernel-generic.git tcp: correct kcalloc usage kcalloc is supposed to be called with the count as its first argument and the element size as the second. Signed-off-by: Milton Miller Signed-off-by: David S. Miller --- diff --git a/net/ipv4/tcp_probe.c b/net/ipv4/tcp_probe.c index 5ff0ce6..7ddc30f 100644 --- a/net/ipv4/tcp_probe.c +++ b/net/ipv4/tcp_probe.c @@ -224,7 +224,7 @@ static __init int tcpprobe_init(void) if (bufsize < 0) return -EINVAL; - tcp_probe.log = kcalloc(sizeof(struct tcp_log), bufsize, GFP_KERNEL); + tcp_probe.log = kcalloc(bufsize, sizeof(struct tcp_log), GFP_KERNEL); if (!tcp_probe.log) goto err0;