[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20081112.020043.97055918.davem@davemloft.net>
Date: Wed, 12 Nov 2008 02:00:43 -0800 (PST)
From: David Miller <davem@...emloft.net>
To: patrick.ohly@...el.com
Cc: netdev@...r.kernel.org, opurdila@...acom.com,
shemminger@...tta.com, netdev@...eo.de, ak@...ux.intel.com,
john.ronciak@...el.com, dada1@...mosbay.com, oliver@...tkopp.net
Subject: Re: [RFC PATCH 06/13] workaround: detect time stamp when command
flags are expected
From: Patrick Ohly <patrick.ohly@...el.com>
Date: Wed, 29 Oct 2008 15:48:48 +0100
> + /* sanity check: extra bits set => might be a real time stamp */
> + if (orig_skb->tstamp.tv64 & ~(SKB_TSTAMP_TX_HARDWARE|SKB_TSTAMP_TX_HARDWARE_IN_PROGRESS|SKB_TSTAMP_TX_SOFTWARE)) {
Line is way too long, split up and group the bits:
if (orig_skb->tstamp.tv64 & ~(SKB_TSTAMP_TX_HARDWARE |
SKB_TSTAMP_TX_HARDWARE_IN_PROGRESS |
SKB_TSTAMP_TX_SOFTWARE)) {
--
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