mirror of
https://github.com/torvalds/linux.git
synced 2025-12-07 20:06:24 +00:00
Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net
Cross-merge networking fixes after downstream PR. No conflicts. Adjacent changes: drivers/net/ethernet/stmicro/stmmac/common.h38cc3c6dcc("net: stmmac: protect updates of 64-bit statistics counters")fd5a6a7131("net: stmmac: est: Per Tx-queue error count for HLBF")c5c3e1bfc9("net: stmmac: Offload queueMaxSDU from tc-taprio") drivers/net/wireless/microchip/wilc1000/netdev.cc901388028("wifi: fill in MODULE_DESCRIPTION()s for wilc1000")328efda22a("wifi: wilc1000: do not realloc workqueue everytime an interface is added") net/unix/garbage.c11498715f2("af_unix: Remove io_uring code for GC.")1279f9d9de("af_unix: Call kfree_skb() for dead unix_(sk)->oob_skb in GC.") Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
@@ -289,9 +289,11 @@ enum nft_rule_attributes {
|
||||
/**
|
||||
* enum nft_rule_compat_flags - nf_tables rule compat flags
|
||||
*
|
||||
* @NFT_RULE_COMPAT_F_UNUSED: unused
|
||||
* @NFT_RULE_COMPAT_F_INV: invert the check result
|
||||
*/
|
||||
enum nft_rule_compat_flags {
|
||||
NFT_RULE_COMPAT_F_UNUSED = (1 << 0),
|
||||
NFT_RULE_COMPAT_F_INV = (1 << 1),
|
||||
NFT_RULE_COMPAT_F_MASK = NFT_RULE_COMPAT_F_INV,
|
||||
};
|
||||
|
||||
@@ -145,12 +145,13 @@ struct serial_rs485 {
|
||||
#define SER_RS485_ENABLED _BITUL(0)
|
||||
#define SER_RS485_RTS_ON_SEND _BITUL(1)
|
||||
#define SER_RS485_RTS_AFTER_SEND _BITUL(2)
|
||||
#define SER_RS485_RX_DURING_TX _BITUL(3)
|
||||
#define SER_RS485_TERMINATE_BUS _BITUL(4)
|
||||
#define SER_RS485_ADDRB _BITUL(5)
|
||||
#define SER_RS485_ADDR_RECV _BITUL(6)
|
||||
#define SER_RS485_ADDR_DEST _BITUL(7)
|
||||
#define SER_RS485_MODE_RS422 _BITUL(8)
|
||||
/* Placeholder for bit 3: SER_RS485_RTS_BEFORE_SEND, which isn't used anymore */
|
||||
#define SER_RS485_RX_DURING_TX _BITUL(4)
|
||||
#define SER_RS485_TERMINATE_BUS _BITUL(5)
|
||||
#define SER_RS485_ADDRB _BITUL(6)
|
||||
#define SER_RS485_ADDR_RECV _BITUL(7)
|
||||
#define SER_RS485_ADDR_DEST _BITUL(8)
|
||||
#define SER_RS485_MODE_RS422 _BITUL(9)
|
||||
|
||||
__u32 delay_rts_before_send;
|
||||
__u32 delay_rts_after_send;
|
||||
|
||||
Reference in New Issue
Block a user