All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH][net-next] tun: align write-heavy flow entry members to a cache line
@ 2018-12-06  8:08 Li RongQing
  2018-12-06  9:56 ` Jason Wang
  2018-12-06 20:16 ` David Miller
  0 siblings, 2 replies; 3+ messages in thread
From: Li RongQing @ 2018-12-06  8:08 UTC (permalink / raw)
  To: netdev

tun flow entry 'updated' fields are written when receive
every packet. Thus if a flow is receiving packets from a
particular flow entry, it'll cause false-sharing with
all the other who has looked it up, so move it in its own
cache line

and update 'queue_index' and 'update' field only when
they are changed to reduce the cache false-sharing.

Signed-off-by: Zhang Yu <zhangyu31@baidu.com>
Signed-off-by: Wang Li <wangli39@baidu.com>
Signed-off-by: Li RongQing <lirongqing@baidu.com>
---
 drivers/net/tun.c | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/drivers/net/tun.c b/drivers/net/tun.c
index 835c73f42ae7..d0745dc81976 100644
--- a/drivers/net/tun.c
+++ b/drivers/net/tun.c
@@ -201,7 +201,7 @@ struct tun_flow_entry {
 	u32 rxhash;
 	u32 rps_rxhash;
 	int queue_index;
-	unsigned long updated;
+	unsigned long updated ____cacheline_aligned_in_smp;
 };
 
 #define TUN_NUM_FLOW_ENTRIES 1024
@@ -539,8 +539,10 @@ static void tun_flow_update(struct tun_struct *tun, u32 rxhash,
 	e = tun_flow_find(head, rxhash);
 	if (likely(e)) {
 		/* TODO: keep queueing to old queue until it's empty? */
-		e->queue_index = queue_index;
-		e->updated = jiffies;
+		if (e->queue_index != queue_index)
+			e->queue_index = queue_index;
+		if (e->updated != jiffies)
+			e->updated = jiffies;
 		sock_rps_record_flow_hash(e->rps_rxhash);
 	} else {
 		spin_lock_bh(&tun->lock);
-- 
2.16.2

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH][net-next] tun: align write-heavy flow entry members to a cache line
  2018-12-06  8:08 [PATCH][net-next] tun: align write-heavy flow entry members to a cache line Li RongQing
@ 2018-12-06  9:56 ` Jason Wang
  2018-12-06 20:16 ` David Miller
  1 sibling, 0 replies; 3+ messages in thread
From: Jason Wang @ 2018-12-06  9:56 UTC (permalink / raw)
  To: Li RongQing, netdev


On 2018/12/6 下午4:08, Li RongQing wrote:
> tun flow entry 'updated' fields are written when receive
> every packet. Thus if a flow is receiving packets from a
> particular flow entry, it'll cause false-sharing with
> all the other who has looked it up, so move it in its own
> cache line
>
> and update 'queue_index' and 'update' field only when
> they are changed to reduce the cache false-sharing.
>
> Signed-off-by: Zhang Yu <zhangyu31@baidu.com>
> Signed-off-by: Wang Li <wangli39@baidu.com>
> Signed-off-by: Li RongQing <lirongqing@baidu.com>
> ---
>   drivers/net/tun.c | 8 +++++---
>   1 file changed, 5 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/net/tun.c b/drivers/net/tun.c
> index 835c73f42ae7..d0745dc81976 100644
> --- a/drivers/net/tun.c
> +++ b/drivers/net/tun.c
> @@ -201,7 +201,7 @@ struct tun_flow_entry {
>   	u32 rxhash;
>   	u32 rps_rxhash;
>   	int queue_index;
> -	unsigned long updated;
> +	unsigned long updated ____cacheline_aligned_in_smp;
>   };
>   
>   #define TUN_NUM_FLOW_ENTRIES 1024
> @@ -539,8 +539,10 @@ static void tun_flow_update(struct tun_struct *tun, u32 rxhash,
>   	e = tun_flow_find(head, rxhash);
>   	if (likely(e)) {
>   		/* TODO: keep queueing to old queue until it's empty? */
> -		e->queue_index = queue_index;
> -		e->updated = jiffies;
> +		if (e->queue_index != queue_index)
> +			e->queue_index = queue_index;
> +		if (e->updated != jiffies)
> +			e->updated = jiffies;


Acked-by: Jason Wang <jasowang@redhat.com>

Btw, do you have perf numbers for this?

Thanks


>   		sock_rps_record_flow_hash(e->rps_rxhash);
>   	} else {
>   		spin_lock_bh(&tun->lock);

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH][net-next] tun: align write-heavy flow entry members to a cache line
  2018-12-06  8:08 [PATCH][net-next] tun: align write-heavy flow entry members to a cache line Li RongQing
  2018-12-06  9:56 ` Jason Wang
@ 2018-12-06 20:16 ` David Miller
  1 sibling, 0 replies; 3+ messages in thread
From: David Miller @ 2018-12-06 20:16 UTC (permalink / raw)
  To: lirongqing; +Cc: netdev

From: Li RongQing <lirongqing@baidu.com>
Date: Thu,  6 Dec 2018 16:08:17 +0800

> tun flow entry 'updated' fields are written when receive
> every packet. Thus if a flow is receiving packets from a
> particular flow entry, it'll cause false-sharing with
> all the other who has looked it up, so move it in its own
> cache line
> 
> and update 'queue_index' and 'update' field only when
> they are changed to reduce the cache false-sharing.
> 
> Signed-off-by: Zhang Yu <zhangyu31@baidu.com>
> Signed-off-by: Wang Li <wangli39@baidu.com>
> Signed-off-by: Li RongQing <lirongqing@baidu.com>

Applied.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-12-06 20:16 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-06  8:08 [PATCH][net-next] tun: align write-heavy flow entry members to a cache line Li RongQing
2018-12-06  9:56 ` Jason Wang
2018-12-06 20:16 ` David Miller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.