Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1369123 > unrolled thread

[PATCH] net: mvpp2: use cache_line_size() to get cacheline size

Started byJisheng Zhang <jszhang@marvell.com>
First post2016-04-01 11:20 +0200
Last post2016-04-01 20:50 +0200
Articles 2 — 2 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH] net: mvpp2: use cache_line_size() to get cacheline size Jisheng Zhang <jszhang@marvell.com> - 2016-04-01 11:20 +0200
    Re: [PATCH] net: mvpp2: use cache_line_size() to get cacheline size David Miller <davem@davemloft.net> - 2016-04-01 20:50 +0200

#1369123 — [PATCH] net: mvpp2: use cache_line_size() to get cacheline size

FromJisheng Zhang <jszhang@marvell.com>
Date2016-04-01 11:20 +0200
Subject[PATCH] net: mvpp2: use cache_line_size() to get cacheline size
Message-ID<rj3pg-2eA-11@gated-at.bofh.it>
L1_CACHE_BYTES may not be the real cacheline size, use cache_line_size
to determine the cacheline size in runtime.

Signed-off-by: Jisheng Zhang <jszhang@marvell.com>
Suggested-by: Marcin Wojtas <mw@semihalf.com>
---
 drivers/net/ethernet/marvell/mvpp2.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/marvell/mvpp2.c b/drivers/net/ethernet/marvell/mvpp2.c
index 05f358b..23f3c08 100644
--- a/drivers/net/ethernet/marvell/mvpp2.c
+++ b/drivers/net/ethernet/marvell/mvpp2.c
@@ -376,7 +376,7 @@
 
 #define MVPP2_RX_PKT_SIZE(mtu) \
 	ALIGN((mtu) + MVPP2_MH_SIZE + MVPP2_VLAN_TAG_LEN + \
-	      ETH_HLEN + ETH_FCS_LEN, L1_CACHE_BYTES)
+	      ETH_HLEN + ETH_FCS_LEN, cache_line_size())
 
 #define MVPP2_RX_BUF_SIZE(pkt_size)	((pkt_size) + NET_SKB_PAD)
 #define MVPP2_RX_TOTAL_SIZE(buf_size)	((buf_size) + MVPP2_SKB_SHINFO_SIZE)
-- 
2.8.0.rc3

[toc] | [next] | [standalone]


#1369525

FromDavid Miller <davem@davemloft.net>
Date2016-04-01 20:50 +0200
Message-ID<rjciS-8u7-17@gated-at.bofh.it>
In reply to#1369123
From: Jisheng Zhang <jszhang@marvell.com>
Date: Fri, 1 Apr 2016 17:11:05 +0800

> L1_CACHE_BYTES may not be the real cacheline size, use cache_line_size
> to determine the cacheline size in runtime.
> 
> Signed-off-by: Jisheng Zhang <jszhang@marvell.com>
> Suggested-by: Marcin Wojtas <mw@semihalf.com>

Applied.

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web