[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20110411160946.7a2ec69a@nehalam>
Date: Mon, 11 Apr 2011 16:09:46 -0700
From: Stephen Hemminger <shemminger@...tta.com>
To: Amit Kumar Salecha <amit.salecha@...gic.com>
Cc: davem@...emloft.net, netdev@...r.kernel.org,
ameen.rahman@...gic.com, anirban.chakraborty@...gic.com
Subject: Re: [PATCHv2 NEXT 2/8] qlcnic: fix eswitch stats
On Mon, 4 Oct 2010 08:14:51 -0700
Amit Kumar Salecha <amit.salecha@...gic.com> wrote:
> +
> +#define QLCNIC_ADD_ESW_STATS(VAL1, VAL2)\
> +do { \
> + if (((VAL1) == QLCNIC_ESW_STATS_NOT_AVAIL) && \
> + ((VAL2) != QLCNIC_ESW_STATS_NOT_AVAIL)) \
> + (VAL1) = (VAL2); \
> + else if (((VAL1) != QLCNIC_ESW_STATS_NOT_AVAIL) && \
> + ((VAL2) != QLCNIC_ESW_STATS_NOT_AVAIL)) \
> + (VAL1) += (VAL2); \
> +} while (0)
Fugly macro. Make it an inline function?
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists