You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
vmxnet3: remove set_flag_le{16,64} helpers
It's easier to just annotate the constants as little endian types and set/clear the flags directly. Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> Signed-off-by: Shreyas Bhatewara <sbhatewara@vmware.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
19ecae2c8f
commit
3843e5154c
@@ -88,9 +88,9 @@ struct UPT1_RSSConf {
|
||||
|
||||
/* features */
|
||||
enum {
|
||||
UPT1_F_RXCSUM = 0x0001, /* rx csum verification */
|
||||
UPT1_F_RSS = 0x0002,
|
||||
UPT1_F_RXVLAN = 0x0004, /* VLAN tag stripping */
|
||||
UPT1_F_LRO = 0x0008,
|
||||
UPT1_F_RXCSUM = cpu_to_le64(0x0001), /* rx csum verification */
|
||||
UPT1_F_RSS = cpu_to_le64(0x0002),
|
||||
UPT1_F_RXVLAN = cpu_to_le64(0x0004), /* VLAN tag stripping */
|
||||
UPT1_F_LRO = cpu_to_le64(0x0008),
|
||||
};
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user