Re: [PATCH] Fix numerous kcalloc() calls, convert to kzalloc().

2006-12-09 Thread Stefan Richter
Robert P. J. Day wrote: > drop me a note when the grown-ups are back in charge. (You could have also explained where I erred. If I was in charge in the first place, that is.) Sure enough, this *alloc() stuff is easier to work with than e.g. the recent workqueue changes. -- Stefan Richter -=-

Re: [PATCH] Fix numerous kcalloc() calls, convert to kzalloc().

2006-12-09 Thread Andrew Morton
On Sat, 09 Dec 2006 23:05:58 +0100 Stefan Richter <[EMAIL PROTECTED]> wrote: > > fs/ocfs2/dlm/dlmrecovery.c |6 +++--- > > fs/ocfs2/localalloc.c |2 +- > > fs/ocfs2/slot_map.c |2 +- > > fs/ocfs2/suballoc.c |6 +++--- > > fs/o

Re: [PATCH] Fix numerous kcalloc() calls, convert to kzalloc().

2006-12-09 Thread Robert P. J. Day
On Sat, 9 Dec 2006, Stefan Richter wrote: > Robert P. J. Day wrote: > > drivers/ata/pdc_adma.c |4 ++-- > > drivers/macintosh/smu.c |2 +- > > drivers/mtd/rfd_ftl.c |2 +- > > drivers/net/phy/phy_device.c|2 +- > > drivers/net/skge.c

Re: [PATCH] Fix numerous kcalloc() calls, convert to kzalloc().

2006-12-09 Thread Stefan Richter
Robert P. J. Day wrote: > drivers/ata/pdc_adma.c |4 ++-- > drivers/macintosh/smu.c |2 +- > drivers/mtd/rfd_ftl.c |2 +- > drivers/net/phy/phy_device.c|2 +- > drivers/net/skge.c |2 +- > drivers/pcmcia/at91_cf.c

[PATCH] Fix numerous kcalloc() calls, convert to kzalloc().

2006-12-09 Thread Robert P. J. Day
All kcalloc() calls of the form "kcalloc(1,...)" are converted to the equivalent kzalloc() calls, and a few kcalloc() calls with the incorrect ordering of the first two arguments are fixed. Signed-off-by: Robert P. J. Day <[EMAIL PROTECTED]> --- drivers/ata/pdc_adma.c |4 ++-