[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20130417.132818.1433580618679802344.davem@davemloft.net>
Date: Wed, 17 Apr 2013 13:28:18 -0400 (EDT)
From: David Miller <davem@...emloft.net>
To: n1ght.4nd.d4y@...il.com
Cc: kuznet@....inr.ac.ru, jmorris@...ei.org, yoshfuji@...ux-ipv6.org,
kaber@...sh.net, netdev@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH] IPv6: simplify & condense a few declarations &
statements
From: Nathaniel Yazdani <n1ght.4nd.d4y@...il.com>
Date: Wed, 17 Apr 2013 10:20:22 -0700
> This patch combines several statements/declarations into more concise forms and removes a
> couple of unnecessary local variables within a few functions, mostly inline.
Please make commit messages with 80 column long lines maximum.
> @@ -111,10 +111,7 @@ static inline void fib6_walker_unlink(struct fib6_walker_t *w)
> }
> static __inline__ u32 fib6_new_sernum(void)
> {
> - u32 n = ++rt_sernum;
> - if ((__s32)n <= 0)
> - rt_sernum = n = 1;
> - return n;
> + return (__s32)++rt_sernum <= 0 ? rt_sernum = 1 : rt_sernum;
Like your commit message, I find this unreadable, and definitely not
an improvement.
I'm not applying this even with the long lines in the commit message
fixes, sorry.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists