Commit 6f9b901823aafd14a84ae27f61ff28bafed01260

Authored by Dr. David Alan Gilbert
Committed by David S. Miller
1 parent eae61ae15b

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>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

net/l2tp/l2tp_debugfs.c
... ... @@ -249,7 +249,7 @@
249 249 struct seq_file *seq;
250 250 int rc = -ENOMEM;
251 251  
252   - pd = kzalloc(GFP_KERNEL, sizeof(*pd));
  252 + pd = kzalloc(sizeof(*pd), GFP_KERNEL);
253 253 if (pd == NULL)
254 254 goto out;
255 255