diff mbox series

[net-next] net: packet: make pkt_sk() inline

Message ID 20210127123302.29842-1-dong.menglong@zte.com.cn
State New
Headers show
Series [net-next] net: packet: make pkt_sk() inline | expand

Commit Message

Menglong Dong Jan. 27, 2021, 12:33 p.m. UTC
From: Menglong Dong <dong.menglong@zte.com.cn>

It's better make 'pkt_sk()' inline here, as non-inline function
shouldn't occur in headers. Besides, this function is simple
enough to be inline.

Signed-off-by: Menglong Dong <dong.menglong@zte.com.cn>
---
 net/packet/internal.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

patchwork-bot+netdevbpf@kernel.org Jan. 30, 2021, 1:50 a.m. UTC | #1
Hello:

This patch was applied to netdev/net-next.git (refs/heads/master):

On Wed, 27 Jan 2021 04:33:02 -0800 you wrote:
> From: Menglong Dong <dong.menglong@zte.com.cn>

> 

> It's better make 'pkt_sk()' inline here, as non-inline function

> shouldn't occur in headers. Besides, this function is simple

> enough to be inline.

> 

> Signed-off-by: Menglong Dong <dong.menglong@zte.com.cn>

> 

> [...]


Here is the summary with links:
  - [net-next] net: packet: make pkt_sk() inline
    https://git.kernel.org/netdev/net-next/c/8c22475148a8

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
diff mbox series

Patch

diff --git a/net/packet/internal.h b/net/packet/internal.h
index baafc3f3fa25..5f61e59ebbff 100644
--- a/net/packet/internal.h
+++ b/net/packet/internal.h
@@ -139,7 +139,7 @@  struct packet_sock {
 	atomic_t		tp_drops ____cacheline_aligned_in_smp;
 };
 
-static struct packet_sock *pkt_sk(struct sock *sk)
+static inline struct packet_sock *pkt_sk(struct sock *sk)
 {
 	return (struct packet_sock *)sk;
 }