Commit 5868a499 authored by Brian Gerst's avatar Brian Gerst Committed by Russell King

[PATCH] struct super_block cleanup - ext3

Removes the last member of the union, ext3.
parent 40f51070
...@@ -17,6 +17,7 @@ ...@@ -17,6 +17,7 @@
#define _LINUX_EXT3_FS_H #define _LINUX_EXT3_FS_H
#include <linux/types.h> #include <linux/types.h>
#include <linux/ext3_fs_sb.h>
/* /*
* The second extended filesystem constants/structures * The second extended filesystem constants/structures
......
...@@ -627,8 +627,6 @@ extern int send_sigurg(struct fown_struct *fown); ...@@ -627,8 +627,6 @@ extern int send_sigurg(struct fown_struct *fown);
#define MNT_FORCE 0x00000001 /* Attempt to forcibily umount */ #define MNT_FORCE 0x00000001 /* Attempt to forcibily umount */
#define MNT_DETACH 0x00000002 /* Just detach from the tree */ #define MNT_DETACH 0x00000002 /* Just detach from the tree */
#include <linux/ext3_fs_sb.h>
extern struct list_head super_blocks; extern struct list_head super_blocks;
extern spinlock_t sb_lock; extern spinlock_t sb_lock;
...@@ -669,7 +667,6 @@ struct super_block { ...@@ -669,7 +667,6 @@ struct super_block {
char s_id[32]; /* Informational name */ char s_id[32]; /* Informational name */
union { union {
struct ext3_sb_info ext3_sb;
void *generic_sbp; void *generic_sbp;
} u; } u;
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment