diff options
Diffstat (limited to 'drivers/oprofile')
-rw-r--r-- | drivers/oprofile/buffer_sync.c | 2 | ||||
-rw-r--r-- | drivers/oprofile/oprofilefs.c | 3 |
2 files changed, 1 insertions, 4 deletions
diff --git a/drivers/oprofile/buffer_sync.c b/drivers/oprofile/buffer_sync.c index ac014cb27915..9da5a4b81133 100644 --- a/drivers/oprofile/buffer_sync.c +++ b/drivers/oprofile/buffer_sync.c | |||
@@ -201,7 +201,7 @@ static inline unsigned long fast_get_dcookie(struct path *path) | |||
201 | { | 201 | { |
202 | unsigned long cookie; | 202 | unsigned long cookie; |
203 | 203 | ||
204 | if (path->dentry->d_cookie) | 204 | if (path->dentry->d_flags & DCACHE_COOKIE) |
205 | return (unsigned long)path->dentry; | 205 | return (unsigned long)path->dentry; |
206 | get_dcookie(path, &cookie); | 206 | get_dcookie(path, &cookie); |
207 | return cookie; | 207 | return cookie; |
diff --git a/drivers/oprofile/oprofilefs.c b/drivers/oprofile/oprofilefs.c index ddc4c59f02dc..b7e4cee24269 100644 --- a/drivers/oprofile/oprofilefs.c +++ b/drivers/oprofile/oprofilefs.c | |||
@@ -29,9 +29,6 @@ static struct inode *oprofilefs_get_inode(struct super_block *sb, int mode) | |||
29 | 29 | ||
30 | if (inode) { | 30 | if (inode) { |
31 | inode->i_mode = mode; | 31 | inode->i_mode = mode; |
32 | inode->i_uid = 0; | ||
33 | inode->i_gid = 0; | ||
34 | inode->i_blocks = 0; | ||
35 | inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME; | 32 | inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME; |
36 | } | 33 | } |
37 | return inode; | 34 | return inode; |