aboutsummaryrefslogtreecommitdiffstats
path: root/fs/dlm/debug_fs.c
diff options
context:
space:
mode:
authorDavid Teigland <teigland@redhat.com>2006-07-26 15:31:15 -0400
committerSteven Whitehouse <swhiteho@redhat.com>2006-07-26 15:31:15 -0400
commitae4a382004fc6cf229c51deaf69910410d313e0b (patch)
tree14a01a330a8ee5fdcfc1dbb84e45608b06d9fd42 /fs/dlm/debug_fs.c
parent[DLM] fix broken patches (diff)
downloadlinux-dev-ae4a382004fc6cf229c51deaf69910410d313e0b.tar.xz
linux-dev-ae4a382004fc6cf229c51deaf69910410d313e0b.zip
[DLM] fix i_private
> I think you must have an old version of the base kernel as well? > i_private no longer exists in struct inode, so you'll have to use > something else, I have that patch in my stack but didn't send it; for some reason I thought it was already changed in your git tree. Signed-off-by: David Teigland <teigland@redhat.com> Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/dlm/debug_fs.c')
-rw-r--r--fs/dlm/debug_fs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/dlm/debug_fs.c b/fs/dlm/debug_fs.c
index 516f6c9ee4d5..8f471d9a9e3a 100644
--- a/fs/dlm/debug_fs.c
+++ b/fs/dlm/debug_fs.c
@@ -301,7 +301,7 @@ static struct file_operations rsb_fops = {
static int waiters_open(struct inode *inode, struct file *file)
{
- file->private_data = inode->i_private;
+ file->private_data = inode->u.generic_ip;
return 0;
}