|
@@ -26,6 +26,7 @@
|
|
|
#include <linux/list.h>
|
|
|
#include <linux/completion.h>
|
|
|
#include <linux/file.h>
|
|
|
+#include <linux/magic.h>
|
|
|
|
|
|
/* This is the range of ioctl() numbers we claim as ours */
|
|
|
#define AUTOFS_IOC_FIRST AUTOFS_IOC_READY
|
|
@@ -124,7 +125,8 @@ struct autofs_sb_info {
|
|
|
|
|
|
static inline struct autofs_sb_info *autofs_sbi(struct super_block *sb)
|
|
|
{
|
|
|
- return (struct autofs_sb_info *)(sb->s_fs_info);
|
|
|
+ return sb->s_magic != AUTOFS_SUPER_MAGIC ?
|
|
|
+ NULL : (struct autofs_sb_info *)(sb->s_fs_info);
|
|
|
}
|
|
|
|
|
|
static inline struct autofs_info *autofs_dentry_ino(struct dentry *dentry)
|