Home
last modified time | relevance | path

Searched refs:f1 (Results 1 – 5 of 5) sorted by relevance

/include/linux/
Dindirect_call_wrapper.h17 #define INDIRECT_CALL_1(f, f1, ...) \ argument
19 likely(f == f1) ? f1(__VA_ARGS__) : f(__VA_ARGS__); \
21 #define INDIRECT_CALL_2(f, f2, f1, ...) \ argument
24 INDIRECT_CALL_1(f, f1, __VA_ARGS__); \
26 #define INDIRECT_CALL_3(f, f3, f2, f1, ...) \ argument
29 INDIRECT_CALL_2(f, f2, f1, __VA_ARGS__); \
31 #define INDIRECT_CALL_4(f, f4, f3, f2, f1, ...) \ argument
34 INDIRECT_CALL_3(f, f3, f2, f1, __VA_ARGS__); \
42 #define INDIRECT_CALL_1(f, f1, ...) f(__VA_ARGS__) argument
43 #define INDIRECT_CALL_2(f, f2, f1, ...) f(__VA_ARGS__) argument
[all …]
Ddma-fence.h454 static inline bool __dma_fence_is_later(u64 f1, u64 f2, in __dma_fence_is_later() argument
462 return f1 > f2; in __dma_fence_is_later()
464 return (int)(lower_32_bits(f1) - lower_32_bits(f2)) > 0; in __dma_fence_is_later()
475 static inline bool dma_fence_is_later(struct dma_fence *f1, in dma_fence_is_later() argument
478 if (WARN_ON(f1->context != f2->context)) in dma_fence_is_later()
481 return __dma_fence_is_later(f1->seqno, f2->seqno, f1->ops); in dma_fence_is_later()
493 static inline struct dma_fence *dma_fence_later(struct dma_fence *f1, in dma_fence_later() argument
496 if (WARN_ON(f1->context != f2->context)) in dma_fence_later()
504 if (dma_fence_is_later(f1, f2)) in dma_fence_later()
505 return dma_fence_is_signaled(f1) ? NULL : f1; in dma_fence_later()
Dnetdevice.h5091 static inline netdev_features_t netdev_intersect_features(netdev_features_t f1, in netdev_intersect_features() argument
5094 if ((f1 ^ f2) & NETIF_F_HW_CSUM) { in netdev_intersect_features()
5095 if (f1 & NETIF_F_HW_CSUM) in netdev_intersect_features()
5096 f1 |= (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM); in netdev_intersect_features()
5101 return f1 & f2; in netdev_intersect_features()
/include/net/
Dgro.h18 #define indirect_call_gro_receive_inet(cb, f2, f1, head, skb) \ argument
22 INDIRECT_CALL_INET(cb, f2, f1, head, skb); \
Dinet_common.h68 #define indirect_call_gro_receive(f2, f1, cb, head, skb) \ argument
72 INDIRECT_CALL_2(cb, f2, f1, head, skb); \