Home
last modified time | relevance | path

Searched full:attributes (Results 1 – 25 of 2797) sorted by relevance

12345678910>>...112

/openbmc/linux/Documentation/netlink/specs/
H A Dethtool.yaml23 attributes:
36 attributes:
48 attributes:
53 nested-attributes: bitset-bit
56 attributes:
66 nested-attributes: bitset-bits
75 attributes:
84 attributes:
89 nested-attributes: string
92 attributes:
[all …]
H A Ddevlink.yaml23 attributes:
35 # TODO: fill in the attributes in between
42 # TODO: fill in the attributes in between
54 # TODO: fill in the attributes in between
61 # TODO: fill in the attributes in between
68 # TODO: fill in the attributes in between
75 # TODO: fill in the attributes in between
88 nested-attributes: dl-info-version
93 nested-attributes: dl-info-version
98 nested-attributes: dl-info-version
[all …]
H A Dovs_flow.yaml339 MPLS tunnel attributes.
375 attributes:
379 nested-attributes: key-attrs
381 Nested attributes specifying the flow key. Always present in
386 nested-attributes: action-attrs
388 Nested attributes specifying the actions to take for packets that
393 nested attributes must be given.
426 nested-attributes: key-attrs
428 Nested attributes specifying the mask bits for wildcarded flow
464 attributes:
[all …]
H A Drt_link.yaml727 attributes:
786 nested-attributes: linkinfo-attrs
799 nested-attributes: vfinfo-attrs
807 nested-attributes: vf-ports-attrs
811 nested-attributes: port-self-attrs
815 nested-attributes: af-spec-attrs
867 nested-attributes: xdp-attrs
895 nested-attributes: link-attrs
936 attributes:
941 nested-attributes: ifla-attrs
[all …]
H A Dovs_vport.yaml60 attributes:
71 attributes:
83 attributes:
101 nested-attributes: vport-options
122 nested-attributes: upcall-stats
134 attributes:
148 attributes:
160 attributes:
164 attributes:
/openbmc/u-boot/env/
H A Dattr.c24 * attributes = [^,:\s]*
25 * entry = name[:attributes]
29 int (*callback)(const char *name, const char *attributes, void *priv), in env_attr_walk() argument
33 char *name, *attributes; in env_attr_walk() local
82 attributes = strchr(entry_cpy, ENV_ATTR_SEP); in env_attr_walk()
84 if (attributes != NULL) { in env_attr_walk()
86 *attributes++ = '\0'; in env_attr_walk()
87 /* remove white-space from attributes */ in env_attr_walk()
88 attributes = strim(attributes); in env_attr_walk()
97 retval = callback(name, attributes, priv); in env_attr_walk()
[all …]
/openbmc/linux/include/linux/
H A Dcompiler_attributes.h6 * The attributes in this file are unconditionally defined and they directly
11 * Any other "attributes" (i.e. those that depend on a configuration option,
12 * on a compiler, on an architecture, on plugins, on other attributes...)
24 …* gcc: https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-alias-function-a…
29 …* gcc: https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-aligned-function…
30 …* gcc: https://gcc.gnu.org/onlinedocs/gcc/Common-Type-Attributes.html#index-aligned-type-attribu…
31 …* gcc: https://gcc.gnu.org/onlinedocs/gcc/Common-Variable-Attributes.html#index-aligned-variable…
38 * available and includes other attributes. For GCC < 9.1, __alloc_size__ gets undefined
41 …* gcc: https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-alloc_005fsize-f…
52 …* gcc: https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-always_005finlin…
[all …]
/openbmc/linux/fs/efivarfs/
H A Dfile.c20 u32 attributes; in efivarfs_file_write() local
22 unsigned long datasize = count - sizeof(attributes); in efivarfs_file_write()
26 if (count < sizeof(attributes)) in efivarfs_file_write()
29 if (copy_from_user(&attributes, userbuf, sizeof(attributes))) in efivarfs_file_write()
32 if (attributes & ~(EFI_VARIABLE_MASK)) in efivarfs_file_write()
35 data = memdup_user(userbuf + sizeof(attributes), datasize); in efivarfs_file_write()
39 bytes = efivar_entry_set_get_size(var, attributes, &datasize, in efivarfs_file_write()
53 i_size_write(inode, datasize + sizeof(attributes)); in efivarfs_file_write()
71 u32 attributes; in efivarfs_file_read() local
90 data = kmalloc(datasize + sizeof(attributes), GFP_KERNEL); in efivarfs_file_read()
[all …]
/openbmc/linux/net/netlabel/
H A Dnetlabel_mgmt.h28 * Required attributes:
33 * If IPv4 is specified the following attributes are required:
38 * If IPv6 is specified the following attributes are required:
43 * If using NETLBL_NLTYPE_CIPSOV4 the following attributes are required:
47 * If using NETLBL_NLTYPE_UNLABELED no other attributes are required,
56 * Required attributes:
66 * Required attributes:
82 * attributes are required:
87 * attributes are required.
93 * Required attributes:
[all …]
H A Dnetlabel_unlabeled.h28 * Required attributes:
33 * If IPv4 is specified the following attributes are required:
38 * If IPv6 is specified the following attributes are required:
47 * Required attributes:
51 * If IPv4 is specified the following attributes are required:
56 * If IPv6 is specified the following attributes are required:
67 * Required attributes:
72 * If IPv4 is specified the following attributes are required:
77 * If IPv6 is specified the following attributes are required:
90 * If IPv4 is specified the following attributes are required:
[all …]
H A Dnetlabel_cipso_v4.h27 * Required attributes:
33 * If using CIPSO_V4_MAP_TRANS the following attributes are required:
38 * If using CIPSO_V4_MAP_PASS or CIPSO_V4_MAP_LOCAL no additional attributes
45 * Required attributes:
53 * Required attributes:
60 * Required attributes:
65 * If using CIPSO_V4_MAP_TRANS the following attributes are required:
70 * If using CIPSO_V4_MAP_PASS or CIPSO_V4_MAP_LOCAL no additional attributes
79 * Required attributes:
96 /* NetLabel CIPSOv4 attributes */
/openbmc/u-boot/lib/efi_loader/
H A Defi_variable.c21 * efi_$guid_$varname = {attributes}(type)value
30 * The attributes are a comma separated list of these possible
31 * attributes:
40 * If not specified, the attributes default to "{boot}".
102 * parse_attr() - decode attributes part of variable value
104 * Convert the string encoded attributes of a UEFI variable to a bit mask.
105 * TODO: Several attributes are not supported.
108 * @attrp: pointer to UEFI attributes
158 * @attributes: attributes of the variable
164 const efi_guid_t *vendor, u32 *attributes, in efi_get_variable() argument
[all …]
/openbmc/linux/include/uapi/linux/
H A Dsmc.h15 /* Netlink SMC_PNETID attributes */
67 /* SMC_GENL_FAMILY top level attributes */
82 /* SMC_GEN_SYS_INFO attributes */
95 /* SMC_NLA_LGR_D_V2_COMMON and SMC_NLA_LGR_R_V2_COMMON nested attributes */
106 /* SMC_NLA_LGR_R_V2 nested attributes */
116 /* SMC_GEN_LGR_SMCR attributes */
134 /* SMC_GEN_LINK_SMCR attributes */
151 /* SMC_GEN_LGR_SMCD attributes */
167 /* SMC_NLA_DEV_PORT nested attributes */
180 /* SMC_GEN_DEV_SMCD and SMC_GEN_DEV_SMCR attributes */
[all …]
H A Dncsi.h17 * @NCSI_CMD_PKG_INFO: list package and channel attributes. Requires
51 * enum ncsi_nl_attrs - General NCSI netlink attributes
53 * @NCSI_ATTR_UNSPEC: unspecified attributes to catch errors
55 * @NCSI_ATTR_PACKAGE_LIST: nested array of NCSI_PKG_ATTR attributes
81 * enum ncsi_nl_pkg_attrs - NCSI netlink package-specific attributes
83 * @NCSI_PKG_ATTR_UNSPEC: unspecified attributes to catch errors
84 * @NCSI_PKG_ATTR: nested array of package attributes
87 * @NCSI_PKG_ATTR_CHANNEL_LIST: nested array of NCSI_CHANNEL_ATTR attributes
102 * enum ncsi_nl_channel_attrs - NCSI netlink channel-specific attributes
104 * @NCSI_CHANNEL_ATTR_UNSPEC: unspecified attributes to catch errors
[all …]
/openbmc/linux/Documentation/ABI/testing/
H A Dsysfs-class-firmware-attributes1 What: /sys/class/firmware-attributes/*/attributes/*/
12 Unless otherwise specified in an attribute description all attributes are optional
88 On Dell systems the following additional attributes are available:
111 Enumeration attributes also support the following:
117 dependent attributes value.
137 On HP systems the following additional attributes are available:
149 What: /sys/class/firmware-attributes/*/authentication/
160 reset or cleared using these attributes.
208 setting attributes when a system or admin password is set
229 On Dell, Lenovo and HP systems, if Admin password is set, then all BIOS attributes
[all …]
/openbmc/linux/drivers/platform/x86/hp/hp-bioscfg/
H A DMakefile5 enum-attributes.o \
6 int-attributes.o \
7 order-list-attributes.o \
8 passwdobj-attributes.o \
9 spmobj-attributes.o \
10 string-attributes.o \
11 surestart-attributes.o
/openbmc/linux/Documentation/driver-api/driver-model/
H A Ddevice.rst38 Attributes chapter
51 Attributes of devices can be exported by a device driver through sysfs.
56 As explained in Documentation/core-api/kobject.rst, device attributes must be
60 Attributes are declared using a macro called DEVICE_ATTR::
76 names 'dev_attr_type' and 'dev_attr_power'. These two attributes can be
106 device attributes and the device_unregister() function will use this pointer
107 to remove the device attributes.
111 strict expectations on when attributes get created. When a new device is
113 udev) that a new device is available. If attributes are added after the
115 not know about the new attributes.
[all …]
/openbmc/linux/Documentation/userspace-api/netlink/
H A Dspecs.rst36 Each next level inherits the attributes of the previous level, meaning that
41 - ``genetlink-c`` - superset of ``genetlink`` with extra attributes allowing
60 - attributes
81 Attributes listed directly at the root level of the spec file.
151 This property contains information about netlink attributes of the family.
159 referred to with a ``nested-attributes`` property of the container.
163 which attributes are allowed in a nest or refining the validation criteria.
170 Uniquely identifies the attribute set, operations and nested attributes
178 or even types of attributes depending on the nest in which they
182 attributes subsection
[all …]
/openbmc/u-boot/include/
H A Denv_attr.h15 * attributes = [^,:\s]*
16 * entry = name[:attributes]
18 * It will call the "callback" function with the "name" and "attributes"
24 int (*callback)(const char *name, const char *attributes, void *priv),
30 * If the name is found in the list, it's value is copied into "attributes".
31 * There is no protection on attributes being too small for the value.
32 * It returns -1 if attributes is NULL, 1 if "name" is not found, 2 if
36 int env_attr_lookup(const char *attr_list, const char *name, char *attributes);
/openbmc/linux/include/scsi/fc/
H A Dfc_ms.h38 FC_FDMI_GHAT = 0x0101, /* Get HBA Attributes */
40 FC_FDMI_GPAT = 0x0110, /* Get Port Attributes */
42 FC_FDMI_RHAT = 0x0201, /* Register HBA Attributes */
44 FC_FDMI_RPA = 0x0211, /* Register Port Attributes */
46 FC_FDMI_DHAT = 0x0301, /* Deregister HBA Attributes */
48 FC_FDMI_DPA = 0x0311, /* Deregister Port Attributes */
155 * Attribute Entry Block for HBA/Port Attributes
165 * Common for HBA/Port Attributes
190 * Register HBA Attributes (RHAT)
207 * Register Port Attributes (RPA)
[all …]
/openbmc/linux/Documentation/hwmon/
H A Dhwmon-kernel-api.rst48 It creates the standard sysfs attributes in the hardware monitoring core,
50 of having to bother with sysfs attributes. The parent device parameter
139 is optional, but must be provided if any readable attributes exist.
143 optional, but must be provided if any writeable attributes exist.
161 hwmon_chip A virtual sensor type, used to describe attributes
176 describing the attributes supposed by a single sensor.
240 HWMON_C_xxxx Chip attributes, for use with hwmon_chip.
241 HWMON_T_xxxx Temperature attributes, for use with hwmon_temp.
242 HWMON_I_xxxx Voltage attributes, for use with hwmon_in.
243 HWMON_C_xxxx Current attributes, for use with hwmon_curr.
[all …]
/openbmc/linux/Documentation/filesystems/ext4/
H A Dattributes.rst3 Extended Attributes
6 Extended attributes (xattrs) are typically stored in a separate data
8 The first use of extended attributes seems to have been for storing file
10 option it is possible for users to store extended attributes so long as
14 There are two places where extended attributes can be found. The first
19 where extended attributes can be found is in the block pointed to by
29 Extended attributes, when stored after the inode, have a header
72 - Hash value of all attributes.
92 Attributes stored inside an inode do not need be stored in sorted order.
114 Multiple attributes can share the same value. For an inode attribute
[all …]
/openbmc/linux/include/scsi/
H A Dscsi_transport_fc.h3 * FiberChannel transport specific attributes exported to sysfs.
7 * Rewrite for host, target, device, and remote port attributes,
164 /* Macro for use in defining Virtual Port attributes */
191 * FC Virtual Port Attributes
202 * roles. FC port attributes for the vport will be reported on any
207 * Fixed attributes are not expected to change. The driver is
212 * Dynamic attributes are expected to change. The driver participates
215 * Private attributes are transport-managed values. They are fully
220 /* Fixed Attributes */
222 /* Dynamic Attributes */
[all …]
/openbmc/linux/Documentation/netlabel/
H A Dlsm_interface.rst12 NetLabel is a mechanism which can set and retrieve security attributes from
18 NetLabel Security Attributes
22 it uses the concept of security attributes to refer to the packet's security
23 labels. The NetLabel security attributes are defined by the
25 NetLabel subsystem converts the security attributes to and from the correct
28 security attributes into whatever security identifiers are in use for their
47 LSM has received a packet, used NetLabel to decode its security attributes,
48 and translated the security attributes into a LSM internal identifier the LSM
/openbmc/openpower-debug-collector/dump/tools/bmcdump/plugins/
H A Dphal_devtree13 #export attributes list to attribute_list.txt
14 attributes="/usr/bin/attributes"
16 attr_cmd="$attributes export"
18 if [ -x $attributes ]; then
35 #copy attributes info db to dump

12345678910>>...112