Re: [PATCH] tun: remove unnecessary memory barrier

2019-02-25 Thread David Miller
From: Timur Celik Date: Mon, 25 Feb 2019 21:13:13 +0100 > Replace set_current_state with __set_current_state since no memory > barrier is needed at this point. > > Signed-off-by: Timur Celik Applied, thanks.

Re: [PATCH] tun: remove unnecessary memory barrier

2019-02-25 Thread Eric Dumazet
On 02/25/2019 12:13 PM, Timur Celik wrote: > Replace set_current_state with __set_current_state since no memory > barrier is needed at this point. > > Signed-off-by: Timur Celik > --- > drivers/net/tun.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) SGTM, thanks. Reviewed-by:

[PATCH] tun: remove unnecessary memory barrier

2019-02-25 Thread Timur Celik
Replace set_current_state with __set_current_state since no memory barrier is needed at this point. Signed-off-by: Timur Celik --- drivers/net/tun.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/tun.c b/drivers/net/tun.c index d291762b9e9d..53f4f37b0ffd 100644