Searched refs:fold (Results 1 - 11 of 11) sorted by relevance

/linux-master/net/sched/
H A Dcls_basic.c180 struct basic_filter *fold = (struct basic_filter *) *arg; local
191 if (fold != NULL) {
192 if (handle && fold->handle != handle)
208 } else if (!fold) {
224 if (!fold)
231 if (fold) {
233 list_replace_rcu(&fold->link, &fnew->link);
234 tcf_unbind_filter(tp, &fold->res);
235 tcf_exts_get_net(&fold->exts);
236 tcf_queue_work(&fold
[all...]
H A Dcls_route.c483 struct route4_filter *fold, *f1, *pfp, *f = NULL; local
505 fold = *arg;
506 if (fold && fold->handle != handle)
518 if (fold) {
519 f->id = fold->id;
520 f->iif = fold->iif;
521 f->handle = fold->handle;
523 f->tp = fold->tp;
524 f->bkt = fold
[all...]
H A Dcls_flow.c396 struct flow_filter *fold, *fnew; local
452 fold = *arg;
453 if (fold) {
455 if (fold->handle != handle && handle)
458 /* Copy fold into fnew */
459 fnew->tp = fold->tp;
460 fnew->handle = fold->handle;
461 fnew->nkeys = fold->nkeys;
462 fnew->keymask = fold->keymask;
463 fnew->mode = fold
[all...]
H A Dcls_flower.c2153 struct cls_fl_filter *fold,
2171 if (fold) {
2186 } else if (fold && fold->mask != fnew->mask) {
2207 struct cls_fl_filter *fold,
2221 return fold && err == -EEXIST ? 0 : err;
2236 struct cls_fl_filter *fold = *arg; local
2266 if (fold && handle && fold->handle != handle) {
2289 if (!fold) {
2151 fl_check_assign_mask(struct cls_fl_head *head, struct cls_fl_filter *fnew, struct cls_fl_filter *fold, struct fl_flow_mask *mask) argument
2206 fl_ht_insert_unique(struct cls_fl_filter *fnew, struct cls_fl_filter *fold, bool *in_ht) argument
[all...]
/linux-master/Documentation/trace/
H A Dfunction-graph-fold.vim5 " use the usual vim fold commands, such as "za", to open and close nested
6 " functions. While closed, a fold will show the total time taken for a call,
/linux-master/include/linux/
H A Detherdevice.h349 u32 fold = ((*(const u32 *)addr1) ^ (*(const u32 *)addr2)) | local
352 return fold == 0;
378 u64 fold = (*(const u64 *)addr1) ^ (*(const u64 *)addr2); local
381 return (fold >> 16) == 0;
383 return (fold << 16) == 0;
567 unsigned long fold; local
577 fold = *(unsigned long *)a ^ *(unsigned long *)b;
578 fold |= *(unsigned long *)(a + 6) ^ *(unsigned long *)(b + 6);
579 return fold;
/linux-master/arch/alpha/lib/
H A Dcsum_ipv6_magic.S104 extwl $0,2,$1 # e0 : fold 18-bit value
109 extwl $0,2,$1 # e0 : fold 17-bit value
/linux-master/tools/testing/selftests/bpf/
H A Dtest_xsk.sh111 VETH0_POSTFIX=$(cat ${URANDOM} | tr -dc '0-9' | fold -w 256 | head -n 1 | head --bytes 4)
113 VETH1_POSTFIX=$(cat ${URANDOM} | tr -dc '0-9' | fold -w 256 | head -n 1 | head --bytes 4)
/linux-master/drivers/net/ethernet/freescale/enetc/
H A Denetc_pf.c82 u64 fold = __swab64(ether_addr_to_u64(addr)) >> 16; local
91 res |= (hweight64(fold & (mask << i)) & 0x1) << i;
/linux-master/net/wireless/
H A Dscan.c1652 u8 fold = 0; local
1667 fold |= ie[2 + i];
1669 if (fold) {
/linux-master/kernel/bpf/
H A Dverifier.c7885 struct bpf_func_state *fold, *fcur; local
7890 fold = old->frame[fr];
7895 &fold->regs[i],
7899 for (i = 0; i < fold->allocated_stack / BPF_REG_SIZE; i++) {
7900 if (!is_spilled_reg(&fold->stack[i]) ||
7905 &fold->stack[i].spilled_ptr,
8248 * Therefore we fold these flags depending on the arg_type before comparison.
17061 struct bpf_func_state *fold, *fcur; local
17067 fold = old->frame[fr];
17070 if (memcmp(&fold
[all...]

Completed in 240 milliseconds