Searched refs:bitset (Results 1 - 15 of 15) sorted by relevance

/linux-master/tools/perf/trace/beauty/
H A Dfutex_val3.c11 unsigned int bitset = arg->val; local
13 if (bitset == FUTEX_BITSET_MATCH_ANY)
16 return scnprintf(bf, size, "%#xd", bitset);
/linux-master/drivers/md/persistent-data/
H A DMakefile5 dm-bitset.o \
/linux-master/kernel/futex/
H A Dwaitwake.c153 * Wake up waiters matching bitset queued on this futex (uaddr).
155 int futex_wake(u32 __user *uaddr, unsigned int flags, int nr_wake, u32 bitset) argument
163 if (!bitset)
189 if (!(this->bitset & bitset))
648 struct hrtimer_sleeper *to, u32 bitset)
654 if (!bitset)
657 q.bitset = bitset;
688 int futex_wait(u32 __user *uaddr, unsigned int flags, u32 val, ktime_t *abs_time, u32 bitset) argument
647 __futex_wait(u32 __user *uaddr, unsigned int flags, u32 val, struct hrtimer_sleeper *to, u32 bitset) argument
[all...]
H A Dfutex.h156 * @bitset: bitset for the optional bitmasked wakeup
182 u32 bitset; member in struct:futex_q
338 val, ktime_t *abs_time, u32 bitset, u32 __user
347 struct hrtimer_sleeper *to, u32 bitset);
350 ktime_t *abs_time, u32 bitset);
377 extern int futex_wake(u32 __user *uaddr, unsigned int flags, int nr_wake, u32 bitset);
H A Drequeue.c64 .bitset = FUTEX_BITSET_MATCH_ANY,
733 * @bitset: 32 bit wakeup bitset set by userspace, defaults to all
767 u32 val, ktime_t *abs_time, u32 bitset,
784 if (!bitset)
800 q.bitset = bitset;
766 futex_wait_requeue_pi(u32 __user *uaddr, unsigned int flags, u32 val, ktime_t *abs_time, u32 bitset, u32 __user *uaddr2) argument
/linux-master/tools/testing/selftests/futex/include/
H A Dfutextest.h94 * futex_wait_bitset() - block on uaddr with bitset
95 * @bitset: bitset to be used with futex_wake_bitset
99 u_int32_t bitset, int opflags)
101 return futex(uaddr, FUTEX_WAIT_BITSET, val, timeout, NULL, bitset,
106 * futex_wake_bitset() - wake one or more tasks blocked on uaddr with bitset
107 * @bitset: bitset to compare with that used in futex_wait_bitset
110 futex_wake_bitset(futex_t *uaddr, int nr_wake, u_int32_t bitset, int opflags) argument
112 return futex(uaddr, FUTEX_WAKE_BITSET, nr_wake, NULL, NULL, bitset,
98 futex_wait_bitset(futex_t *uaddr, futex_t val, struct timespec *timeout, u_int32_t bitset, int opflags) argument
[all...]
/linux-master/net/ethtool/
H A Dbitset.h10 int ethnl_bitset_is_compact(const struct nlattr *bitset, bool *compact);
H A DMakefile7 ethtool_nl-y := netlink.o bitset.o strset.o linkinfo.o linkmodes.o rss.o \
H A Dbitset.c6 #include "bitset.h"
159 * ethnl_bitset32_size() - Calculate size of bitset nested attribute
162 * @nbits: bit length of the bitset
217 * ethnl_put_bitset32() - Put a bitset nest into a message
219 * @attrtype: attribute type for the bitset nest
222 * @nbits: bit length of the bitset
226 * Compose a nested attribute representing a bitset. If @mask is null, simple
321 * ethnl_bitset_is_compact() - check if bitset attribute represents a compact
322 * bitset
323 * @bitset
328 ethnl_bitset_is_compact(const struct nlattr *bitset, bool *compact) argument
[all...]
/linux-master/include/linux/
H A Drestart_block.h34 u32 bitset; member in struct:restart_block::__anon604::__anon605
/linux-master/drivers/md/
H A Ddm-cache-policy-internal.h129 static inline void clear_bitset(void *bitset, unsigned int nr_entries) argument
133 memset(bitset, 0, s);
/linux-master/kernel/bpf/
H A Dbloom_filter.c20 unsigned long bitset[]; member in struct:bpf_bloom_filter
44 if (!test_bit(h, bloom->bitset))
62 set_bit(h, bloom->bitset);
/linux-master/fs/btrfs/
H A Dextent-io-tree.c1730 bool bitset = false; local
1741 bitset = true;
1752 return bitset;
1762 bool bitset = true; local
1774 bitset = false;
1782 bitset = false;
1801 bitset = false;
1803 return bitset;
/linux-master/net/netfilter/
H A Dnft_set_pipapo.c366 unsigned long bitset; local
371 bitset = map[k];
372 while (bitset) {
373 unsigned long t = bitset & -bitset;
374 int r = __builtin_ctzl(bitset);
391 bitset ^= t;
/linux-master/io_uring/
H A Dfutex.c348 ifd->q.bitset = iof->futex_mask;

Completed in 224 milliseconds