kmemtrace, squashfs: fix slab.h dependency problem in squasfs
authorPekka Enberg <penberg@cs.helsinki.fi>
Tue, 24 Mar 2009 08:56:39 +0000 (10:56 +0200)
committerIngo Molnar <mingo@elte.hu>
Fri, 3 Apr 2009 10:21:34 +0000 (12:21 +0200)
commit23516dc709914845f18fbe379b3524b8156e5c85
tree83bfd021b4c8ad4d067620120226bccc03287263
parentc325962b68bbeeddcd4f755f7d34ada4d007b5f8
kmemtrace, squashfs: fix slab.h dependency problem in squasfs

Impact: cleanup

fs/squashfs/export.c depends on slab.h without including it:

    CC      fs/squashfs/export.o
  fs/squashfs/export.c: In function ‘squashfs_read_inode_lookup_table’:
  fs/squashfs/export.c:133: error: implicit declaration of function ‘kmalloc’
  fs/squashfs/export.c:133: warning: assignment makes pointer from integer without a cast
  fs/squashfs/export.c:143: error: implicit declaration of function ‘kfree’
  make[1]: *** [fs/squashfs/export.o] Error 1
  make: *** [fs/squashfs/] Error 2

It gets included implicitly currently - but this will not be the
case with upcoming kmemtrace changes.

Signed-off-by: Pekka Enberg <penberg@cs.helsinki.fi>
Cc: Eduard - Gabriel Munteanu <eduard.munteanu@linux360.ro>
LKML-Reference: <1237884999.25315.41.camel@penberg-laptop>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
fs/squashfs/export.c