diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2016-07-31 16:37:25 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2016-07-31 16:37:25 -0400 |
commit | 6fa67e707559303e086303aeecc9e8b91ef497d5 (patch) | |
tree | e5d034b0e9c533bd4e14fc0755432b50d69da2f2 /fs/isofs/inode.c | |
parent | d3fe19852e96aabe3084c82ec2f3fb4918ab6d1e (diff) |
get rid of 'parent' argument of ->d_compare()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/isofs/inode.c')
-rw-r--r-- | fs/isofs/inode.c | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/fs/isofs/inode.c b/fs/isofs/inode.c index 761fade7680f..ad0c745ebad7 100644 --- a/fs/isofs/inode.c +++ b/fs/isofs/inode.c | |||
@@ -29,18 +29,15 @@ | |||
29 | #define BEQUIET | 29 | #define BEQUIET |
30 | 30 | ||
31 | static int isofs_hashi(const struct dentry *parent, struct qstr *qstr); | 31 | static int isofs_hashi(const struct dentry *parent, struct qstr *qstr); |
32 | static int isofs_dentry_cmpi(const struct dentry *parent, | 32 | static int isofs_dentry_cmpi(const struct dentry *dentry, |
33 | const struct dentry *dentry, | ||
34 | unsigned int len, const char *str, const struct qstr *name); | 33 | unsigned int len, const char *str, const struct qstr *name); |
35 | 34 | ||
36 | #ifdef CONFIG_JOLIET | 35 | #ifdef CONFIG_JOLIET |
37 | static int isofs_hashi_ms(const struct dentry *parent, struct qstr *qstr); | 36 | static int isofs_hashi_ms(const struct dentry *parent, struct qstr *qstr); |
38 | static int isofs_hash_ms(const struct dentry *parent, struct qstr *qstr); | 37 | static int isofs_hash_ms(const struct dentry *parent, struct qstr *qstr); |
39 | static int isofs_dentry_cmpi_ms(const struct dentry *parent, | 38 | static int isofs_dentry_cmpi_ms(const struct dentry *dentry, |
40 | const struct dentry *dentry, | ||
41 | unsigned int len, const char *str, const struct qstr *name); | 39 | unsigned int len, const char *str, const struct qstr *name); |
42 | static int isofs_dentry_cmp_ms(const struct dentry *parent, | 40 | static int isofs_dentry_cmp_ms(const struct dentry *dentry, |
43 | const struct dentry *dentry, | ||
44 | unsigned int len, const char *str, const struct qstr *name); | 41 | unsigned int len, const char *str, const struct qstr *name); |
45 | #endif | 42 | #endif |
46 | 43 | ||
@@ -235,7 +232,7 @@ isofs_hashi(const struct dentry *dentry, struct qstr *qstr) | |||
235 | } | 232 | } |
236 | 233 | ||
237 | static int | 234 | static int |
238 | isofs_dentry_cmpi(const struct dentry *parent, const struct dentry *dentry, | 235 | isofs_dentry_cmpi(const struct dentry *dentry, |
239 | unsigned int len, const char *str, const struct qstr *name) | 236 | unsigned int len, const char *str, const struct qstr *name) |
240 | { | 237 | { |
241 | return isofs_dentry_cmp_common(len, str, name, 0, 1); | 238 | return isofs_dentry_cmp_common(len, str, name, 0, 1); |
@@ -276,14 +273,14 @@ isofs_hashi_ms(const struct dentry *dentry, struct qstr *qstr) | |||
276 | } | 273 | } |
277 | 274 | ||
278 | static int | 275 | static int |
279 | isofs_dentry_cmp_ms(const struct dentry *parent, const struct dentry *dentry, | 276 | isofs_dentry_cmp_ms(const struct dentry *dentry, |
280 | unsigned int len, const char *str, const struct qstr *name) | 277 | unsigned int len, const char *str, const struct qstr *name) |
281 | { | 278 | { |
282 | return isofs_dentry_cmp_common(len, str, name, 1, 0); | 279 | return isofs_dentry_cmp_common(len, str, name, 1, 0); |
283 | } | 280 | } |
284 | 281 | ||
285 | static int | 282 | static int |
286 | isofs_dentry_cmpi_ms(const struct dentry *parent, const struct dentry *dentry, | 283 | isofs_dentry_cmpi_ms(const struct dentry *dentry, |
287 | unsigned int len, const char *str, const struct qstr *name) | 284 | unsigned int len, const char *str, const struct qstr *name) |
288 | { | 285 | { |
289 | return isofs_dentry_cmp_common(len, str, name, 1, 1); | 286 | return isofs_dentry_cmp_common(len, str, name, 1, 1); |