aboutsummaryrefslogtreecommitdiffstats
path: root/fs/gfs2/ops_file.h
diff options
context:
space:
mode:
authorSteven Whitehouse <swhiteho@redhat.com>2006-02-15 10:15:18 +0000
committerSteven Whitehouse <swhiteho@redhat.com>2006-02-15 10:15:18 +0000
commit61a30dcb5866eb7e92796b2988ddb4c94b9f78ac (patch)
treeaa27ef185437a813041aae3e9f0aa403a960db43 /fs/gfs2/ops_file.h
parent[GFS2] Fix the bugs I introduced in the last patch but one (diff)
downloadlinux-dev-61a30dcb5866eb7e92796b2988ddb4c94b9f78ac.tar.xz
linux-dev-61a30dcb5866eb7e92796b2988ddb4c94b9f78ac.zip
[GFS2] Fix for lock recursion problem for internal files
Two internal files which are read through the gfs2_internal_read() routine were already locked when the routine was called and this do not need locking at the redapages level. This patch introduces a struct file which is used as a sentinal so that readpage will only perform locking in the case that the struct file passed to it is _not_ equal to this sentinal. Since the comments in the generic kernel code indicate that the struct file will never be used for anything other than passing straight through to readpage(), this should be ok. Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/ops_file.h')
-rw-r--r--fs/gfs2/ops_file.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/ops_file.h b/fs/gfs2/ops_file.h
index 3c237bfc143d..192577b411f0 100644
--- a/fs/gfs2/ops_file.h
+++ b/fs/gfs2/ops_file.h
@@ -9,7 +9,7 @@
#ifndef __OPS_FILE_DOT_H__
#define __OPS_FILE_DOT_H__
-
+extern struct file gfs2_internal_file_sentinal;
extern int gfs2_internal_read(struct gfs2_inode *ip,
struct file_ra_state *ra_state,
char *buf, loff_t *pos, unsigned size);