aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorJoel Becker <joel.becker@oracle.com>2010-09-15 19:56:54 -0400
committerJoel Becker <joel.becker@oracle.com>2010-09-15 19:56:54 -0400
commitc0e1a3e80dc030cd54f06416efbf9e439bf6ecb7 (patch)
tree659e4af1bc80c9b14458cfcfae87a35fe196e8bf /fs
parent5e98d492406818e6a94c0ba54c61f59d40cefa4a (diff)
ocfs2: Silence unused warning.
When CONFIG_OCFS2_DEBUG_MASKLOG is undefined, we don't use the dentry variable in ocfs2_sync_file(). Let's just move all access to the dentry inside the logging call. Signed-off-by: Joel Becker <joel.becker@oracle.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/ocfs2/file.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/ocfs2/file.c b/fs/ocfs2/file.c
index 9a74542e1a05..13af9937bdda 100644
--- a/fs/ocfs2/file.c
+++ b/fs/ocfs2/file.c
@@ -174,12 +174,12 @@ static int ocfs2_sync_file(struct file *file, int datasync)
174{ 174{
175 int err = 0; 175 int err = 0;
176 journal_t *journal; 176 journal_t *journal;
177 struct dentry *dentry = file->f_path.dentry;
178 struct inode *inode = file->f_mapping->host; 177 struct inode *inode = file->f_mapping->host;
179 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb); 178 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
180 179
181 mlog_entry("(0x%p, 0x%p, %d, '%.*s')\n", file, dentry, datasync, 180 mlog_entry("(0x%p, %d, 0x%p, '%.*s')\n", file, datasync,
182 dentry->d_name.len, dentry->d_name.name); 181 file->f_path.dentry, file->f_path.dentry->d_name.len,
182 file->f_path.dentry->d_name.name);
183 183
184 if (datasync && !(inode->i_state & I_DIRTY_DATASYNC)) { 184 if (datasync && !(inode->i_state & I_DIRTY_DATASYNC)) {
185 /* 185 /*