diff options
author | Jeff Moyer <jmoyer@redhat.com> | 2008-07-24 00:30:16 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-24 13:47:32 -0400 |
commit | 70b52a0a5005ce6a0ceec56e97222437a0ba7506 (patch) | |
tree | e2b45dff98eae948dd34d4cc36f54796bd01104f /fs/autofs4/autofs_i.h | |
parent | 6d5cb926fa0162b1e62f37c117cc7ce763cfcbb9 (diff) |
autofs4: use struct qstr in waitq.c
The autofs_wait_queue already contains all of the fields of the
struct qstr, so change it into a qstr.
This patch, from Jeff Moyer, has been modified a liitle by myself.
Signed-off-by: Jeff Moyer <jmoyer@redhat.com>
Signed-off-by: Ian Kent <raven@themaw.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/autofs4/autofs_i.h')
-rw-r--r-- | fs/autofs4/autofs_i.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/fs/autofs4/autofs_i.h b/fs/autofs4/autofs_i.h index 2dce2334737d..da8882ff31e6 100644 --- a/fs/autofs4/autofs_i.h +++ b/fs/autofs4/autofs_i.h | |||
@@ -75,9 +75,7 @@ struct autofs_wait_queue { | |||
75 | struct autofs_wait_queue *next; | 75 | struct autofs_wait_queue *next; |
76 | autofs_wqt_t wait_queue_token; | 76 | autofs_wqt_t wait_queue_token; |
77 | /* We use the following to see what we are waiting for */ | 77 | /* We use the following to see what we are waiting for */ |
78 | unsigned int hash; | 78 | struct qstr name; |
79 | unsigned int len; | ||
80 | char *name; | ||
81 | u32 dev; | 79 | u32 dev; |
82 | u64 ino; | 80 | u64 ino; |
83 | uid_t uid; | 81 | uid_t uid; |