Commit 982ec91f authored by Srikrishan Malik's avatar Srikrishan Malik Committed by Greg Kroah-Hartman

staging: lustre: move open brace to next line after functions

Fixes the following checkpatch error:

ERROR: open brace '{' following function declarations go on the next line
Signed-off-by: default avatarSrikrishan Malik <srikrishanmalik@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 444014d6
...@@ -256,7 +256,8 @@ void mdc_open_pack(struct ptlrpc_request *req, struct md_op_data *op_data, ...@@ -256,7 +256,8 @@ void mdc_open_pack(struct ptlrpc_request *req, struct md_op_data *op_data,
set_mrc_cr_flags(rec, cr_flags); set_mrc_cr_flags(rec, cr_flags);
} }
static inline __u64 attr_pack(unsigned int ia_valid) { static inline __u64 attr_pack(unsigned int ia_valid)
{
__u64 sa_valid = 0; __u64 sa_valid = 0;
if (ia_valid & ATTR_MODE) if (ia_valid & ATTR_MODE)
......
...@@ -2384,7 +2384,8 @@ int mdc_fid_alloc(struct obd_export *exp, struct lu_fid *fid, ...@@ -2384,7 +2384,8 @@ int mdc_fid_alloc(struct obd_export *exp, struct lu_fid *fid,
return seq_client_alloc_fid(NULL, seq, fid); return seq_client_alloc_fid(NULL, seq, fid);
} }
struct obd_uuid *mdc_get_uuid(struct obd_export *exp) { struct obd_uuid *mdc_get_uuid(struct obd_export *exp)
{
struct client_obd *cli = &exp->exp_obd->u.cli; struct client_obd *cli = &exp->exp_obd->u.cli;
return &cli->cl_target_uuid; return &cli->cl_target_uuid;
} }
......
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