Displaying 13 results from an estimated 13 matches for "indirection_t".
Did you mean:
indirection
2020 Mar 01
2
[PATCH v3 2/3] virtio-net: Introduce RSS receive steering feature
...t; __u8 mac[ETH_ALEN];
> @@ -93,6 +105,12 @@ struct virtio_net_config {
> * Any other value stands for unknown.
> */
> __u8 duplex;
> + /* maximum size of RSS key */
> + __u8 rss_max_key_size;
> + /* maximum number of indirection table entries */
> + __le16 rss_max_indirection_table_length;
> + /* bitmask of supported VIRTIO_NET_RSS_HASH_ types */
> + __le32 supported_hash_types;
> } __attribute__((packed));
>
> /*
> @@ -246,7 +264,9 @@ struct virtio_net_ctrl_mac {
>
> /*
> * Control Receive Flow Steering
> - *
> + */
> +#define...
2020 Mar 01
2
[PATCH v3 2/3] virtio-net: Introduce RSS receive steering feature
...t; __u8 mac[ETH_ALEN];
> @@ -93,6 +105,12 @@ struct virtio_net_config {
> * Any other value stands for unknown.
> */
> __u8 duplex;
> + /* maximum size of RSS key */
> + __u8 rss_max_key_size;
> + /* maximum number of indirection table entries */
> + __le16 rss_max_indirection_table_length;
> + /* bitmask of supported VIRTIO_NET_RSS_HASH_ types */
> + __le32 supported_hash_types;
> } __attribute__((packed));
>
> /*
> @@ -246,7 +264,9 @@ struct virtio_net_ctrl_mac {
>
> /*
> * Control Receive Flow Steering
> - *
> + */
> +#define...
2020 Mar 02
2
[PATCH v3 2/3] virtio-net: Introduce RSS receive steering feature
...* Any other value stands for unknown.
> > > */
> > > __u8 duplex;
> > > + /* maximum size of RSS key */
> > > + __u8 rss_max_key_size;
> > > + /* maximum number of indirection table entries */
> > > + __le16 rss_max_indirection_table_length;
> > > + /* bitmask of supported VIRTIO_NET_RSS_HASH_ types */
> > > + __le32 supported_hash_types;
> > > } __attribute__((packed));
> > >
> > > /*
> > > @@ -246,7 +264,9 @@ struct virtio_net_ctrl_mac {
> > >
> &...
2020 Mar 02
2
[PATCH v3 2/3] virtio-net: Introduce RSS receive steering feature
...* Any other value stands for unknown.
> > > */
> > > __u8 duplex;
> > > + /* maximum size of RSS key */
> > > + __u8 rss_max_key_size;
> > > + /* maximum number of indirection table entries */
> > > + __le16 rss_max_indirection_table_length;
> > > + /* bitmask of supported VIRTIO_NET_RSS_HASH_ types */
> > > + __le32 supported_hash_types;
> > > } __attribute__((packed));
> > >
> > > /*
> > > @@ -246,7 +264,9 @@ struct virtio_net_ctrl_mac {
> > >
> &...
2020 Mar 01
0
[PATCH v3 2/3] virtio-net: Introduce RSS receive steering feature
...ining mac address (if VIRTIO_NET_F_MAC) */
__u8 mac[ETH_ALEN];
@@ -93,6 +105,12 @@ struct virtio_net_config {
* Any other value stands for unknown.
*/
__u8 duplex;
+ /* maximum size of RSS key */
+ __u8 rss_max_key_size;
+ /* maximum number of indirection table entries */
+ __le16 rss_max_indirection_table_length;
+ /* bitmask of supported VIRTIO_NET_RSS_HASH_ types */
+ __le32 supported_hash_types;
} __attribute__((packed));
/*
@@ -246,7 +264,9 @@ struct virtio_net_ctrl_mac {
/*
* Control Receive Flow Steering
- *
+ */
+#define VIRTIO_NET_CTRL_MQ 4
+/*
* The command VIRTIO_NET_CTRL_...
2020 Mar 02
0
[PATCH v3 2/3] virtio-net: Introduce RSS receive steering feature
..._net_config {
> > * Any other value stands for unknown.
> > */
> > __u8 duplex;
> > + /* maximum size of RSS key */
> > + __u8 rss_max_key_size;
> > + /* maximum number of indirection table entries */
> > + __le16 rss_max_indirection_table_length;
> > + /* bitmask of supported VIRTIO_NET_RSS_HASH_ types */
> > + __le32 supported_hash_types;
> > } __attribute__((packed));
> >
> > /*
> > @@ -246,7 +264,9 @@ struct virtio_net_ctrl_mac {
> >
> > /*
> > * Control Recei...
2020 Mar 01
0
[PATCH 2/3] virtio-net: Introduce RSS receive steering feature
...gt; __u8 mac[ETH_ALEN];
> @@ -93,6 +105,12 @@ struct virtio_net_config {
> * Any other value stands for unknown.
> */
> __u8 duplex;
> + /* maximal size of RSS key */
> + __u8 rss_max_key_size;
> + /* maximal number of indirection table entries */
> + __u16 rss_max_indirection_table_length;
This mirrors spec language. However I just stumbled upon this:
https://en.wikipedia.org/wiki/Maximal_and_minimal_elements
which seems to say maximal means "local maximum".
So I think we should fix both the spec and this header to
say "maximum" instead of "max...
2020 Mar 01
7
[PATCH v3 0/3] virtio-net: introduce features defined in the spec
This series introduce virtio-net features VIRTIO_NET_F_RSC_EXT,
VIRTIO_NET_F_RSS and VIRTIO_NET_F_HASH_REPORT.
Changes from v2: reformatted structure in patch 1
Yuri Benditovich (3):
virtio-net: Introduce extended RSC feature
virtio-net: Introduce RSS receive steering feature
virtio-net: Introduce hash report feature
include/uapi/linux/virtio_net.h | 100 ++++++++++++++++++++++++++++++--
2020 Mar 01
7
[PATCH v3 0/3] virtio-net: introduce features defined in the spec
This series introduce virtio-net features VIRTIO_NET_F_RSC_EXT,
VIRTIO_NET_F_RSS and VIRTIO_NET_F_HASH_REPORT.
Changes from v2: reformatted structure in patch 1
Yuri Benditovich (3):
virtio-net: Introduce extended RSC feature
virtio-net: Introduce RSS receive steering feature
virtio-net: Introduce hash report feature
include/uapi/linux/virtio_net.h | 100 ++++++++++++++++++++++++++++++--
2020 Mar 02
0
[PATCH v3 2/3] virtio-net: Introduce RSS receive steering feature
...unknown.
> > > > */
> > > > __u8 duplex;
> > > > + /* maximum size of RSS key */
> > > > + __u8 rss_max_key_size;
> > > > + /* maximum number of indirection table entries */
> > > > + __le16 rss_max_indirection_table_length;
> > > > + /* bitmask of supported VIRTIO_NET_RSS_HASH_ types */
> > > > + __le32 supported_hash_types;
> > > > } __attribute__((packed));
> > > >
> > > > /*
> > > > @@ -246,7 +264,9 @@ struct virtio_net_ct...
2020 Mar 02
3
[PATCH v4 0/3] virtio-net: introduce features defined in the spec
This series introduce virtio-net features VIRTIO_NET_F_RSC_EXT,
VIRTIO_NET_F_RSS and VIRTIO_NET_F_HASH_REPORT.
Changes from v3: reformatted structure in patch 1
Yuri Benditovich (3):
virtio-net: Introduce extended RSC feature
virtio-net: Introduce RSS receive steering feature
virtio-net: Introduce hash report feature
include/uapi/linux/virtio_net.h | 102 ++++++++++++++++++++++++++++++--
2020 Mar 01
6
[PATCH v2 0/3] virtio-net: introduce features defined in the spec
This series introduce virtio-net features VIRTIO_NET_F_RSC_EXT,
VIRTIO_NET_F_RSS and VIRTIO_NET_F_HASH_REPORT.
Changes from v1:
__virtio -> __le
maximal -> maximum
minor style fixes
Yuri Benditovich (3):
virtio-net: Introduce extended RSC feature
virtio-net: Introduce RSS receive steering feature
virtio-net: Introduce hash report feature
include/uapi/linux/virtio_net.h | 90
2020 Mar 01
6
[PATCH v2 0/3] virtio-net: introduce features defined in the spec
This series introduce virtio-net features VIRTIO_NET_F_RSC_EXT,
VIRTIO_NET_F_RSS and VIRTIO_NET_F_HASH_REPORT.
Changes from v1:
__virtio -> __le
maximal -> maximum
minor style fixes
Yuri Benditovich (3):
virtio-net: Introduce extended RSC feature
virtio-net: Introduce RSS receive steering feature
virtio-net: Introduce hash report feature
include/uapi/linux/virtio_net.h | 90