| /linux/include/linux/ |
| H A D | stddef.h | 39 * @MEMBERS: The member declarations for the mirrored structs 45 * struct members. 47 #define struct_group(NAME, MEMBERS...) \ argument 48 __struct_group(/* no tag */, NAME, /* no attrs */, MEMBERS) 55 * @MEMBERS: The member declarations for the mirrored structs 61 * struct members. Includes structure attributes argument. 63 #define struct_group_attr(NAME, ATTRS, MEMBERS...) \ argument 64 __struct_group(/* no tag */, NAME, ATTRS, MEMBERS) 71 * @MEMBERS: The member declarations for the mirrored structs 77 * struct members. Includes struct tag argument for the named copy, [all …]
|
| H A D | dlm.h | 24 * Notfies lockspace user that locks from failed members will be granted. 28 * Identifies lockspace members and lockspace generation number. 72 * caller can coordinate its recovery and know lockspace members. 105 * list of lockspace members.
|
| /linux/tools/include/uapi/linux/ |
| H A D | stddef.h | 24 * @MEMBERS: The member declarations for the mirrored structs 27 * and size: one anonymous and one named. The former's members can be used 29 * reason about the start, end, and size of the group of struct members. 33 #define __struct_group(TAG, NAME, ATTRS, MEMBERS...) \ argument 35 struct { MEMBERS } ATTRS; \ 36 struct __struct_group_tag(TAG) { MEMBERS } ATTRS NAME; \
|
| H A D | btf.h | 40 /* Max # of struct/union/enum members or func args */ 46 * bits 0-15: vlen (e.g. # of struct's members) 140 * bitfield size is set for bitfield members. If the type
|
| /linux/net/netfilter/ipset/ |
| H A D | ip_set_list_set.c | 45 struct list_head members; /* the set members */ member 63 list_for_each_entry_rcu(e, &map->members, list) { in list_set_ktest() 82 list_for_each_entry_rcu(e, &map->members, list) { in list_set_kadd() 102 list_for_each_entry_rcu(e, &map->members, list) { in list_set_kdel() 179 list_for_each_entry_safe(e, n, &map->members, list) in set_cleanup_entries() 194 list_for_each_entry_rcu(e, &map->members, list) { in list_set_utest() 208 ret = !list_is_last(&e->list, &map->members) && in list_set_utest() 246 list_for_each_entry_rcu(e, &map->members, list) { in list_set_uadd() 280 n = list_empty(&map->members) ? NULL : in list_set_uadd() 281 list_last_entry(&map->members, struct set_elem, list); in list_set_uadd() [all …]
|
| H A D | ip_set_bitmap_port.c | 33 unsigned long *members; /* the set members */ member 37 size_t memsize; /* members size */ 61 return !!test_bit(e->id, map->members); in bitmap_port_do_test() 67 return !!test_bit(id, map->members); in bitmap_port_gc_test() 74 return !!test_bit(e->id, map->members); in bitmap_port_do_add() 81 return !test_and_clear_bit(e->id, map->members); in bitmap_port_do_del() 234 map->members = bitmap_zalloc(map->elements, GFP_KERNEL | __GFP_NOWARN); in init_map_port() 235 if (!map->members) in init_map_port()
|
| H A D | ip_set_bitmap_gen.h | 54 if (test_bit(id, map->members)) in mtype_ext_cleanup() 65 ip_set_free(map->members); in mtype_destroy() 78 bitmap_zero(map->members, map->elements); in mtype_flush() 144 set_bit(e->id, map->members); in mtype_add() 168 set_bit(e->id, map->members); in mtype_add() 222 if (!test_bit(id, map->members) || in mtype_list() 280 clear_bit(id, map->members); in mtype_gc()
|
| /linux/Documentation/kbuild/ |
| H A D | gendwarfksyms.rst | 257 members. In this situation, it's possible to append new members to the 259 members remains unchanged. 261 To append new members, we can hide them from symbol versioning as 262 described in section :ref:`Hiding members <hiding_members>`, but we can't 282 /* Unchanged original members */ 286 /* Appended new members */ 333 Adding structure members 344 reserved space in data structures and hiding members that don't change 347 Reserving space and replacing members argument 388 Hiding members argument [all …]
|
| /linux/tools/lib/python/kdoc/ |
| H A D | kdoc_parser.py | 86 Remove ``struct``/``enum`` members that have been marked "private". 570 members) or ``None``. 592 def rewrite_struct_members(self, members): 594 Process ``struct``/``union`` members from the most deeply nested 597 Rewrite the members of a ``struct`` or ``union`` for easier formatting 618 tuples = struct_members.findall(members) 636 # Pass through the members of this inner structure/union. 680 members = members.replace(oldmember, newmember) 682 # End of the tuple loop - search again and see if there are outer members 698 rewrite_struct_members(self, members) global() argument [all...] |
| /linux/Documentation/driver-api/cxl/platform/example-configurations/ |
| H A D | flexible.rst | 47 Interleave Members (2^n) : 01 62 Interleave Members (2^n) : 00 76 Interleave Members (2^n) : 00 90 Interleave Members (2^n) : 00 104 Interleave Members (2^n) : 00 118 Interleave Members (2^n) : 00 132 Interleave Members (2^n) : 00
|
| /linux/rust/syn/ |
| H A D | data.rs | 126 /// let members = input.fields.members(); 132 /// #(#members: self.#members.clone()),* 143 pub fn members(&self) -> impl Iterator<Item = Member> + Clone + '_ [Members] { 144 Members { 204 pub struct Members<'a> { struct 209 impl<'a> Iterator for Members<'a> { implementation 232 impl<'a> Clone for Members<'a> { implementation 234 Members { in clone()
|
| /linux/net/tipc/ |
| H A D | monitor.c | 51 * @up_map: bit map indicating which of the members the sender considers up 52 * @members: identity of the domain members 60 u32 members[MAX_MON_DOMAIN]; member 69 * @applied: number of reported domain members applied on this monitor list 141 return (offsetof(struct tipc_mon_domain, members)) + (mcnt * sizeof(u32)); in dom_rec_len() 209 /* mon_identify_lost_members() : - identify amd mark potentially lost members 256 /* Scan across domain members and match against monitor list */ in mon_apply_domain() 260 addr = dom->members[i]; in mon_apply_domain() 290 diff |= dom->members[i] != peer->addr; in mon_update_local_domain() 291 dom->members[i] = peer->addr; in mon_update_local_domain() [all …]
|
| H A D | group.c | 81 struct rb_root members; member 128 /* Limit simultaneous reception from other members */ in tipc_group_rcvbuf_limit() 133 /* Reserve blocks for active and idle members */ in tipc_group_rcvbuf_limit() 179 grp->members = RB_ROOT; in tipc_group_create() 199 struct rb_root *tree = &grp->members; in tipc_group_join() 214 struct rb_root *tree = &grp->members; in tipc_group_delete() 235 struct rb_node *n = grp->members.rb_node; in tipc_group_find_member() 269 for (n = rb_first(&grp->members); n; n = rb_next(n)) { in tipc_group_find_node() 284 n = &grp->members.rb_node; in tipc_group_add_to_tree() 298 rb_insert_color(&m->tree_node, &grp->members); in tipc_group_add_to_tree() [all …]
|
| /linux/include/linux/sched/ |
| H A D | sd_flags.h | 85 * Domain members have different CPU capacities 94 * Domain members have different CPU capacities spanning all unique CPU 104 * Domain members share CPU capacity (i.e. SMT) 113 * Domain members share CPU cluster (LLC tags or L2 cache) 120 * Domain members share CPU Last Level Caches
|
| /linux/include/uapi/linux/ |
| H A D | signalfd.h | 45 * pad size when you add new members. We use a fixed 48 * members. We use fixed size members because this strcture
|
| /linux/security/tomoyo/ |
| H A D | gc.c | 102 * tomoyo_del_transition_control - Delete members in "struct tomoyo_transition_control". 118 * tomoyo_del_aggregator - Delete members in "struct tomoyo_aggregator". 134 * tomoyo_del_manager - Delete members in "struct tomoyo_manager". 149 * tomoyo_del_acl - Delete members in "struct tomoyo_acl_info". 242 * tomoyo_del_domain - Delete members in "struct tomoyo_domain_info". 270 * tomoyo_del_condition - Delete members in "struct tomoyo_condition". 310 * tomoyo_del_name - Delete members in "struct tomoyo_name". 322 * tomoyo_del_path_group - Delete members in "struct tomoyo_path_group". 352 * tomoyo_del_address_group - Delete members in "struct tomoyo_address_group". 364 * tomoyo_del_number_group - Delete members i [all...] |
| H A D | group.c | 120 …* tomoyo_path_matches_group - Check whether the given pathname matches members of the given pathna… 148 …* tomoyo_number_matches_group - Check whether the given number matches members of the given number… 179 …* tomoyo_address_matches_group - Check whether the given address matches members of the given addr…
|
| /linux/Documentation/admin-guide/device-mapper/ |
| H A D | switch.rst | 20 consists of a number of distinct storage arrays ("members") each having 22 is created it is spread across multiple members. The details of the 25 how many members are being used. When iSCSI sessions are created, each 39 members forward it as necessary, but there is a performance advantage to 58 non-preferred priority group containing paths to other array members for
|
| /linux/Documentation/driver-api/ |
| H A D | ioctl.rst | 147 avoiding all problematic members: 174 To avoid this problem, all structures should have their members 183 * On the m68k architecture, struct members are not guaranteed to have an 191 * ``char`` members can be either signed or unsigned, depending on 207 individual members.
|
| /linux/drivers/net/ethernet/huawei/hinic/ |
| H A D | hinic_hw_if.h | 41 /* reserved members - off 16 */ 54 /* reserved members - off 10 */ 56 /* reserved members - off 15 */ 59 /* reserved members - off 27 */
|
| /linux/arch/powerpc/include/asm/ |
| H A D | fadump-internal.h | 55 * Consider a few points before adding new members to the fadump crash info 58 * - Append new members; avoid adding them in between. 59 * - Non-primitive members should have a size member as well.
|
| /linux/tools/testing/selftests/drivers/net/bonding/ |
| H A D | mode-2-recovery-updelay.sh | 6 # slave members flaps if there are no remaining members up the bond
|
| H A D | mode-1-recovery-updelay.sh | 6 # slave members flaps if there are no remaining members up the bond
|
| /linux/arch/sh/include/asm/ |
| H A D | sh7760fb.h | 135 * wish to use. The following members must be initialized: 138 * The driver uses the above members to calculate register values 139 * and memory requirements. Other members are ignored but may
|
| /linux/drivers/infiniband/core/ |
| H A D | multicast.c | 105 int members[NUM_JOIN_MEMBERSHIP_TYPES]; member 222 * A multicast group has four types of members: full member, non member, 224 * We need to keep track of the number of members of each 225 * type based on their join state. Adjust the number of members the belong to 234 group->members[i] += inc; in adjust_membership() 238 * If a multicast group has zero members left for a particular join state, but 241 * active members. 249 if (!group->members[i]) in get_leave_state()
|