[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1229991408.3077.19.camel@achroite>
Date: Tue, 23 Dec 2008 00:16:48 +0000
From: Ben Hutchings <bhutchings@...arflare.com>
To: Santwona.Behera@....COM
Cc: netdev@...r.kernel.org, davem@...emloft.net, jeff@...zik.org,
gkernel-commit@...ts.sourceforge.net,
Matheos Worku <Matheos.Worku@....COM>,
Mehdi Bonyadi <Mehdi.Bonyadi@....COM>
Subject: Re: [PATCH 2/3] Add support for RX packet classification in
a network device
On Mon, 2008-12-22 at 15:04 -0800, Santwona.Behera@....COM wrote:
[...]
> >> @@ -558,14 +626,16 @@ struct ethtool_ops {
> >> #define TCP_V4_FLOW 0x01
> >> #define UDP_V4_FLOW 0x02
> >> #define SCTP_V4_FLOW 0x03
> >> -#define AH_ESP_V4_FLOW 0x04
> >> -#define TCP_V6_FLOW 0x05
> >> -#define UDP_V6_FLOW 0x06
> >> -#define SCTP_V6_FLOW 0x07
> >> -#define AH_ESP_V6_FLOW 0x08
> >> +#define AH_V4_FLOW 0x04
> >> +#define ESP_V4_FLOW 0x05
> >> +#define TCP_V6_FLOW 0x06
> >> +#define UDP_V6_FLOW 0x07
> >> +#define SCTP_V6_FLOW 0x08
> >> +#define AH_V6_FLOW 0x09
> >> +#define ESP_V6_FLOW 0x0a
> >> +#define IP_USER_FLOW 0x0b
> >>
> >> /* L3-L4 network traffic flow hash options */
> >> -#define RXH_DEV_PORT (1 << 0)
> >> #define RXH_L2DA (1 << 1)
> >> #define RXH_VLAN (1 << 2)
> >> #define RXH_L3_PROTO (1 << 3)
> > [...]
> >
> > No, you can't do this. Leave the existing definitions unchanged and
> > only add new ones.
>
> The original code/patch was not quite correct where the AH_ESP_V4_FLOW
> was being used to represent AH flows. So my goal here was to remove that
> and add 2 separate flow types for AH and ESP. I have two ways of
> achieving this without changing the existing definitions completely:
>
> 1. I change AH_ESP_Vx_FLOW defines to AH_Vx_FLOW defines and add 2 new
> defines for ESP_Vx_FLOW at the end, with values 0x9 and 0xa.
If AH_ESP_Vx_FLOW has only ever been implemented as AH-only then perhaps
this is reasonable.
> 2. I keep the AH_ESP_Vx_FLOW defines as is (but this will be dead code
> as it will not be used) and add 2 new AH_Vx_FLOW defines and 2 new
> ESP_Vx_FLOW defines at the end with values 0x9, 0xa, 0xb, 0xc.
This is safest.
Also you are probably right to remove RXH_DEV_PORT as that appears to be
an niu quirk that shouldn't be exposed.
Ben.
--
Ben Hutchings, Senior Software Engineer, Solarflare Communications
Not speaking for my employer; that's the marketing department's job.
They asked us to note that Solarflare product names are trademarked.
--
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