Commit e65dbbb8 authored by Laure Millet's avatar Laure Millet Committed by Greg Kroah-Hartman

staging: lustre: namei.c: coding style: fix quoted string split across lines

This patch fixes a quoted string split across lines.
Signed-off-by: default avatarLaure Millet <laure.millet@lip6.fr>
Signed-off-by: default avatarMaxime Lorrillere <maxime.lorrillere@lip6.fr>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 07b249fa
......@@ -1112,10 +1112,9 @@ static int ll_rename(struct inode *old_dir, struct dentry *old_dentry,
int err;
CDEBUG(D_VFSTRACE,
"VFS Op:oldname=%pd,src_dir=%lu/%u(%p),newname=%pd,"
"tgt_dir=%lu/%u(%p)\n", old_dentry,
old_dir->i_ino, old_dir->i_generation, old_dir, new_dentry,
new_dir->i_ino, new_dir->i_generation, new_dir);
"VFS Op:oldname=%pd,src_dir=%lu/%u(%p),newname=%pd,tgt_dir=%lu/%u(%p)\n",
old_dentry, old_dir->i_ino, old_dir->i_generation, old_dir,
new_dentry, new_dir->i_ino, new_dir->i_generation, new_dir);
op_data = ll_prep_md_op_data(NULL, old_dir, new_dir, NULL, 0, 0,
LUSTRE_OPC_ANY, NULL);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment