Julia Lawall 3cec036990 RDS: drop double zeroing
sg_init_table zeroes its first argument, so the allocation of that argument
doesn't have to.

the semantic patch that makes this change is as follows:
(http://coccinelle.lip6.fr/)

// <smpl>
@@
expression x,n,flags;
@@

x =
- kcalloc
+ kmalloc_array
  (n,sizeof(*x),flags)
...
sg_init_table(x,n)
// </smpl>

Signed-off-by: Julia Lawall <Julia.Lawall@inria.fr>
Signed-off-by: David S. Miller <davem@davemloft.net>
2020-09-20 19:09:11 -07:00
..
2020-09-18 14:12:43 -07:00
2020-09-18 14:12:43 -07:00
2020-06-02 20:32:54 -03:00
2020-05-20 14:08:06 -07:00
2016-12-26 21:35:39 -05:00
2020-09-20 19:09:11 -07:00
2020-07-24 15:41:54 -07:00
2016-06-18 21:34:09 -07:00
2020-05-28 11:11:44 -07:00
2020-05-28 11:11:45 -07:00
2020-05-28 11:11:45 -07:00
2011-07-01 16:16:19 -07:00
2020-05-28 11:11:45 -07:00
2020-05-28 11:11:45 -07:00
2019-02-04 14:59:11 -08:00