[PATCH] net: xdp: Give compiler __always_inline hint for xdp_rxq_info_init()

2020-11-30 Thread Leesoo Ahn
The function has only a statement of calling memset() to clear xdp_rxq object. Let it always be an inline function. Signed-off-by: Leesoo Ahn --- net/core/xdp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/core/xdp.c b/net/core/xdp.c index 48aba933a5a8..dab72b9a71a1

Re: [PATCH] rt2x00: Use fallthrough pseudo-keyword macro

2020-09-02 Thread Leesoo Ahn
20. 9. 2. 오후 11:20에 Gustavo A. R. Silva 이(가) 쓴 글: On 9/2/20 08:05, Leesoo Ahn wrote: Replace all '/* fall through */' comments with the macro[1]. [1]: https://www.kernel.org/doc/html/v5.7/process/deprecated.html?highlight=fallthrough#implicit-switch-case-fall-through This look

[PATCH] rt2x00: Use fallthrough pseudo-keyword macro

2020-09-02 Thread Leesoo Ahn
Replace all '/* fall through */' comments with the macro[1]. [1]: https://www.kernel.org/doc/html/v5.7/process/deprecated.html?highlight=fallthrough#implicit-switch-case-fall-through Signed-off-by: Leesoo Ahn --- .../net/wireless/ralink/rt2x00/rt2400pci.c| 3 ++- .../net/wirel

[PATCH] pktgen: fix error message with wrong function name

2020-09-01 Thread Leesoo Ahn
Error on calling kthread_create_on_node prints wrong function name, kernel_thread. Signed-off-by: Leesoo Ahn --- net/core/pktgen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/core/pktgen.c b/net/core/pktgen.c index 95f4c6b8f51a..44fdbb9c6e53 100644 --- a/net/core