allow coexistance of N build and AC build.
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / net / core / kmap_skb.h
blob283c2b993fb81ad724e880604132b75df767f8ec
1 #include <linux/highmem.h>
3 static inline void *kmap_skb_frag(const skb_frag_t *frag)
5 #ifdef CONFIG_HIGHMEM
6 BUG_ON(in_irq());
8 local_bh_disable();
9 #endif
10 return kmap_atomic(frag->page, KM_SKB_DATA_SOFTIRQ);
13 static inline void kunmap_skb_frag(void *vaddr)
15 kunmap_atomic(vaddr, KM_SKB_DATA_SOFTIRQ);
16 #ifdef CONFIG_HIGHMEM
17 local_bh_enable();
18 #endif