[DLM] fix i_private
authorDavid Teigland <teigland@redhat.com>
Wed, 26 Jul 2006 19:31:15 +0000 (15:31 -0400)
committerSteven Whitehouse <swhiteho@redhat.com>
Wed, 26 Jul 2006 19:31:15 +0000 (15:31 -0400)
> 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>
fs/dlm/debug_fs.c

index 516f6c9..8f471d9 100644 (file)
@@ -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;
 }