/linux-4.4.14/net/netfilter/ipset/ |
D | ip_set_list_set.c | 47 struct list_head members; /* the set members */ member 64 list_for_each_entry_rcu(e, &map->members, list) { in list_set_ktest() 93 list_for_each_entry(e, &map->members, list) { in list_set_kadd() 113 list_for_each_entry(e, &map->members, list) { in list_set_kdel() 186 list_for_each_entry_safe(e, n, &map->members, list) in set_cleanup_entries() 200 list_for_each_entry(e, &map->members, list) { in list_set_utest() 213 ret = !list_is_last(&e->list, &map->members) && in list_set_utest() 252 list_for_each_entry(e, &map->members, list) { in list_set_uadd() 283 n = list_empty(&map->members) ? NULL : in list_set_uadd() 284 list_last_entry(&map->members, struct set_elem, list); in list_set_uadd() [all …]
|
D | ip_set_bitmap_ipmac.c | 49 void *members; /* the set members */ member 91 if (!test_bit(e->id, map->members)) in bitmap_ipmac_do_test() 105 if (!test_bit(id, map->members)) in bitmap_ipmac_gc_test() 152 if (test_bit(e->id, map->members)) { in bitmap_ipmac_do_add() 158 clear_bit(e->id, map->members); in bitmap_ipmac_do_add() 167 clear_bit(e->id, map->members); in bitmap_ipmac_do_add() 187 return !test_and_clear_bit(e->id, map->members); in bitmap_ipmac_do_del() 300 map->members = ip_set_alloc(map->memsize); in init_map_ipmac() 301 if (!map->members) in init_map_ipmac()
|
D | ip_set_bitmap_port.c | 37 void *members; /* the set members */ member 64 return !!test_bit(e->id, map->members); in bitmap_port_do_test() 70 return !!test_bit(id, map->members); in bitmap_port_gc_test() 77 return !!test_bit(e->id, map->members); in bitmap_port_do_add() 84 return !test_and_clear_bit(e->id, map->members); in bitmap_port_do_del() 210 map->members = ip_set_alloc(map->memsize); in init_map_port() 211 if (!map->members) in init_map_port()
|
D | ip_set_bitmap_gen.h | 57 if (test_bit(id, map->members)) in mtype_ext_cleanup() 69 ip_set_free(map->members); in mtype_destroy() 84 memset(map->members, 0, map->memsize); in mtype_flush() 145 set_bit(e->id, map->members); in mtype_add() 167 set_bit(e->id, map->members); in mtype_add() 218 if (!test_bit(id, map->members) || in mtype_list() 277 clear_bit(id, map->members); in mtype_gc()
|
D | ip_set_bitmap_ip.c | 43 void *members; /* the set members */ member 72 return !!test_bit(e->id, map->members); in bitmap_ip_do_test() 78 return !!test_bit(id, map->members); in bitmap_ip_gc_test() 85 return !!test_bit(e->id, map->members); in bitmap_ip_do_add() 91 return !test_and_clear_bit(e->id, map->members); in bitmap_ip_do_del() 225 map->members = ip_set_alloc(map->memsize); in init_map_ip() 226 if (!map->members) in init_map_ip()
|
D | ip_set_core.c | 251 void *members = NULL; in ip_set_alloc() local 254 members = kzalloc(size, GFP_KERNEL | __GFP_NOWARN); in ip_set_alloc() 256 if (members) { in ip_set_alloc() 257 pr_debug("%p: allocated with kmalloc\n", members); in ip_set_alloc() 258 return members; in ip_set_alloc() 261 members = vzalloc(size); in ip_set_alloc() 262 if (!members) in ip_set_alloc() 264 pr_debug("%p: allocated with vmalloc\n", members); in ip_set_alloc() 266 return members; in ip_set_alloc() 271 ip_set_free(void *members) in ip_set_free() argument [all …]
|
/linux-4.4.14/Documentation/block/ |
D | request.txt | 9 2.0 Struct request members classification 11 2.1 struct request members explanation 17 Short explanation of request members 26 this member. Some members may contain D classifications, but should only be
|
D | 00-INDEX | 22 - The members of struct request (in include/linux/blkdev.h)
|
D | biodoc.txt | 748 of the same request members that are used for normal request queue management.
|
/linux-4.4.14/scripts/ |
D | kernel-doc | 1801 my $members = $3; 1804 $members =~ s/({.*})//g; 1808 $members =~ s/\/\*\s*private:.*?\/\*\s*public:.*?\*\///gosi; 1809 $members =~ s/\/\*\s*private:.*//gosi; 1811 $members =~ s/\/\*.*?\*\///gos; 1814 $members =~ s/kmemcheck_bitfield_.*?;//gos; 1816 $members =~ s/__attribute__\s*\(\([a-z,_\*\s\(\)]*\)\)//i; 1817 $members =~ s/__aligned\s*\([^;]*\)//gos; 1818 $members =~ s/\s*CRYPTO_MINALIGN_ATTR//gos; 1820 create_parameterlist($members, ';', $file); [all …]
|
/linux-4.4.14/Documentation/device-mapper/ |
D | switch.txt | 19 consists of a number of distinct storage arrays ("members") each having 21 is created it is spread across multiple members. The details of the 24 how many members are being used. When iSCSI sessions are created, each 38 members forward it as necessary, but there is a performance advantage to 57 non-preferred priority group containing paths to other array members for
|
/linux-4.4.14/drivers/isdn/mISDN/ |
D | dsp_cmx.c | 1309 dsp_cmx_send_member(struct dsp *dsp, int len, s32 *c, int members) argument 1343 members, dsp->name, conf, dsp->rx_R, dsp->rx_W); 1419 if (!conf || members <= 1) { 1457 if (members == 2) { 1634 int mustmix, members; local 1674 members = 0; 1676 members = count_list_member(&conf->mlist); 1678 if (conf->software && members > 1) 1680 if (conf->software && members > 2) 1687 dsp_cmx_send_member(dsp, length, mixbuffer, members); [all …]
|
/linux-4.4.14/drivers/infiniband/ulp/iser/ |
D | Kconfig | 12 and <http://members.infinibandta.org/kwspub/spec/Annex_iSER.PDF>
|
/linux-4.4.14/Documentation/devicetree/bindings/mfd/ |
D | palmas.txt | 3 The TI palmas family current members :-
|
D | axp20x.txt | 3 The axp20x family current members :
|
/linux-4.4.14/fs/dlm/ |
D | config.c | 214 struct list_head members; member 437 INIT_LIST_HEAD(&sp->members); in make_space() 525 list_add(&nd->list, &sp->members); in make_node() 825 list_for_each_entry(nd, &sp->members, list) { in dlm_config_nodes()
|
/linux-4.4.14/net/dsa/ |
D | slave.c | 209 DECLARE_BITMAP(members, DSA_MAX_PORTS); in dsa_bridge_check_vlan_range() 220 err = ds->drv->vlan_getnext(ds, &vid, members, untagged); in dsa_bridge_check_vlan_range() 227 member = find_first_bit(members, DSA_MAX_PORTS); in dsa_bridge_check_vlan_range() 295 DECLARE_BITMAP(members, DSA_MAX_PORTS); in dsa_slave_port_vlan_dump() 308 err = ds->drv->vlan_getnext(ds, &vid, members, untagged); in dsa_slave_port_vlan_dump() 312 if (!test_bit(p->port, members)) in dsa_slave_port_vlan_dump()
|
/linux-4.4.14/Documentation/accounting/ |
D | cgroupstats.txt | 8 extend per cgroup statistics, by adding members to the cgroupstats
|
/linux-4.4.14/Documentation/devicetree/bindings/arm/ |
D | atmel-at91.txt | 48 shared across all System Controller members. 54 shared across all System Controller members.
|
/linux-4.4.14/drivers/scsi/megaraid/ |
D | megaraid_sas_base.c | 320 if (class_locale.members.class >= MFI_EVT_CLASS_CRITICAL) in megasas_decode_evt() 324 (class_locale.members.locale), in megasas_decode_evt() 325 format_class(class_locale.members.class), in megasas_decode_evt() 3221 class_locale.members.reserved = 0; in megasas_issue_pending_cmds_again() 3222 class_locale.members.locale = MR_EVT_LOCALE_ALL; in megasas_issue_pending_cmds_again() 3223 class_locale.members.class = MR_EVT_CLASS_DEBUG; in megasas_issue_pending_cmds_again() 5109 if ((prev_aen.members.class <= curr_aen.members.class) && in megasas_register_aen() 5110 !((prev_aen.members.locale & curr_aen.members.locale) ^ in megasas_register_aen() 5111 curr_aen.members.locale)) { in megasas_register_aen() 5118 curr_aen.members.locale |= prev_aen.members.locale; in megasas_register_aen() [all …]
|
D | megaraid_sas.h | 1528 } __attribute__ ((packed)) members; member
|
/linux-4.4.14/drivers/infiniband/hw/mlx4/ |
D | mcg.c | 110 int members[3]; member 480 group->members[i] += inc; in adjust_membership() 489 if (!group->members[i]) in get_leave_state() 1019 group->members[2], group->members[1], group->members[0], in sysfs_show_group()
|
/linux-4.4.14/Documentation/ |
D | CodeOfConflict | 18 <tab@lists.linux-foundation.org>, or the individual members, and they
|
D | stable_kernel_rules.txt | 120 members object to the patch, bringing up issues that the maintainers and 121 members did not realize, the patch will be dropped from the queue.
|
D | kernel-doc-nano-HOWTO.txt | 11 and structures and their members. 280 Use the argument mechanism to document members or constants.
|
D | hwspinlock.txt | 294 set the priv members of the locks. The rest of the members are set and
|
D | rbtree.txt | 68 individual members may be accessed directly via rb_entry(node, type, member). 184 macro, and individual members may be accessed directly via
|
D | eisa.txt | 92 .probe and .remove members are mandatory.
|
D | kmemleak.txt | 195 members in the allocated structures. This feature would solve many of
|
D | clk.txt | 55 The members above make up the core of the clk tree topology. The clk
|
D | kobject.txt | 382 added to the kset's directory. Not all members of a kset do necessarily
|
D | parport-lowlevel.txt | 144 There are other members of the structure, but they should not be
|
D | kmemcheck.txt | 553 means that gcc has inserted 4 bytes of padding between the members si_code
|
D | memory-barriers.txt | 312 bit-fields in the same structure if all members declared
|
/linux-4.4.14/Documentation/arm/ |
D | firmware.txt | 17 and its members can be found in arch/arm/include/asm/firmware.h header.
|
D | vlocks.txt | 124 * By packing the members of the currently_voting array close together,
|
/linux-4.4.14/drivers/net/dsa/ |
D | mv88e6xxx.h | 471 int mv88e6xxx_port_bridge_join(struct dsa_switch *ds, int port, u32 members); 472 int mv88e6xxx_port_bridge_leave(struct dsa_switch *ds, int port, u32 members);
|
D | mv88e6xxx.c | 1877 int mv88e6xxx_port_bridge_join(struct dsa_switch *ds, int port, u32 members) in mv88e6xxx_port_bridge_join() argument 1892 int mv88e6xxx_port_bridge_leave(struct dsa_switch *ds, int port, u32 members) in mv88e6xxx_port_bridge_leave() argument
|
/linux-4.4.14/Documentation/thermal/ |
D | exynos_thermal | 70 other platform data (struct exynos_tmu_platform_data) members
|
/linux-4.4.14/drivers/infiniband/core/ |
D | multicast.c | 105 int members[3]; member 234 group->members[i] += inc; in adjust_membership() 249 if (!group->members[i]) in get_leave_state()
|
/linux-4.4.14/Documentation/filesystems/cifs/ |
D | AUTHORS | 17 the other members of the Storage Network Industry Association CIFS Technical
|
/linux-4.4.14/Documentation/dmaengine/ |
D | client.txt | 66 for a detailed explanation of the struct members. Please note 81 appropriate values to the 'dma_interleaved_template' members.
|
/linux-4.4.14/Documentation/driver-model/ |
D | design-patterns.txt | 43 state around to all functions that need access to the state and its members.
|
/linux-4.4.14/Documentation/networking/dsa/ |
D | dsa.txt | 361 contain the various members described below. 527 domain for it to ingress/egress traffic with other members of the bridge. DSA 528 does nothing but calculate a bitmask of switch ports currently members of the 534 remaining bridge members. When the port leaves the bridge, it should be aged 536 this port. DSA calculates the bitmask of ports still members of the bridge 561 in the switch, i.e. returns the bitmaps of members and untagged ports
|
/linux-4.4.14/Documentation/isdn/ |
D | INTERFACE.CAPI | 199 accessible form. It contains members for all possible CAPI 2.0 parameters, 213 are actually used. Unused members should be set to zero. 237 _cmsg structure members.
|
D | INTERFACE.fax | 34 All members are 8-bit unsigned (__u8)
|
D | README.concap | 192 dops pointers. Other concap_proto members should be considered private
|
/linux-4.4.14/fs/btrfs/ |
D | qgroup.c | 82 struct list_head members; /* groups that are members of this group */ member 187 INIT_LIST_HEAD(&qgroup->members); in add_qgroup_rb() 209 while (!list_empty(&qgroup->members)) { in __del_qgroup_rb() 210 list = list_first_entry(&qgroup->members, in __del_qgroup_rb() 252 list_add_tail(&list->next_member, &parent->members); in add_relation_rb() 1321 if (!list_empty(&qgroup->members)) { in btrfs_remove_qgroup()
|
/linux-4.4.14/Documentation/mmc/ |
D | mmc-async-req.txt | 47 There are two optional members in the mmc_host_ops -- pre_req() and
|
/linux-4.4.14/Documentation/filesystems/ |
D | path-lookup.txt | 88 Parent and name members of a dentry, as well as its membership in the dcache 94 These members are also protected by d_seq seqlock, although this offers 187 care must be taken to load the members up-front, and use those pointers rather 303 members have changed.
|
D | vfs.txt | 112 members are defined: 208 filesystem. As of kernel 2.6.22, the following members are defined: 337 filesystem. As of kernel 2.6.22, the following members are defined: 576 your filesystem. The following members are defined: 802 4.1, the following members are defined: 927 the VFS uses a default. As of kernel 2.6.22, the following members are
|
D | sharedsubtree.txt | 833 ->mnt_master can point to arbitrary (and possibly different) members 835 you need to go through _all_ ->mnt_slave_list of its members.
|
/linux-4.4.14/Documentation/early-userspace/ |
D | buffer-format.txt | 42 between members.
|
/linux-4.4.14/Documentation/target/ |
D | tcm_mod_builder.txt | 142 structure members.
|
/linux-4.4.14/include/linux/netfilter/ipset/ |
D | ip_set.h | 420 extern void ip_set_free(void *members);
|
/linux-4.4.14/Documentation/gpio/ |
D | driver.txt | 41 gpio_chip" (see linux/gpio/driver.h for its complete definition) with members 176 - Make sure to assign all relevant members of the struct gpio_chip so that
|
/linux-4.4.14/Documentation/devicetree/ |
D | of_unittest.txt | 60 // following struct members are used to construct the tree
|
/linux-4.4.14/tools/perf/ |
D | design.txt | 264 that creates it. The rest of the group members are created 444 disables the group leaders, not any other members in the groups.
|
/linux-4.4.14/Documentation/filesystems/nfs/ |
D | Exporting | 107 struct which has the following members:
|
/linux-4.4.14/Documentation/watchdog/ |
D | convert_drivers_to_kernel_api.txt | 158 static variables. Those have to be converted to use the members in
|
/linux-4.4.14/Documentation/scsi/ |
D | osd.txt | 108 members in the CDB. Up to 3 segments can be deployed in the IN-Buffer and up to
|
D | FlashPoint.txt | 73 been problematic for members of the Linux community, in that no Linux
|
D | scsi_mid_low_api.txt | 99 functions" below. Their function pointers are placed in the members of 105 pointer members not explicitly initialized. 1176 way members that are not explicitly initialized will be set to 0 or NULL. 1196 controls. The struct Scsi_Host structure has many members in common 1198 is created (in scsi_host_alloc() in hosts.c) those common members are
|
D | ChangeLog.lpfc | 62 - kill struct lpfc_scsi_dma_buf and embedded the two members 735 members and defines from lpfc_scsi.h - e.g. lpfc_target is down 741 * Condense nodelist flag members. 1215 * Remove unused cmnd_retry_list and in_retry members in struct 1546 * Put IPFC ifdef around two members of struct lpfc_nodelist. 1847 * Migrated members of LPFCHBA_t and LINUX_HBA_t into elxHBA_t
|
D | ChangeLog.megaraid_sas | 600 During initialization, depending on the device id, the template members
|
/linux-4.4.14/fs/jffs2/ |
D | README.Locking | 33 the alloc_sem is also used to protect the wbuf-related members of the
|
/linux-4.4.14/Documentation/arm64/ |
D | arm-acpi.txt | 439 Participation in this group is open to all UEFI members. Please see 450 are not UEFI members, many other members of the Linux community are and would
|
/linux-4.4.14/drivers/scsi/esas2r/ |
D | esas2r_main.c | 1446 g->members[i] = le16_to_cpu(g->members[i]); in esas2r_nuxi_mgt_data()
|
D | atvda.h | 413 u16 members[32]; member
|
/linux-4.4.14/Documentation/networking/ |
D | 3c509.txt | 64 duplex operations. Currently, the only members of the 3c509 family that are
|
D | packet_mmap.txt | 1024 tpacket{,2,3}_hdr structure's tp_sec and tp_{n,u}sec members. To determine 1050 members do not contain a valid value. For TX_RINGs, by default no timestamp
|
D | bonding.txt | 291 the same link which could cause the other team members to 1176 network-script file for all physical adapters that will be members of 2140 support link monitoring of their members, so if individual links fail,
|
/linux-4.4.14/Documentation/sound/alsa/soc/ |
D | dapm.txt | 121 Any widget kcontrols can be set using the controls and num_controls members.
|
/linux-4.4.14/Documentation/power/ |
D | pci.txt | 945 point two or more members of struct dev_pm_ops to the same routine. There are 950 members and one resume routine pointed to by the .resume(), .thaw(), and 951 .restore() members. The other function pointers in this struct dev_pm_ops are 961 .suspend(), .freeze(), and .poweroff() members and one resume routine is to 962 be pointed to by the .resume(), .thaw(), and .restore() members.
|
D | runtime_pm.txt | 296 All of the above fields are members of the 'power' member of 'struct device'.
|
/linux-4.4.14/drivers/platform/x86/ |
D | thinkpad_acpi.c | 994 unsigned int members, max_members; member 1033 if (s->members >= s->max_members) in add_to_attr_set() 1036 s->group.attrs[s->members] = attr; in add_to_attr_set() 1037 s->members++; in add_to_attr_set()
|
/linux-4.4.14/drivers/target/ |
D | target_core_configfs.c | 2213 CONFIGFS_ATTR_RO(target_lu_gp_, members); 2635 CONFIGFS_ATTR_RO(target_tg_pt_gp_, members);
|
/linux-4.4.14/scripts/genksyms/ |
D | lex.lex.c_shipped | 1728 /* Accessor methods (get/set functions) to struct members. */ 1915 * the only problem is struct and union members:
|
/linux-4.4.14/Documentation/filesystems/configfs/ |
D | configfs.txt | 320 and config_item->ci_parent structure members.
|
/linux-4.4.14/Documentation/security/ |
D | credentials.txt | 450 magic. This may not be used for pointer members as what they point to may
|
D | keys.txt | 520 its group list members.
|
/linux-4.4.14/Documentation/netlabel/ |
D | draft-ietf-cipso-ipsecurity-01.txt | 717 To submit mail for distribution to members of the IETF CIPSO Working
|
/linux-4.4.14/scripts/dtc/ |
D | dtc-lexer.lex.c_shipped | 2020 /* Accessor methods (get/set functions) to struct members. */
|
/linux-4.4.14/scripts/kconfig/ |
D | zconf.lex.c_shipped | 2176 /* Accessor methods (get/set functions) to struct members. */
|
/linux-4.4.14/Documentation/RCU/ |
D | whatisRCU.txt | 125 There are many other members of the RCU API, but the rest can be
|
/linux-4.4.14/drivers/tty/serial/ |
D | Kconfig | 143 and use_dma_rx members in the atmel_uart_data struct is set
|
/linux-4.4.14/Documentation/virtual/kvm/ |
D | api.txt | 510 size of the entries array), and the 'index' and 'data' members of each 3039 looking up structure members.
|