Commit cf29a7b6 authored by Tina Johnson's avatar Tina Johnson Committed by Greg Kroah-Hartman

Staging: lustre: Fix checkpatch warning: Missing blank line

The following checkpatch warning was fixed :

WARNING: Missing a blank line after declarations
Signed-off-by: default avatarTina Johnson <tinajohnson.1234@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 882e7e21
...@@ -712,6 +712,7 @@ void lustre_dump_dentry(struct dentry *dentry, int recur) ...@@ -712,6 +712,7 @@ void lustre_dump_dentry(struct dentry *dentry, int recur)
list_for_each(tmp, &dentry->d_subdirs) { list_for_each(tmp, &dentry->d_subdirs) {
struct dentry *d = list_entry(tmp, struct dentry, d_u.d_child); struct dentry *d = list_entry(tmp, struct dentry, d_u.d_child);
lustre_dump_dentry(d, recur - 1); lustre_dump_dentry(d, recur - 1);
} }
} }
...@@ -1152,6 +1153,7 @@ struct inode *ll_inode_from_resource_lock(struct ldlm_lock *lock) ...@@ -1152,6 +1153,7 @@ struct inode *ll_inode_from_resource_lock(struct ldlm_lock *lock)
lock_res_and_lock(lock); lock_res_and_lock(lock);
if (lock->l_resource->lr_lvb_inode) { if (lock->l_resource->lr_lvb_inode) {
struct ll_inode_info *lli; struct ll_inode_info *lli;
lli = ll_i2info(lock->l_resource->lr_lvb_inode); lli = ll_i2info(lock->l_resource->lr_lvb_inode);
if (lli->lli_inode_magic == LLI_INODE_MAGIC) { if (lli->lli_inode_magic == LLI_INODE_MAGIC) {
inode = igrab(lock->l_resource->lr_lvb_inode); inode = igrab(lock->l_resource->lr_lvb_inode);
...@@ -1850,6 +1852,7 @@ void ll_read_inode2(struct inode *inode, void *opaque) ...@@ -1850,6 +1852,7 @@ void ll_read_inode2(struct inode *inode, void *opaque)
if (S_ISREG(inode->i_mode)) { if (S_ISREG(inode->i_mode)) {
struct ll_sb_info *sbi = ll_i2sbi(inode); struct ll_sb_info *sbi = ll_i2sbi(inode);
inode->i_op = &ll_file_inode_operations; inode->i_op = &ll_file_inode_operations;
inode->i_fop = sbi->ll_fop; inode->i_fop = sbi->ll_fop;
inode->i_mapping->a_ops = (struct address_space_operations *)&ll_aops; inode->i_mapping->a_ops = (struct address_space_operations *)&ll_aops;
......
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