Re: [PATCH 10/12] staging: lustre: Fix misplaced opening brace warnings

From: Srikrishan Malik
Date: Thu Aug 07 2014 - 11:31:58 EST


On Wed, Aug 06, 2014 at 11:18:13PM +0300, Dan Carpenter wrote:
> On Wed, Aug 06, 2014 at 10:43:00PM +0530, Srikrishan Malik wrote:
> > diff --git a/drivers/staging/lustre/lustre/mdc/mdc_locks.c b/drivers/staging/lustre/lustre/mdc/mdc_locks.c
> > index c03d77c9c5b8..09209171b50c 100644
> > --- a/drivers/staging/lustre/lustre/mdc/mdc_locks.c
> > +++ b/drivers/staging/lustre/lustre/mdc/mdc_locks.c
> > @@ -785,12 +785,12 @@ int mdc_enqueue(struct obd_export *exp, struct ldlm_enqueue_info *einfo,
> > __u64 flags, saved_flags = extra_lock_flags;
> > int rc;
> > struct ldlm_res_id res_id;
> > - static const ldlm_policy_data_t lookup_policy =
> > - { .l_inodebits = { MDS_INODELOCK_LOOKUP } };
> > - static const ldlm_policy_data_t update_policy =
> > - { .l_inodebits = { MDS_INODELOCK_UPDATE } };
> > - static const ldlm_policy_data_t layout_policy =
> > - { .l_inodebits = { MDS_INODELOCK_LAYOUT } };
> > + static const ldlm_policy_data_t lookup_policy = {
> > + .l_inodebits = { MDS_INODELOCK_LOOKUP } };
> > + static const ldlm_policy_data_t update_policy = {
> > + .l_inodebits = { MDS_INODELOCK_UPDATE } };
> > + static const ldlm_policy_data_t layout_policy = {
> > + .l_inodebits = { MDS_INODELOCK_LAYOUT } };
> > static const ldlm_policy_data_t getxattr_policy = {
> > .l_inodebits = { MDS_INODELOCK_XATTR } };
> > ldlm_policy_data_t const *policy = &lookup_policy;
>
> That looks silly before and after. Everything is indented in a funny
> way.

Is this better:

static const ldlm_policy_data_t lookup_policy = {
.l_inodebits = { MDS_INODELOCK_LOOKUP }
};

>
> regards,
> dan carpenter
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/