diff options
author | Akinobu Mita <akinobu.mita@gmail.com> | 2006-11-22 20:26:11 -0800 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-11-25 15:16:49 -0800 |
commit | ac16ca6412d9feb5b2f8fc76a4ed938b5d107f94 (patch) | |
tree | 484df8ddb3e1f4cfe9e113e7b914c294300830fc /net/dccp | |
parent | 753eab76a3337863a0d86ce045fa4eb6c3cbeef9 (diff) |
[NET]: Fix kfifo_alloc() error check.
The return value of kfifo_alloc() should be checked by IS_ERR().
Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dccp')
-rw-r--r-- | net/dccp/probe.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/dccp/probe.c b/net/dccp/probe.c index 146496fce2e..fded1493c1d 100644 --- a/net/dccp/probe.c +++ b/net/dccp/probe.c @@ -160,6 +160,8 @@ static __init int dccpprobe_init(void) init_waitqueue_head(&dccpw.wait); spin_lock_init(&dccpw.lock); dccpw.fifo = kfifo_alloc(bufsize, GFP_KERNEL, &dccpw.lock); + if (IS_ERR(dccpw.fifo)) + return PTR_ERR(dccpw.fifo); if (!proc_net_fops_create(procname, S_IRUSR, &dccpprobe_fops)) goto err0; |