From: John Fastabend <john.r.fastabend@intel.com>
To: intel-wired-lan@osuosl.org
Subject: [Intel-wired-lan] [net-next PATCH v3 1/2] ethtool: Add helper routines to pass vf to rx_flow_spec
Date: Mon, 18 May 2015 08:55:08 -0700 [thread overview]
Message-ID: <555A0B5C.3020204@intel.com> (raw)
In-Reply-To: <555A096D.4040902@redhat.com>
On 05/18/2015 08:46 AM, Alexander Duyck wrote:
>
>
> On 05/18/2015 08:31 AM, John Fastabend wrote:
>> The ring_cookie is 64 bits wide which is much larger than can be used
>> for actual queue index values. So provide some helper routines to
>> pack a VF index into the cookie. This is useful to steer packets to
>> a VF ring without having to know the queue layout of the device.
>>
>> Signed-off-by: John Fastabend <john.r.fastabend@intel.com>
>> ---
>> include/uapi/linux/ethtool.h | 20 ++++++++++++++++++++
>> 1 file changed, 20 insertions(+)
>>
>> diff --git a/include/uapi/linux/ethtool.h b/include/uapi/linux/ethtool.h
>> index 2e49fc8..ecc658d 100644
>> --- a/include/uapi/linux/ethtool.h
>> +++ b/include/uapi/linux/ethtool.h
>> @@ -796,6 +796,26 @@ struct ethtool_rx_flow_spec {
>> __u32 location;
>> };
>> +/* How rings are layed out when accessing virtual functions or
>> + * offloaded queues is device specific. To allow users to flow
>> + * steering and specify these queues though break the ring cookie
>> + * into a 32bit queue index with an 8 bit virtual function id.
>> + * This also leaves the 3bytes for further specifiers.
>> + */
>> +#define ETHTOOL_RX_FLOW_SPEC_RING 0x00000000FFFFFFFF
>> +#define ETHTOOL_RX_FLOW_SPEC_RING_VF 0x000000FF00000000
>
> I still say the VF portion should be more bits. If not 16 then at
> least 12 so that there is room for expansion in the event that
> somebody comes out with a device that supports 256 or more VFs. An
> alternative would be to document that we may want to leave space for
> future expansion of the VF field.
My argument is we don't have these devices today and we can always
extend these later without breaking API because we have 3 unused bytes
here. If we add it now we can't really revert it if we come up with a
better use for the bytes later. I'll add a comment.
>
>> +#define ETHTOOL_RX_FLOW_SPEC_RING_VF_OFF 32
>> +static inline __u64 ethtool_get_flow_spec_ring(__u64 ring_cookie)
>> +{
>> + return ETHTOOL_RX_FLOW_SPEC_RING & ring_cookie;
>> +};
>> +
>> +static inline __u64 ethtool_get_flow_spec_ring_vf(__u64 ring_cookie)
>> +{
>> + return (ETHTOOL_RX_FLOW_SPEC_RING_VF & ring_cookie) >>
>> + ETHTOOL_RX_FLOW_SPEC_RING_VF_OFF;
>> +};
>> +
>> /**
>> * struct ethtool_rxnfc - command to get or set RX flow classification rules
>> * @cmd: Specific command number - %ETHTOOL_GRXFH, %ETHTOOL_SRXFH,
>>
>
> _______________________________________________
> Intel-wired-lan mailing list
> Intel-wired-lan at lists.osuosl.org
> http://lists.osuosl.org/mailman/listinfo/intel-wired-lan
prev parent reply other threads:[~2015-05-18 15:55 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-05-18 15:31 [Intel-wired-lan] [net-next PATCH v3 1/2] ethtool: Add helper routines to pass vf to rx_flow_spec John Fastabend
2015-05-18 15:32 ` [Intel-wired-lan] [net-next PATCH v3 2/2] ixgbe: Allow flow director to use entire queue space John Fastabend
2015-05-18 15:46 ` [Intel-wired-lan] [net-next PATCH v3 1/2] ethtool: Add helper routines to pass vf to rx_flow_spec Alexander Duyck
2015-05-18 15:55 ` John Fastabend [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=555A0B5C.3020204@intel.com \
--to=john.r.fastabend@intel.com \
--cc=intel-wired-lan@osuosl.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.