aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--net/packet/af_packet.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/net/packet/af_packet.c b/net/packet/af_packet.c
index 17eafe5b48c6..9292ec93eb52 100644
--- a/net/packet/af_packet.c
+++ b/net/packet/af_packet.c
@@ -223,7 +223,7 @@ struct packet_skb_cb {
223 223
224#define PACKET_SKB_CB(__skb) ((struct packet_skb_cb *)((__skb)->cb)) 224#define PACKET_SKB_CB(__skb) ((struct packet_skb_cb *)((__skb)->cb))
225 225
226static inline struct page *pgv_to_page(void *addr) 226static inline __pure struct page *pgv_to_page(void *addr)
227{ 227{
228 if (is_vmalloc_addr(addr)) 228 if (is_vmalloc_addr(addr))
229 return vmalloc_to_page(addr); 229 return vmalloc_to_page(addr);
@@ -806,6 +806,7 @@ static int tpacket_rcv(struct sk_buff *skb, struct net_device *dev,
806 806
807 __packet_set_status(po, h.raw, status); 807 __packet_set_status(po, h.raw, status);
808 smp_mb(); 808 smp_mb();
809#if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE == 1
809 { 810 {
810 u8 *start, *end; 811 u8 *start, *end;
811 812
@@ -813,6 +814,7 @@ static int tpacket_rcv(struct sk_buff *skb, struct net_device *dev,
813 for (start = h.raw; start < end; start += PAGE_SIZE) 814 for (start = h.raw; start < end; start += PAGE_SIZE)
814 flush_dcache_page(pgv_to_page(start)); 815 flush_dcache_page(pgv_to_page(start));
815 } 816 }
817#endif
816 818
817 sk->sk_data_ready(sk, 0); 819 sk->sk_data_ready(sk, 0);
818 820