/Linux-v6.6/include/linux/ |
D | refcount.h | 150 static inline __must_check bool __refcount_add_not_zero(int i, refcount_t *r, int *oldp) in __refcount_add_not_zero() argument 159 if (oldp) in __refcount_add_not_zero() 160 *oldp = old; in __refcount_add_not_zero() 191 static inline void __refcount_add(int i, refcount_t *r, int *oldp) in __refcount_add() argument 195 if (oldp) in __refcount_add() 196 *oldp = old; in __refcount_add() 225 static inline __must_check bool __refcount_inc_not_zero(refcount_t *r, int *oldp) in __refcount_inc_not_zero() argument 227 return __refcount_add_not_zero(1, r, oldp); in __refcount_inc_not_zero() 248 static inline void __refcount_inc(refcount_t *r, int *oldp) in __refcount_inc() argument 250 __refcount_add(1, r, oldp); in __refcount_inc() [all …]
|
D | nodemask.h | 356 const nodemask_t *oldp, const nodemask_t *newp, int nbits) in __node_remap() argument 358 return bitmap_bitremap(oldbit, oldp->bits, newp->bits, nbits); in __node_remap() 364 const nodemask_t *oldp, const nodemask_t *newp, int nbits) in __nodes_remap() argument 366 bitmap_remap(dstp->bits, srcp->bits, oldp->bits, newp->bits, nbits); in __nodes_remap()
|
/Linux-v6.6/include/linux/atomic/ |
D | atomic-instrumented.h | 4831 #define try_cmpxchg(ptr, oldp, ...) \ argument 4834 typeof(oldp) __ai_oldp = (oldp); \ 4841 #define try_cmpxchg_acquire(ptr, oldp, ...) \ argument 4844 typeof(oldp) __ai_oldp = (oldp); \ 4850 #define try_cmpxchg_release(ptr, oldp, ...) \ argument 4853 typeof(oldp) __ai_oldp = (oldp); \ 4860 #define try_cmpxchg_relaxed(ptr, oldp, ...) \ argument 4863 typeof(oldp) __ai_oldp = (oldp); \ 4869 #define try_cmpxchg64(ptr, oldp, ...) \ argument 4872 typeof(oldp) __ai_oldp = (oldp); \ [all …]
|
/Linux-v6.6/arch/x86/include/asm/ |
D | cmpxchg_64.h | 76 static __always_inline bool arch_try_cmpxchg128(volatile u128 *ptr, u128 *oldp, u128 new) in arch_try_cmpxchg128() argument 78 return __arch_try_cmpxchg128(ptr, oldp, new, LOCK_PREFIX); in arch_try_cmpxchg128() 82 static __always_inline bool arch_try_cmpxchg128_local(volatile u128 *ptr, u128 *oldp, u128 new) in arch_try_cmpxchg128_local() argument 84 return __arch_try_cmpxchg128(ptr, oldp, new,); in arch_try_cmpxchg128_local()
|
/Linux-v6.6/arch/xtensa/mm/ |
D | init.c | 172 char *oldp; in parse_memmap_one() local 178 oldp = p; in parse_memmap_one() 180 if (p == oldp) in parse_memmap_one()
|
/Linux-v6.6/scripts/atomic/ |
D | gen-atomic-instrumented.sh | 104 typeof(oldp) __ai_oldp = (oldp); \\
|
/Linux-v6.6/security/selinux/ss/ |
D | mls.c | 447 int mls_convert_context(struct policydb *oldp, in mls_convert_context() argument 458 if (!oldp->mls_enabled || !newp->mls_enabled) in mls_convert_context() 462 char *name = sym_name(oldp, SYM_LEVELS, in mls_convert_context() 476 sym_name(oldp, SYM_CATS, i)); in mls_convert_context()
|
D | services.h | 33 struct policydb *oldp; member
|
D | mls.h | 50 int mls_convert_context(struct policydb *oldp,
|
D | services.c | 2037 sym_name(args->oldp, SYM_USERS, oldc->user - 1)); in services_convert_context() 2044 sym_name(args->oldp, SYM_ROLES, oldc->role - 1)); in services_convert_context() 2051 sym_name(args->oldp, SYM_TYPES, oldc->type - 1)); in services_convert_context() 2057 if (args->oldp->mls_enabled && args->newp->mls_enabled) { in services_convert_context() 2058 rc = mls_convert_context(args->oldp, args->newp, oldc, newc); in services_convert_context() 2061 } else if (!args->oldp->mls_enabled && args->newp->mls_enabled) { in services_convert_context() 2084 rc = convert_context_handle_invalid_context(args->oldp, oldc); in services_convert_context() 2092 rc = context_struct_to_string(args->oldp, oldc, &s, &len); in services_convert_context() 2302 convert_data->args.oldp = &oldpolicy->policydb; in security_load_policy()
|
/Linux-v6.6/arch/mips/kernel/ |
D | setup.c | 383 char *oldp; in early_parse_memmap() local 394 oldp = p; in early_parse_memmap() 396 if (p == oldp) in early_parse_memmap()
|
/Linux-v6.6/arch/x86/boot/compressed/ |
D | kaslr.c | 130 char *oldp; in parse_memmap() local 139 oldp = p; in parse_memmap() 141 if (p == oldp) in parse_memmap()
|
/Linux-v6.6/Documentation/ |
D | atomic_t.txt | 280 bool atomic_try_cmpxchg(atomic_t *ptr, int *oldp, int new); 285 bool atomic_try_cmpxchg(atomic_t *ptr, int *oldp, int new) 287 int ret, old = *oldp; 290 *oldp = ret;
|
/Linux-v6.6/arch/arm64/kernel/ |
D | proton-pack.c | 39 static void update_mitigation_state(enum mitigation_state *oldp, in update_mitigation_state() argument 45 state = READ_ONCE(*oldp); in update_mitigation_state() 52 } while (cmpxchg_relaxed(oldp, state, new) != state); in update_mitigation_state()
|
/Linux-v6.6/arch/x86/kernel/ |
D | e820.c | 920 char *oldp; in parse_memmap_one() local 932 oldp = p; in parse_memmap_one() 934 if (p == oldp) in parse_memmap_one()
|
/Linux-v6.6/drivers/net/arcnet/ |
D | arcnet.c | 1155 *oldp = arc_proto_map[lp->default_proto[rxdata.pkt.hard.source]], in arcnet_rx() local 1158 if (oldp != newp) { in arcnet_rx() 1162 newp->suffix, oldp->suffix); in arcnet_rx()
|