On 2013/12/21 1:53, Ben Hutchings wrote: > On Fri, 2013-12-20 at 19:57 +0800, Chen Weilong wrote: >> From: Weilong Chen <chenweilong@xxxxxxxxxx> >> >> >> Signed-off-by: Weilong Chen <chenweilong@xxxxxxxxxx> >> --- >> net/ipv4/cipso_ipv4.c | 6 +++--- >> net/ipv4/sysctl_net_ipv4.c | 2 +- >> net/ipv4/xfrm4_mode_beet.c | 2 +- >> 3 files changed, 5 insertions(+), 5 deletions(-) >> >> diff --git a/net/ipv4/cipso_ipv4.c b/net/ipv4/cipso_ipv4.c >> index 4b59b6e..081f51a 100644 >> --- a/net/ipv4/cipso_ipv4.c >> +++ b/net/ipv4/cipso_ipv4.c >> @@ -1336,7 +1336,7 @@ static int cipso_v4_parsetag_rbm(const struct cipso_v4_doi *doi_def, >> >> if (tag_len > 4) { >> secattr->attr.mls.cat = >> - netlbl_secattr_catmap_alloc(GFP_ATOMIC); >> + netlbl_secattr_catmap_alloc(GFP_ATOMIC); >> if (secattr->attr.mls.cat == NULL) >> return -ENOMEM; >> >> @@ -1432,7 +1432,7 @@ static int cipso_v4_parsetag_enum(const struct cipso_v4_doi *doi_def, >> >> if (tag_len > 4) { >> secattr->attr.mls.cat = >> - netlbl_secattr_catmap_alloc(GFP_ATOMIC); >> + netlbl_secattr_catmap_alloc(GFP_ATOMIC); >> if (secattr->attr.mls.cat == NULL) >> return -ENOMEM; >> >> @@ -1527,7 +1527,7 @@ static int cipso_v4_parsetag_rng(const struct cipso_v4_doi *doi_def, >> >> if (tag_len > 4) { >> secattr->attr.mls.cat = >> - netlbl_secattr_catmap_alloc(GFP_ATOMIC); >> + netlbl_secattr_catmap_alloc(GFP_ATOMIC); >> if (secattr->attr.mls.cat == NULL) >> return -ENOMEM; >> > [...] > > These lines are still excessively indented (one extra tab is enough), > and could just be appended to the lines above them: > > secattr->attr.mls.cat = netlbl_secattr_catmap_alloc(GFP_ATOMIC); > > (exactly 80 columns long). > > Ben. > OK, That's very good, Thanks! -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html