aboutsummaryrefslogtreecommitdiffstats
path: root/net/packet
diff options
context:
space:
mode:
authorEric Dumazet <edumazet@google.com>2019-06-12 09:52:26 -0700
committerDavid S. Miller <davem@davemloft.net>2019-06-14 18:52:14 -0700
commit96f657e6cfc25b27d8189cb6b9eac66e1b1ff4f3 (patch)
treeaab26f9bcbf514b0f4151e353e1ec6855f6519eb /net/packet
parentnet: phy: Add more 1000BaseX support detection (diff)
downloadlinux-dev-96f657e6cfc25b27d8189cb6b9eac66e1b1ff4f3.tar.xz
linux-dev-96f657e6cfc25b27d8189cb6b9eac66e1b1ff4f3.zip
net/packet: constify __packet_get_status() argument
struct packet_sock is only read. Signed-off-by: Eric Dumazet <edumazet@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/packet')
-rw-r--r--net/packet/af_packet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/packet/af_packet.c b/net/packet/af_packet.c
index 7fa847dcea30..66fcfd5b51f8 100644
--- a/net/packet/af_packet.c
+++ b/net/packet/af_packet.c
@@ -384,7 +384,7 @@ static void __packet_set_status(struct packet_sock *po, void *frame, int status)
smp_wmb();
}
-static int __packet_get_status(struct packet_sock *po, void *frame)
+static int __packet_get_status(const struct packet_sock *po, void *frame)
{
union tpacket_uhdr h;