diff options
author | Dr. David Alan Gilbert <linux@treblig.org> | 2010-10-31 07:26:03 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-11-01 06:56:02 -0700 |
commit | 6f9b901823aafd14a84ae27f61ff28bafed01260 (patch) | |
tree | b7625065b95573275a59197db8db6877ce010dd1 /net/l2tp | |
parent | eae61ae15b752b919ea45746f6dff449ff6d3281 (diff) | |
download | op-kernel-dev-6f9b901823aafd14a84ae27f61ff28bafed01260.zip op-kernel-dev-6f9b901823aafd14a84ae27f61ff28bafed01260.tar.gz |
l2tp: kzalloc with swapped params in l2tp_dfs_seq_open
'sparse' spotted that the parameters to kzalloc in l2tp_dfs_seq_open
were swapped.
Tested on current git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
at 1792f17b7210280a3d7ff29da9614ba779cfcedb build, boots and I can see that directory,
but there again I could see /sys/kernel/debug/l2tp with it swapped; I don't have
any l2tp in use.
Signed-off-by: Dr. David Alan Gilbert <linux@treblig.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/l2tp')
-rw-r--r-- | net/l2tp/l2tp_debugfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/l2tp/l2tp_debugfs.c b/net/l2tp/l2tp_debugfs.c index 104ec3b..b8dbae8 100644 --- a/net/l2tp/l2tp_debugfs.c +++ b/net/l2tp/l2tp_debugfs.c @@ -249,7 +249,7 @@ static int l2tp_dfs_seq_open(struct inode *inode, struct file *file) struct seq_file *seq; int rc = -ENOMEM; - pd = kzalloc(GFP_KERNEL, sizeof(*pd)); + pd = kzalloc(sizeof(*pd), GFP_KERNEL); if (pd == NULL) goto out; |