[PATCH] linux/mount.h: add atomic.h and spinlock.h #includes

From: Roland Dreier
Date: Tue Nov 16 2004 - 23:56:48 EST


I'm not sure what the current policy is on include files being
self-sufficient, so feel free to drop this if we don't want to do this
sort of cleanup...

<linux/mount.h> uses atomic_t and spinlock_t, but doesn't include
either <asm/atomic.h> or <linux/spinlock.h>, which means that any
users of <linux/mount.h> have to include them. This patch adds the
necessary #includes to avoid this.

Signed-off-by: Roland Dreier <roland@xxxxxxxxxxx>

Index: linux-bk/include/linux/mount.h
===================================================================
--- linux-bk.orig/include/linux/mount.h 2004-11-16 20:50:34.000000000 -0800
+++ linux-bk/include/linux/mount.h 2004-11-16 20:51:30.000000000 -0800
@@ -13,6 +13,8 @@
#ifdef __KERNEL__

#include <linux/list.h>
+#include <linux/spinlock.h>
+#include <asm/atomic.h>

#define MNT_NOSUID 1
#define MNT_NODEV 2
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/