Lines Matching refs:local_t
11 Note that local_t based operations are not recommended for general kernel use.
13 Most uses of local_t in the kernel have been replaced by this_cpu operations.
14 this_cpu operations combine the relocation with the local_t like semantics in
32 CPU writes to the local_t data. This is done by using per cpu data and making
34 permitted to read local_t data from any CPU : it will then appear to be written
46 The local_t type is defined as an opaque signed long by embedding an
50 typedef struct { atomic_long_t a; } local_t;
58 to update its local_t variables.
81 static DEFINE_PER_CPU(local_t, counters) = LOCAL_INIT(0);
115 the local_t variable as a counter of bytes written in a buffer : there should
133 static DEFINE_PER_CPU(local_t, counters) = LOCAL_INIT(0);