Home
last modified time | relevance | path

Searched refs:owner (Results 1 - 25 of 8587) sorted by relevance

12345678910>>...344

/kernel/linux/linux-6.6/fs/btrfs/
H A Dlocking.h91 * @owner: The struct where the lockdep map is defined
99 #define btrfs_might_wait_for_event(owner, lock) \
101 rwsem_acquire(&owner->lock##_map, 0, 0, _THIS_IP_); \
102 rwsem_release(&owner->lock##_map, _THIS_IP_); \
108 * @owner: The struct where the lockdep map is defined
116 #define btrfs_lockdep_acquire(owner, lock) \
117 rwsem_acquire_read(&owner->lock##_map, 0, 0, _THIS_IP_)
123 #define btrfs_lockdep_release(owner, lock) \
124 rwsem_release(&owner->lock##_map, _THIS_IP_)
130 #define btrfs_might_wait_for_state(owner,
[all...]
/kernel/linux/linux-6.6/kernel/locking/
H A Drtmutex.c66 * lock->owner state tracking:
68 * lock->owner holds the task_struct pointer of the owner. Bit 0
71 * owner bit0
79 * possible when bit 0 of lock->owner is 0.
83 * we need to set the bit0 before looking at the lock, and the owner may be
88 * To prevent a cmpxchg of the owner releasing the lock, we need to
93 rt_mutex_owner_encode(struct rt_mutex_base *lock, struct task_struct *owner) in rt_mutex_owner_encode() argument
95 unsigned long val = (unsigned long)owner; in rt_mutex_owner_encode()
104 rt_mutex_set_owner(struct rt_mutex_base *lock, struct task_struct *owner) in rt_mutex_set_owner() argument
128 unsigned long owner, *p = (unsigned long *) &lock->owner; fixup_rt_mutex_waiters() local
235 unsigned long owner, *p = (unsigned long *) &lock->owner; mark_rt_mutex_waiters() local
260 struct task_struct *owner = rt_mutex_owner(lock); global() variable
1186 struct task_struct *owner = rt_mutex_owner(lock); task_blocks_on_rt_mutex() local
1457 rtmutex_spin_on_owner(struct rt_mutex_base *lock, struct rt_mutex_waiter *waiter, struct task_struct *owner) rtmutex_spin_on_owner() argument
1494 rtmutex_spin_on_owner(struct rt_mutex_base *lock, struct rt_mutex_waiter *waiter, struct task_struct *owner) rtmutex_spin_on_owner() argument
1519 struct task_struct *owner = rt_mutex_owner(lock); remove_waiter() local
1586 struct task_struct *owner; rt_mutex_slowlock_block() local
1777 struct task_struct *owner; rtlock_slowlock_locked() local
[all...]
H A Dmutex.c48 atomic_long_set(&lock->owner, 0); in __mutex_init()
60 * @owner: contains: 'struct task_struct *' to the current lock owner,
81 return (struct task_struct *)(atomic_long_read(&lock->owner) & ~MUTEX_FLAGS); in __mutex_owner()
84 static inline struct task_struct *__owner_task(unsigned long owner) in __owner_task() argument
86 return (struct task_struct *)(owner & ~MUTEX_FLAGS); in __owner_task()
95 static inline unsigned long __owner_flags(unsigned long owner) in __owner_flags() argument
97 return owner & MUTEX_FLAGS; in __owner_flags()
105 unsigned long owner, curr = (unsigned long)current; in __mutex_trylock_common() local
107 owner in __mutex_trylock_common()
233 unsigned long owner = atomic_long_read(&lock->owner); __mutex_handoff() local
352 mutex_spin_on_owner(struct mutex *lock, struct task_struct *owner, struct ww_acquire_ctx *ww_ctx, struct mutex_waiter *waiter) mutex_spin_on_owner() argument
394 struct task_struct *owner; mutex_can_spin_on_owner() local
465 struct task_struct *owner; mutex_optimistic_spin() local
905 unsigned long owner; __mutex_unlock_slowpath() local
[all...]
H A Dspinlock_debug.c28 lock->owner = SPINLOCK_OWNER_INIT; in __raw_spin_lock_init()
47 lock->owner = SPINLOCK_OWNER_INIT; in __rwlock_init()
56 struct task_struct *owner = READ_ONCE(lock->owner); in spin_dump() local
58 if (owner == SPINLOCK_OWNER_INIT) in spin_dump()
59 owner = NULL; in spin_dump()
63 printk(KERN_EMERG " lock: %pS, .magic: %08x, .owner: %s/%d, " in spin_dump()
66 owner ? owner->comm : "<none>", in spin_dump()
67 owner in spin_dump()
[all...]
H A Drwsem.c36 * The least significant 2 bits of the owner value has the following
45 * into the owner field. It is cleared after an unlock.
48 * pointer into the owner field with the RWSEM_READER_OWNED bit set.
49 * On unlock, the owner field will largely be left untouched. So
50 * for a free or reader-owned rwsem, the owner value may contain
70 WARN_ONCE(c, "DEBUG_RWSEMS_WARN_ON(%s): count = 0x%lx, magic = 0x%lx, owner = 0x%lx, curr 0x%lx, list %sempty\n",\
73 atomic_long_read(&(sem)->owner), (long)current, \
131 * All writes to owner are protected by WRITE_ONCE() to make sure that
133 * the owner value concurrently without lock. Read from owner, howeve
170 __rwsem_set_reader_owned(struct rw_semaphore *sem, struct task_struct *owner) __rwsem_set_reader_owned() argument
230 unsigned long owner = atomic_long_read(&sem->owner); rwsem_set_nonspinnable() local
284 unsigned long owner = atomic_long_read(&sem->owner); rwsem_owner_flags() local
455 struct task_struct *owner; rwsem_mark_wake() local
707 struct task_struct *owner; rwsem_can_spin_on_owner() local
735 rwsem_owner_state(struct task_struct *owner, unsigned long flags) rwsem_owner_state() argument
749 struct task_struct *new, *owner; rwsem_spin_on_owner() local
1500 __rwsem_set_reader_owned(struct rw_semaphore *sem, struct task_struct *owner) __rwsem_set_reader_owned() argument
[all...]
/kernel/linux/linux-5.10/arch/s390/lib/
H A Dspinlock.c75 int owner; in arch_load_niai4() local
80 : "=d" (owner) : "Q" (*lock) : "memory"); in arch_load_niai4()
81 return owner; in arch_load_niai4()
120 int lockval, ix, node_id, tail_id, old, new, owner, count; in arch_spin_lock_queued() local
161 owner = arch_spin_yield_target(old, node); in arch_spin_lock_queued()
162 if (owner && arch_vcpu_is_preempted(owner - 1)) in arch_spin_lock_queued()
163 smp_yield_cpu(owner - 1); in arch_spin_lock_queued()
173 owner = arch_spin_yield_target(old, node); in arch_spin_lock_queued()
174 if (owner in arch_spin_lock_queued()
213 int lockval, old, new, owner, count; arch_spin_lock_classic() local
255 int owner, count; arch_spin_trylock_retry() local
[all...]
/kernel/linux/linux-6.6/arch/s390/lib/
H A Dspinlock.c75 int owner; in arch_load_niai4() local
80 : "=d" (owner) : "Q" (*lock) : "memory"); in arch_load_niai4()
81 return owner; in arch_load_niai4()
120 int lockval, ix, node_id, tail_id, old, new, owner, count; in arch_spin_lock_queued() local
161 owner = arch_spin_yield_target(old, node); in arch_spin_lock_queued()
162 if (owner && arch_vcpu_is_preempted(owner - 1)) in arch_spin_lock_queued()
163 smp_yield_cpu(owner - 1); in arch_spin_lock_queued()
173 owner = arch_spin_yield_target(old, node); in arch_spin_lock_queued()
174 if (owner in arch_spin_lock_queued()
213 int lockval, old, new, owner, count; arch_spin_lock_classic() local
255 int owner, count; arch_spin_trylock_retry() local
[all...]
/kernel/linux/linux-5.10/kernel/locking/
H A Dmutex.c42 atomic_long_set(&lock->owner, 0); in __mutex_init()
54 * @owner: contains: 'struct task_struct *' to the current lock owner,
75 return (struct task_struct *)(atomic_long_read(&lock->owner) & ~MUTEX_FLAGS); in __mutex_owner()
78 static inline struct task_struct *__owner_task(unsigned long owner) in __owner_task() argument
80 return (struct task_struct *)(owner & ~MUTEX_FLAGS); in __owner_task()
99 static inline unsigned long __owner_flags(unsigned long owner) in __owner_flags() argument
101 return owner & MUTEX_FLAGS; in __owner_flags()
109 unsigned long owner, curr = (unsigned long)current; in __mutex_trylock_or_owner() local
111 owner in __mutex_trylock_or_owner()
236 unsigned long owner = atomic_long_read(&lock->owner); __mutex_handoff() local
403 struct task_struct *owner = __mutex_owner(lock); __ww_mutex_wound() local
560 mutex_spin_on_owner(struct mutex *lock, struct task_struct *owner, struct ww_acquire_ctx *ww_ctx, struct mutex_waiter *waiter) mutex_spin_on_owner() argument
601 struct task_struct *owner; mutex_can_spin_on_owner() local
672 struct task_struct *owner; mutex_optimistic_spin() local
1232 unsigned long owner; __mutex_unlock_slowpath() local
[all...]
H A Dspinlock_debug.c28 lock->owner = SPINLOCK_OWNER_INIT; in __raw_spin_lock_init()
46 lock->owner = SPINLOCK_OWNER_INIT; in __rwlock_init()
54 struct task_struct *owner = READ_ONCE(lock->owner); in spin_dump() local
56 if (owner == SPINLOCK_OWNER_INIT) in spin_dump()
57 owner = NULL; in spin_dump()
61 printk(KERN_EMERG " lock: %pS, .magic: %08x, .owner: %s/%d, " in spin_dump()
64 owner ? owner->comm : "<none>", in spin_dump()
65 owner in spin_dump()
[all...]
H A Drwsem.c34 * The least significant 3 bits of the owner value has the following
49 * into the owner field. It is cleared after an unlock.
52 * pointer into the owner field with the RWSEM_READER_OWNED bit set.
53 * On unlock, the owner field will largely be left untouched. So
54 * for a free or reader-owned rwsem, the owner value may contain
107 WARN_ONCE(c, "DEBUG_RWSEMS_WARN_ON(%s): count = 0x%lx, magic = 0x%lx, owner = 0x%lx, curr 0x%lx, list %sempty\n",\
110 atomic_long_read(&(sem)->owner), (long)current, \
168 * All writes to owner are protected by WRITE_ONCE() to make sure that
170 * the owner value concurrently without lock. Read from owner, howeve
202 __rwsem_set_reader_owned(struct rw_semaphore *sem, struct task_struct *owner) __rwsem_set_reader_owned() argument
262 unsigned long owner = atomic_long_read(&sem->owner); rwsem_set_nonspinnable() local
297 unsigned long owner = atomic_long_read(&sem->owner); rwsem_owner_flags() local
444 struct task_struct *owner; rwsem_mark_wake() local
646 owner_on_cpu(struct task_struct *owner) owner_on_cpu() argument
658 struct task_struct *owner; rwsem_can_spin_on_owner() local
703 rwsem_owner_state(struct task_struct *owner, unsigned long flags, unsigned long nonspinnable) rwsem_owner_state() argument
717 struct task_struct *new, *owner; rwsem_spin_on_owner() local
947 unsigned long owner = atomic_long_read(&sem->owner); rwsem_reader_phase_trylock() local
[all...]
H A Drtmutex.c26 * lock->owner state tracking:
28 * lock->owner holds the task_struct pointer of the owner. Bit 0
31 * owner bit0
39 * possible when bit 0 of lock->owner is 0.
43 * we need to set the bit0 before looking at the lock, and the owner may be
48 * To prevent a cmpxchg of the owner releasing the lock, we need to
53 rt_mutex_set_owner(struct rt_mutex *lock, struct task_struct *owner) in rt_mutex_set_owner() argument
55 unsigned long val = (unsigned long)owner; in rt_mutex_set_owner()
60 WRITE_ONCE(lock->owner, (struc in rt_mutex_set_owner()
71 unsigned long owner, *p = (unsigned long *) &lock->owner; fixup_rt_mutex_waiters() local
154 unsigned long owner, *p = (unsigned long *) &lock->owner; mark_rt_mutex_waiters() local
172 struct task_struct *owner = rt_mutex_owner(lock); global() variable
931 struct task_struct *owner = rt_mutex_owner(lock); task_blocks_on_rt_mutex() local
1069 struct task_struct *owner = rt_mutex_owner(lock); remove_waiter() local
[all...]
/kernel/linux/linux-6.6/rust/kernel/sync/
H A Dlocked_by.rs76 owner: *const U,
90 /// It stores a raw pointer to the owner that is never dereferenced. It is only used to ensure
91 /// that the right owner is being used to access the protected data. If the owner is freed, the
92 /// data becomes inaccessible; if another instance of the owner is allocated *on the same
95 pub fn new<B: Backend>(owner: &Lock<U, B>, data: T) -> Self { in new()
101 owner: owner.data.get(), in new()
109 /// reference) that the owner is locked.
116 /// Panics if `owner` i
[all...]
/kernel/linux/linux-5.10/drivers/media/mc/
H A Dmc-dev-allocator.c31 struct module *owner; member
63 struct module *owner) in __media_device_get()
73 /* get module reference for the media_device owner */ in __media_device_get()
74 if (owner != mdi->owner && !try_module_get(mdi->owner)) in __media_device_get()
76 "%s: module %s get owner reference error\n", in __media_device_get()
79 dev_dbg(dev, "%s: module %s got owner reference\n", in __media_device_get()
88 mdi->owner = owner; in __media_device_get()
61 __media_device_get(struct device *dev, const char *module_name, struct module *owner) __media_device_get() argument
97 media_device_usb_allocate(struct usb_device *udev, const char *module_name, struct module *owner) media_device_usb_allocate() argument
119 media_device_delete(struct media_device *mdev, const char *module_name, struct module *owner) media_device_delete() argument
[all...]
/kernel/linux/linux-6.6/drivers/media/mc/
H A Dmc-dev-allocator.c31 struct module *owner; member
63 struct module *owner) in __media_device_get()
73 /* get module reference for the media_device owner */ in __media_device_get()
74 if (owner != mdi->owner && !try_module_get(mdi->owner)) in __media_device_get()
76 "%s: module %s get owner reference error\n", in __media_device_get()
79 dev_dbg(dev, "%s: module %s got owner reference\n", in __media_device_get()
88 mdi->owner = owner; in __media_device_get()
61 __media_device_get(struct device *dev, const char *module_name, struct module *owner) __media_device_get() argument
97 media_device_usb_allocate(struct usb_device *udev, const char *module_name, struct module *owner) media_device_usb_allocate() argument
119 media_device_delete(struct media_device *mdev, const char *module_name, struct module *owner) media_device_delete() argument
[all...]
/kernel/linux/linux-6.6/drivers/xen/
H A Dpci.c271 struct xen_device_domain_owner *owner; in find_device() local
273 list_for_each_entry(owner, &dev_domain_list, list) { in find_device()
274 if (owner->dev == dev) in find_device()
275 return owner; in find_device()
282 struct xen_device_domain_owner *owner; in xen_find_device_domain_owner() local
286 owner = find_device(dev); in xen_find_device_domain_owner()
287 if (owner) in xen_find_device_domain_owner()
288 domain = owner->domain; in xen_find_device_domain_owner()
296 struct xen_device_domain_owner *owner; in xen_register_device_domain_owner() local
298 owner in xen_register_device_domain_owner()
318 struct xen_device_domain_owner *owner; xen_unregister_device_domain_owner() local
[all...]
/kernel/linux/linux-5.10/kernel/bpf/
H A Dbpf_local_storage.c24 static int mem_charge(struct bpf_local_storage_map *smap, void *owner, u32 size) in mem_charge() argument
31 return map->ops->map_local_storage_charge(smap, owner, size); in mem_charge()
34 static void mem_uncharge(struct bpf_local_storage_map *smap, void *owner, in mem_uncharge() argument
40 map->ops->map_local_storage_uncharge(smap, owner, size); in mem_uncharge()
44 owner_storage(struct bpf_local_storage_map *smap, void *owner) in owner_storage() argument
48 return map->ops->map_owner_storage_ptr(owner); in owner_storage()
72 bpf_selem_alloc(struct bpf_local_storage_map *smap, void *owner, in bpf_selem_alloc() argument
77 if (charge_mem && mem_charge(smap, owner, smap->elem_size)) in bpf_selem_alloc()
88 mem_uncharge(smap, owner, smap->elem_size); in bpf_selem_alloc()
103 void *owner; in bpf_selem_unlink_storage_nolock() local
265 bpf_local_storage_alloc(void *owner, struct bpf_local_storage_map *smap, struct bpf_local_storage_elem *first_selem) bpf_local_storage_alloc() argument
332 bpf_local_storage_update(void *owner, struct bpf_local_storage_map *smap, void *value, u64 map_flags) bpf_local_storage_update() argument
[all...]
/kernel/linux/linux-6.6/kernel/bpf/
H A Dbpf_local_storage.c27 static int mem_charge(struct bpf_local_storage_map *smap, void *owner, u32 size) in mem_charge() argument
34 return map->ops->map_local_storage_charge(smap, owner, size); in mem_charge()
37 static void mem_uncharge(struct bpf_local_storage_map *smap, void *owner, in mem_uncharge() argument
43 map->ops->map_local_storage_uncharge(smap, owner, size); in mem_uncharge()
47 owner_storage(struct bpf_local_storage_map *smap, void *owner) in owner_storage() argument
51 return map->ops->map_owner_storage_ptr(owner); in owner_storage()
75 bpf_selem_alloc(struct bpf_local_storage_map *smap, void *owner, in bpf_selem_alloc() argument
80 if (charge_mem && mem_charge(smap, owner, smap->elem_size)) in bpf_selem_alloc()
109 mem_uncharge(smap, owner, smap->elem_size); in bpf_selem_alloc()
259 void *owner; in bpf_selem_unlink_storage_nolock() local
474 bpf_local_storage_alloc(void *owner, struct bpf_local_storage_map *smap, struct bpf_local_storage_elem *first_selem, gfp_t gfp_flags) bpf_local_storage_alloc() argument
552 bpf_local_storage_update(void *owner, struct bpf_local_storage_map *smap, void *value, u64 map_flags, gfp_t gfp_flags) bpf_local_storage_update() argument
[all...]
/kernel/linux/linux-6.6/fs/
H A Dmnt_idmapping.c13 struct user_namespace *owner; member
23 .owner = &init_user_ns,
38 return idmap->owner != sb->s_user_ns; in check_fsmapping()
101 struct user_namespace *mnt_userns = idmap->owner; in make_vfsuid()
139 struct user_namespace *mnt_userns = idmap->owner; in make_vfsgid()
168 struct user_namespace *mnt_userns = idmap->owner; in from_vfsuid()
196 struct user_namespace *mnt_userns = idmap->owner; in from_vfsgid()
239 idmap->owner = get_user_ns(mnt_userns); in alloc_mnt_idmap()
270 put_user_ns(idmap->owner); in mnt_idmap_put()
/kernel/linux/linux-5.10/fs/xfs/libxfs/
H A Dxfs_rmap.c26 * Lookup the first record less than or equal to [bno, len, owner, offset]
34 uint64_t owner, in xfs_rmap_lookup_le()
41 cur->bc_rec.r.rm_owner = owner; in xfs_rmap_lookup_le()
48 * Lookup the record exactly matching [bno, len, owner, offset]
56 uint64_t owner, in xfs_rmap_lookup_eq()
63 cur->bc_rec.r.rm_owner = owner; in xfs_rmap_lookup_eq()
71 * by [bno, len, owner, offset].
103 uint64_t owner, in xfs_rmap_insert()
111 len, owner, offset, flags); in xfs_rmap_insert()
113 error = xfs_rmap_lookup_eq(rcur, agbno, len, owner, offse in xfs_rmap_insert()
30 xfs_rmap_lookup_le( struct xfs_btree_cur *cur, xfs_agblock_t bno, xfs_extlen_t len, uint64_t owner, uint64_t offset, unsigned int flags, int *stat) xfs_rmap_lookup_le() argument
52 xfs_rmap_lookup_eq( struct xfs_btree_cur *cur, xfs_agblock_t bno, xfs_extlen_t len, uint64_t owner, uint64_t offset, unsigned int flags, int *stat) xfs_rmap_lookup_eq() argument
99 xfs_rmap_insert( struct xfs_btree_cur *rcur, xfs_agblock_t agbno, xfs_extlen_t len, uint64_t owner, uint64_t offset, unsigned int flags) xfs_rmap_insert() argument
141 xfs_rmap_delete( struct xfs_btree_cur *rcur, xfs_agblock_t agbno, xfs_extlen_t len, uint64_t owner, uint64_t offset, unsigned int flags) xfs_rmap_delete() argument
285 xfs_rmap_find_left_neighbor( struct xfs_btree_cur *cur, xfs_agblock_t bno, uint64_t owner, uint64_t offset, unsigned int flags, struct xfs_rmap_irec *irec, int *stat) xfs_rmap_find_left_neighbor() argument
363 xfs_rmap_lookup_le_range( struct xfs_btree_cur *cur, xfs_agblock_t bno, uint64_t owner, uint64_t offset, unsigned int flags, struct xfs_rmap_irec *irec, int *stat) xfs_rmap_lookup_le_range() argument
406 xfs_rmap_free_check_owner( struct xfs_mount *mp, uint64_t ltoff, struct xfs_rmap_irec *rec, xfs_filblks_t len, uint64_t owner, uint64_t offset, unsigned int flags) xfs_rmap_free_check_owner() argument
491 uint64_t owner; xfs_rmap_unmap() local
723 xfs_rmap_is_mergeable( struct xfs_rmap_irec *irec, uint64_t owner, unsigned int flags) xfs_rmap_is_mergeable() argument
765 uint64_t owner; xfs_rmap_map() local
998 uint64_t owner; xfs_rmap_convert() local
1494 uint64_t owner; xfs_rmap_convert_shared() local
1919 uint64_t owner; xfs_rmap_unmap_shared() local
2108 uint64_t owner; xfs_rmap_map_shared() local
2353 xfs_rmap_finish_one( struct xfs_trans *tp, enum xfs_rmap_intent_type type, uint64_t owner, int whichfork, xfs_fileoff_t startoff, xfs_fsblock_t startblock, xfs_filblks_t blockcount, xfs_exntst_t state, struct xfs_btree_cur **pcur) xfs_rmap_finish_one() argument
2472 __xfs_rmap_add( struct xfs_trans *tp, enum xfs_rmap_intent_type type, uint64_t owner, int whichfork, struct xfs_bmbt_irec *bmap) __xfs_rmap_add() argument
2565 xfs_rmap_alloc_extent( struct xfs_trans *tp, xfs_agnumber_t agno, xfs_agblock_t bno, xfs_extlen_t len, uint64_t owner) xfs_rmap_alloc_extent() argument
2587 xfs_rmap_free_extent( struct xfs_trans *tp, xfs_agnumber_t agno, xfs_agblock_t bno, xfs_extlen_t len, uint64_t owner) xfs_rmap_free_extent() argument
2669 uint64_t owner; xfs_rmap_record_exists() local
2703 uint64_t owner; global() member
[all...]
H A Dxfs_rmap.h84 uint64_t *owner, in xfs_owner_info_unpack()
90 *owner = oinfo->oi_owner; in xfs_owner_info_unpack()
102 uint64_t owner, in xfs_owner_info_pack()
106 oinfo->oi_owner = owner; in xfs_owner_info_pack()
123 xfs_extlen_t len, uint64_t owner, uint64_t offset,
126 xfs_extlen_t len, uint64_t owner, uint64_t offset,
129 xfs_extlen_t len, uint64_t owner, uint64_t offset,
173 xfs_agblock_t bno, xfs_extlen_t len, uint64_t owner);
175 xfs_agblock_t bno, xfs_extlen_t len, uint64_t owner);
180 uint64_t owner, in
82 xfs_owner_info_unpack( const struct xfs_owner_info *oinfo, uint64_t *owner, uint64_t *offset, unsigned int *flags) xfs_owner_info_unpack() argument
100 xfs_owner_info_pack( struct xfs_owner_info *oinfo, uint64_t owner, uint64_t offset, unsigned int flags) xfs_owner_info_pack() argument
[all...]
/kernel/linux/linux-5.10/drivers/regulator/
H A Dlp8788-ldo.c193 .owner = THIS_MODULE,
206 .owner = THIS_MODULE,
219 .owner = THIS_MODULE,
232 .owner = THIS_MODULE,
245 .owner = THIS_MODULE,
258 .owner = THIS_MODULE,
271 .owner = THIS_MODULE,
284 .owner = THIS_MODULE,
297 .owner = THIS_MODULE,
310 .owner
[all...]
/kernel/linux/linux-6.6/drivers/regulator/
H A Dlp8788-ldo.c193 .owner = THIS_MODULE,
206 .owner = THIS_MODULE,
219 .owner = THIS_MODULE,
232 .owner = THIS_MODULE,
245 .owner = THIS_MODULE,
258 .owner = THIS_MODULE,
271 .owner = THIS_MODULE,
284 .owner = THIS_MODULE,
297 .owner = THIS_MODULE,
310 .owner
[all...]
/kernel/linux/linux-5.10/include/linux/
H A Dlocal_lock_internal.h12 struct task_struct *owner; member
23 .owner = NULL,
28 DEBUG_LOCKS_WARN_ON(l->owner); in local_lock_acquire()
29 l->owner = current; in local_lock_acquire()
34 DEBUG_LOCKS_WARN_ON(l->owner != current); in local_lock_release()
35 l->owner = NULL; in local_lock_release()
41 l->owner = NULL; in local_lock_debug_init()
/kernel/linux/linux-5.10/arch/powerpc/include/asm/
H A Drheap.h23 const char *owner; member
43 const char *owner; member
67 const char *owner);
70 extern unsigned long rh_alloc(rh_info_t * info, int size, const char *owner);
74 const char *owner);
89 /* Set owner of taken block */
90 extern int rh_set_owner(rh_info_t * info, unsigned long start, const char *owner);
/kernel/linux/linux-6.6/arch/powerpc/include/asm/
H A Drheap.h23 const char *owner; member
43 const char *owner; member
67 const char *owner);
70 extern unsigned long rh_alloc(rh_info_t * info, int size, const char *owner);
74 const char *owner);
89 /* Set owner of taken block */
90 extern int rh_set_owner(rh_info_t * info, unsigned long start, const char *owner);

Completed in 15 milliseconds

12345678910>>...344