search for: maximal_and_minimal_el

Displaying 1 result from an estimated 1 matches for "maximal_and_minimal_el".

2020 Mar 01
0
[PATCH 2/3] virtio-net: Introduce RSS receive steering feature
...n. > */ > __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 "maximal". Thanks! > + /* bitmask of supported VIRTIO_NET_RSS_HASH_ types */ > + __u32 supported_hash_types; > } __...