Searched refs:oval (Results 1 – 4 of 4) sorted by relevance
| /net/netfilter/ |
| A D | xt_statistic.c | 33 int nval, oval; in statistic_mt() local 42 oval = atomic_read(&info->master->count); in statistic_mt() 43 nval = (oval == info->u.nth.every) ? 0 : oval + 1; in statistic_mt() 44 } while (atomic_cmpxchg(&info->master->count, oval, nval) != oval); in statistic_mt()
|
| A D | nft_numgen.c | 26 u32 nval, oval; in nft_ng_inc_gen() local 29 oval = atomic_read(priv->counter); in nft_ng_inc_gen() 30 nval = (oval + 1 < priv->modulus) ? oval + 1 : 0; in nft_ng_inc_gen() 31 } while (atomic_cmpxchg(priv->counter, oval, nval) != oval); in nft_ng_inc_gen()
|
| /net/ipv4/ |
| A D | tcp_output.c | 1205 unsigned long flags, nval, oval; in tcp_wfree() local 1224 oval = smp_load_acquire(&sk->sk_tsq_flags); in tcp_wfree() 1226 if (!(oval & TSQF_THROTTLED) || (oval & TSQF_QUEUED)) in tcp_wfree() 1229 nval = (oval & ~TSQF_THROTTLED) | TSQF_QUEUED; in tcp_wfree() 1230 } while (!try_cmpxchg(&sk->sk_tsq_flags, &oval, nval)); in tcp_wfree()
|
| /net/mpls/ |
| A D | af_mpls.c | 1352 int oval = *(int *)ctl->data; in mpls_conf_proc() local 1362 val != oval) { in mpls_conf_proc()
|
Completed in 18 milliseconds