aboutsummaryrefslogtreecommitdiffstats
path: root/fs/isofs/inode.c
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2013-11-13 01:34:18 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2013-11-13 01:34:18 -0500
commit9bc9ccd7db1c9f043f75380b5a5b94912046a60e (patch)
treedd0a1b3396ae9414f668b0110cc39d11268ad3ed /fs/isofs/inode.c
parentf0230294271f511b41797305b685365a9e569a09 (diff)
parentbdd3536618443809d18868563eeafa63b9d29603 (diff)
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
Pull vfs updates from Al Viro: "All kinds of stuff this time around; some more notable parts: - RCU'd vfsmounts handling - new primitives for coredump handling - files_lock is gone - Bruce's delegations handling series - exportfs fixes plus misc stuff all over the place" * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs: (101 commits) ecryptfs: ->f_op is never NULL locks: break delegations on any attribute modification locks: break delegations on link locks: break delegations on rename locks: helper functions for delegation breaking locks: break delegations on unlink namei: minor vfs_unlink cleanup locks: implement delegations locks: introduce new FL_DELEG lock flag vfs: take i_mutex on renamed file vfs: rename I_MUTEX_QUOTA now that it's not used for quotas vfs: don't use PARENT/CHILD lock classes for non-directories vfs: pull ext4's double-i_mutex-locking into common code exportfs: fix quadratic behavior in filehandle lookup exportfs: better variable name exportfs: move most of reconnect_path to helper function exportfs: eliminate unused "noprogress" counter exportfs: stop retrying once we race with rename/remove exportfs: clear DISCONNECTED on all parents sooner exportfs: more detailed comment for path_reconnect ...
Diffstat (limited to 'fs/isofs/inode.c')
-rw-r--r--fs/isofs/inode.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/fs/isofs/inode.c b/fs/isofs/inode.c
index e5d408a7ea4a..4a9e10ea13f2 100644
--- a/fs/isofs/inode.c
+++ b/fs/isofs/inode.c
@@ -181,7 +181,7 @@ struct iso9660_options{
181 * Compute the hash for the isofs name corresponding to the dentry. 181 * Compute the hash for the isofs name corresponding to the dentry.
182 */ 182 */
183static int 183static int
184isofs_hash_common(const struct dentry *dentry, struct qstr *qstr, int ms) 184isofs_hash_common(struct qstr *qstr, int ms)
185{ 185{
186 const char *name; 186 const char *name;
187 int len; 187 int len;
@@ -202,7 +202,7 @@ isofs_hash_common(const struct dentry *dentry, struct qstr *qstr, int ms)
202 * Compute the hash for the isofs name corresponding to the dentry. 202 * Compute the hash for the isofs name corresponding to the dentry.
203 */ 203 */
204static int 204static int
205isofs_hashi_common(const struct dentry *dentry, struct qstr *qstr, int ms) 205isofs_hashi_common(struct qstr *qstr, int ms)
206{ 206{
207 const char *name; 207 const char *name;
208 int len; 208 int len;
@@ -259,13 +259,13 @@ static int isofs_dentry_cmp_common(
259static int 259static int
260isofs_hash(const struct dentry *dentry, struct qstr *qstr) 260isofs_hash(const struct dentry *dentry, struct qstr *qstr)
261{ 261{
262 return isofs_hash_common(dentry, qstr, 0); 262 return isofs_hash_common(qstr, 0);
263} 263}
264 264
265static int 265static int
266isofs_hashi(const struct dentry *dentry, struct qstr *qstr) 266isofs_hashi(const struct dentry *dentry, struct qstr *qstr)
267{ 267{
268 return isofs_hashi_common(dentry, qstr, 0); 268 return isofs_hashi_common(qstr, 0);
269} 269}
270 270
271static int 271static int
@@ -286,13 +286,13 @@ isofs_dentry_cmpi(const struct dentry *parent, const struct dentry *dentry,
286static int 286static int
287isofs_hash_ms(const struct dentry *dentry, struct qstr *qstr) 287isofs_hash_ms(const struct dentry *dentry, struct qstr *qstr)
288{ 288{
289 return isofs_hash_common(dentry, qstr, 1); 289 return isofs_hash_common(qstr, 1);
290} 290}
291 291
292static int 292static int
293isofs_hashi_ms(const struct dentry *dentry, struct qstr *qstr) 293isofs_hashi_ms(const struct dentry *dentry, struct qstr *qstr)
294{ 294{
295 return isofs_hashi_common(dentry, qstr, 1); 295 return isofs_hashi_common(qstr, 1);
296} 296}
297 297
298static int 298static int