diff mbox series

[RFC,net-next,16/22] net: socionext: initialize mb bit in xdp_buff to 0

Message ID 76673f7e992f80826c0500b9f9c7c03d92e015cb.1595503780.git.lorenzo@kernel.org
State RFC
Delegated to: BPF Maintainers
Headers show
Series Introduce mb bit in xdp_buff/xdp_frame | expand

Commit Message

Lorenzo Bianconi July 23, 2020, 11:42 a.m. UTC
Initialize multi-buffer bit (mb) to 0 in xdp_buff data structure.
This is a preliminary patch to enable xdp multi-buffer support.

Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
---
 drivers/net/ethernet/socionext/netsec.c | 1 +
 1 file changed, 1 insertion(+)
diff mbox series

Patch

diff --git a/drivers/net/ethernet/socionext/netsec.c b/drivers/net/ethernet/socionext/netsec.c
index 0f366cc50b74..0c98391224bd 100644
--- a/drivers/net/ethernet/socionext/netsec.c
+++ b/drivers/net/ethernet/socionext/netsec.c
@@ -947,6 +947,7 @@  static int netsec_process_rx(struct netsec_priv *priv, int budget)
 
 	xdp.rxq = &dring->xdp_rxq;
 	xdp.frame_sz = PAGE_SIZE;
+	xdp.mb = 0;
 
 	rcu_read_lock();
 	xdp_prog = READ_ONCE(priv->xdp_prog);