Searched refs:updates (Results 1 – 25 of 183) sorted by relevance
12345678
| /linux/drivers/net/ |
| H A D | LICENSE.SRC | 14 on an "as-is" basis. No further updates to this software should be 15 expected. Although updates may occur, no commitment exists.
|
| /linux/Documentation/driver-api/firmware/ |
| H A D | fw_search_path.rst | 9 * /lib/firmware/updates/UTS_RELEASE/ 10 * /lib/firmware/updates/
|
| /linux/Documentation/RCU/ |
| H A D | checklist.rst | 32 for lockless updates. This does result in the mildly 34 rcu_read_unlock() are used to protect updates, however, this 45 c. restricting updates to a single task. 94 be running while updates are in progress. There are a number 113 c. Make updates appear atomic to readers. For example, 114 pointer updates to properly aligned fields will 125 d. Carefully order the updates and the reads so that readers 228 Restructure your code so that it batches the updates, allowing 293 primitive will correspondingly delay updates. In contrast, 304 limit on this number, stalling updates as needed to allow [all …]
|
| /linux/scripts/atomic/kerneldoc/ |
| H A D | dec | 6 * Atomically updates @v to (@v - 1) with ${desc_order} ordering.
|
| H A D | inc | 6 * Atomically updates @v to (@v + 1) with ${desc_order} ordering.
|
| H A D | and | 7 * Atomically updates @v to (@v & @i) with ${desc_order} ordering.
|
| H A D | xor | 7 * Atomically updates @v to (@v ^ @i) with ${desc_order} ordering.
|
| H A D | or | 7 * Atomically updates @v to (@v | @i) with ${desc_order} ordering.
|
| H A D | sub | 7 * Atomically updates @v to (@v - @i) with ${desc_order} ordering.
|
| H A D | andnot | 7 * Atomically updates @v to (@v & ~@i) with ${desc_order} ordering.
|
| H A D | add | 7 * Atomically updates @v to (@v + @i) with ${desc_order} ordering.
|
| H A D | xchg | 7 * Atomically updates @v to @new with ${desc_order} ordering.
|
| H A D | inc_and_test | 6 * Atomically updates @v to (@v + 1) with ${desc_order} ordering.
|
| H A D | dec_and_test | 6 * Atomically updates @v to (@v - 1) with ${desc_order} ordering.
|
| H A D | dec_unless_positive | 6 * If (@v <= 0), atomically updates @v to (@v - 1) with ${desc_order} ordering.
|
| H A D | inc_not_zero | 6 * If (@v != 0), atomically updates @v to (@v + 1) with ${desc_order} ordering.
|
| H A D | add_negative | 7 * Atomically updates @v to (@v + @i) with ${desc_order} ordering.
|
| H A D | sub_and_test | 7 * Atomically updates @v to (@v - @i) with ${desc_order} ordering.
|
| H A D | inc_unless_negative | 6 * If (@v >= 0), atomically updates @v to (@v + 1) with ${desc_order} ordering.
|
| H A D | dec_if_positive | 6 * If (@v > 0), atomically updates @v to (@v - 1) with ${desc_order} ordering.
|
| H A D | cmpxchg | 8 * If (@v == @old), atomically updates @v to @new with ${desc_order} ordering.
|
| H A D | add_unless | 12 * If (@v != @u), atomically updates @v to (@v + @a) with ${desc_order} ordering.
|
| H A D | try_cmpxchg | 8 * If (@v == @old), atomically updates @v to @new with ${desc_order} ordering.
|
| /linux/tools/perf/pmu-events/ |
| H A D | metric.py | 795 updates: Dict[Tuple[str, str], Expression] = dict() 808 if (inner_pmu, inner_name) in updates: 809 inner_expression = updates[(inner_pmu, inner_name)] 813 if (outer_pmu, outer_name) in updates and updated.Equals(updates[(outer_pmu, outer_name)]): 815 updates[(outer_pmu, outer_name)] = updated 816 return updates
|
| /linux/tools/testing/selftests/net/packetdrill/ |
| H A D | tcp_ooo_rcv_mss.pkt | 22 // check that ooo packet properly updates tcpi_rcv_mss
|
12345678