Skip to content

Commit

Permalink
[DLM] fix i_private
Browse files Browse the repository at this point in the history
> 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 <[email protected]>
Signed-off-by: Steven Whitehouse <[email protected]>
  • Loading branch information
teigland authored and swhiteho committed Jul 26, 2006
1 parent 20abf97 commit ae4a382
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/dlm/debug_fs.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit ae4a382

Please sign in to comment.