aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/oprofile/oprofilefs.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/oprofile/oprofilefs.c')
-rw-r--r--drivers/oprofile/oprofilefs.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/oprofile/oprofilefs.c b/drivers/oprofile/oprofilefs.c
index 71c2da277d6e..deb37354785b 100644
--- a/drivers/oprofile/oprofilefs.c
+++ b/drivers/oprofile/oprofilefs.c
@@ -110,8 +110,8 @@ static ssize_t ulong_write_file(struct file * file, char const __user * buf, siz
110 110
111static int default_open(struct inode * inode, struct file * filp) 111static int default_open(struct inode * inode, struct file * filp)
112{ 112{
113 if (inode->u.generic_ip) 113 if (inode->i_private)
114 filp->private_data = inode->u.generic_ip; 114 filp->private_data = inode->i_private;
115 return 0; 115 return 0;
116} 116}
117 117
@@ -158,7 +158,7 @@ int oprofilefs_create_ulong(struct super_block * sb, struct dentry * root,
158 if (!d) 158 if (!d)
159 return -EFAULT; 159 return -EFAULT;
160 160
161 d->d_inode->u.generic_ip = val; 161 d->d_inode->i_private = val;
162 return 0; 162 return 0;
163} 163}
164 164
@@ -171,7 +171,7 @@ int oprofilefs_create_ro_ulong(struct super_block * sb, struct dentry * root,
171 if (!d) 171 if (!d)
172 return -EFAULT; 172 return -EFAULT;
173 173
174 d->d_inode->u.generic_ip = val; 174 d->d_inode->i_private = val;
175 return 0; 175 return 0;
176} 176}
177 177
@@ -197,7 +197,7 @@ int oprofilefs_create_ro_atomic(struct super_block * sb, struct dentry * root,
197 if (!d) 197 if (!d)
198 return -EFAULT; 198 return -EFAULT;
199 199
200 d->d_inode->u.generic_ip = val; 200 d->d_inode->i_private = val;
201 return 0; 201 return 0;
202} 202}
203 203