/openbmc/bmcweb/redfish-core/schema/dmtf/csdl/ |
H A D | Aggregate_v1.xml | 4 <!--# Redfish Schema: Aggregate v1.0.3 --> 34 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Aggregate"> 38 <EntityType Name="Aggregate" BaseType="Resource.v1_0_0.Resource" Abstract="true"> 39 …<Annotation Term="OData.Description" String="The `Aggregate` schema describes a grouping method fo… 65 …used to reset a collection of resources. For example, this could be an aggregate or a list of com… 67 <Parameter Name="Aggregate" Type="Aggregate.v1_0_0.Actions"/> 86 …the boot order to the default state for the computer systems that are members of this aggregate."/> 87 …the boot order to the default state for the computer systems that are members of this aggregate."/> 88 <Parameter Name="Aggregate" Type="Aggregate.v1_0_0.Actions"/> 92 …m="OData.Description" String="This action is used to add one or more resources to the aggregate."/> [all …]
|
H A D | AggregateCollection_v1.xml | 27 <edmx:Include Namespace="Aggregate"/> 37 … <Annotation Term="OData.Description" String="The collection of `Aggregate` resource instances."/> 38 …iption" String="This resource shall represent a resource collection of `Aggregate` instances for a… 59 <NavigationProperty Name="Members" Type="Collection(Aggregate.Aggregate)">
|
/openbmc/openbmc/poky/scripts/lib/build_perf/ |
H A D | report.py | 139 """Aggregate metadata into one, basically a sanity check""" 142 def aggregate_obj(aggregate, obj, assert_str=True): argument 143 """Aggregate objects together""" 144 assert type(aggregate) is type(obj), \ 145 "Type mismatch: {} != {}".format(type(aggregate), type(obj)) 147 assert set(aggregate.keys()) == set(obj.keys()) 149 aggregate_obj(aggregate[key], val, key not in mutable_keys) 151 assert len(aggregate) == len(obj) 153 aggregate_obj(aggregate[i], val) 155 assert aggregate == obj, "Data mismatch {} != {}".format(aggregate, obj) [all …]
|
/openbmc/linux/include/linux/ |
H A D | component.h | 20 * Called through component_bind_all() when the aggregate driver is 28 * Called through component_unbind_all() when the aggregate driver is 47 * struct component_master_ops - callback for the aggregate driver 49 * Aggregate drivers are registered with component_master_add_with_match() and 56 * Called when all components or the aggregate driver, as specified in 58 * ready. Usually there are 3 steps to bind an aggregate driver: 60 * 1. Allocate a structure for the aggregate driver. 62 * 2. Bind all components to the aggregate driver by calling 63 * component_bind_all() with the aggregate driver structure as opaque 66 * 3. Register the aggregate driver with the subsystem to publish its [all …]
|
H A D | interconnect-provider.h | 49 * @aggregate: pointer to device specific aggregate operation function 64 int (*aggregate)(struct icc_node *node, u32 tag, u32 avg_bw, member
|
/openbmc/bmcweb/redfish-core/schema/dmtf/json-schema/ |
H A D | Aggregate.v1_0_3.json | 2 "$id": "http://redfish.dmtf.org/schemas/v1/Aggregate.v1_0_3.json", 3 "$ref": "#/definitions/Aggregate", 26 "#Aggregate.AddElements": { 29 "#Aggregate.RemoveElements": { 32 "#Aggregate.Reset": { 35 "#Aggregate.SetDefaultBootOrder": { 48 "description": "This action is used to add one or more resources to the aggregate.", 49 …e or more resources to the aggregate, with the result that the resources are included in the `Elem… 56 …hall contain an array of links to the specified resources to add to the aggregate's `Elements` arr… 88 "Aggregate": { object [all …]
|
H A D | AggregateCollection.json | 14 "description": "The collection of `Aggregate` resource instances.", 15 …gDescription": "This resource shall represent a resource collection of `Aggregate` instances for a… 57 … "$ref": "http://redfish.dmtf.org/schemas/v1/Aggregate.json#/definitions/Aggregate"
|
/openbmc/linux/fs/jfs/ |
H A D | jfs_mount.c | 9 * note: file system in transition to aggregate/fileset: 11 * file system mount is interpreted as the mount of aggregate, 13 * the aggregate; 15 * a file system/aggregate is represented by an internal inode 16 * (aka mount inode) initialized with aggregate superblock; 19 * (an aggregate itself is structured recursively as a filset: 21 * allocation map inode" (aka aggregate inode) where each inode 23 * on-disk inode in uniform way at both aggregate and fileset level; 28 * per aggregate information, e.g., block size, etc.) as well as 31 * aggregate [all …]
|
H A D | jfs_filsys.h | 51 /* Secondary aggregate inode table */ 155 #define AIMAP_B (SUPER1_B + 8) /* 1st extent of aggregate inode map */ 157 * 1st extent of aggregate inode table 186 * Control page of aggregate inode map 191 * 1st extent of aggregate inode table 204 * the front of an aggregate, in terms of physical blocks. This value is 212 * front of an aggregate. This value is currently defined to be 32K. This 220 * the aggregate inode table. This allows us to find the self inode to find the 228 /* aggregate inode */ 229 #define AGGR_RESERVED_I 0 /* aggregate inode (reserved) */ [all …]
|
H A D | jfs_superblock.h | 20 * aggregate superblock 29 __le64 s_size; /* 8: aggregate size in hardware/LVM blocks; 32 __le32 s_bsize; /* 4: aggregate block size in bytes; 43 __le32 s_flag; /* 4: aggregate attributes: 52 * aggregate inode table 56 * aggregate inode map 59 __le32 s_logserial; /* 4: log serial number at aggregate mount */
|
H A D | jfs_dmap.h | 45 #define MAXMAPSIZE MAXL2SIZE /* maximum aggregate map size */ 113 * convert aggregate map size to the zero origin dmapctl level of the 189 * on-disk aggregate disk allocation map descriptor. 192 __le64 dn_mapsize; /* 8: number of blocks in aggregate */ 193 __le64 dn_nfree; /* 8: num free blks in aggregate map */ 211 s64 dn_mapsize; /* number of blocks in aggregate */ 212 s64 dn_nfree; /* num free blks in aggregate map */ 228 * in-memory aggregate disk allocation map descriptor. 231 struct dbmap db_bmap; /* on-disk aggregate map descriptor */ 232 struct inode *db_ipbmap; /* ptr to aggregate map incore inode */ [all …]
|
H A D | jfs_umount.c | 9 * note: file system in transition to aggregate/fileset: 13 * fileset in the aggregate and, if unmount of the last fileset, 69 * close secondary aggregate inode allocation map in jfs_umount() 78 * close aggregate inode allocation map in jfs_umount() 85 * close aggregate block allocation map in jfs_umount()
|
H A D | jfs_incore.h | 161 unsigned long mntflag; /* aggregate attributes */ 163 struct inode *ipaimap; /* aggregate inode map inode */ 165 struct inode *ipimap; /* aggregate inode map inode */ 174 uint aggregate; /* volume identifier in log record */ member
|
H A D | resize.c | 128 * no size specified: default to 1/256 of aggregate in jfs_extendfs() 155 * whether file system extends to the end of the aggregate; in jfs_extendfs() 157 * - 1 bit per block in aggregate rounded up to BPERDMAP boundary in jfs_extendfs() 271 * s_size: aggregate size in physical blocks; in jfs_extendfs() 279 * di_mapsize: number of blocks in aggregate (covered by map); in jfs_extendfs() 281 * db_mapsize: number of blocks in aggregate (covered by map); in jfs_extendfs()
|
/openbmc/linux/security/integrity/ima/ |
H A D | ima_init.c | 23 /* name for boot aggregate entry */ 27 /* Add the boot aggregate to the IMA measurement list and extend 30 * Calculate the boot aggregate, a hash over tpm registers 0-7, 32 * exist. Add the boot aggregate measurement to the measurement 36 * not hardware based by invalidating the aggregate PCR value. 37 * (The aggregate PCR value is invalidated by adding one value to 38 * the measurement list and extending the aggregate PCR value with 40 * list and extend the aggregate PCR value with ff...ff's. 66 * calculating the boot aggregate digest. Preference is given to in ima_add_boot_aggregate() 141 rc = ima_add_boot_aggregate(); /* boot aggregate must be first entry */ in ima_init()
|
/openbmc/linux/drivers/base/ |
H A D | component.c | 17 * including their bound drivers, into an aggregate driver. Various subsystems 21 * helper fills the niche of aggregate drivers for specific hardware, where 33 * Aggregate drivers first assemble a component match list of what they need 34 * using component_match_add(). This is then registered as an aggregate driver 221 * Try to bring up an aggregate device. If component is NULL, we're interested 222 * in this aggregate device, otherwise it's a component which must be present 223 * to try and bring up the aggregate device. 427 * @parent: parent device of the aggregate driver 434 * aggregate driver needs to function. The list of component matches pointed to 457 * @parent: parent device of the aggregate driver [all …]
|
/openbmc/linux/net/sched/ |
H A D | sch_qfq.c | 41 classes. Each aggregate is timestamped with a virtual start time S 44 time function V. The classes within each aggregate are instead 97 * Shifts used for aggregate<->group mapping. We allow class weights that are 98 * in the range [1, 2^MAX_WSHIFT], and we try to map each aggregate i to the 100 * for the classes in the aggregate. 118 #define QFQ_MAX_AGG_CLASSES 8 /* max num classes per aggregate allowed */ 138 struct qfq_aggregate *agg; /* Parent aggregate. */ 153 u32 class_weight; /* Weight of each class in this aggregate. */ 154 /* Max pkt size for the classes in this aggregate, DRR quantum. */ 158 u32 budgetmax; /* Max budget for this aggregate. */ [all …]
|
/openbmc/linux/drivers/interconnect/qcom/ |
H A D | icc-rpmh.c | 41 * qcom_icc_aggregate - aggregate bw for buckets indicated by tag 42 * @node: node to aggregate 43 * @tag: tag to indicate which buckets to aggregate 44 * @avg_bw: new bw to sum aggregate 45 * @peak_bw: new bw to max aggregate 46 * @agg_avg: existing aggregate avg bw val 47 * @agg_peak: existing aggregate peak bw val 194 provider->aggregate = qcom_icc_aggregate; in qcom_icc_rpmh_probe()
|
H A D | icc-rpm.c | 247 * qcom_icc_pre_bw_aggregate - cleans up values before re-aggregate requests 263 * qcom_icc_bw_aggregate - aggregate bw for buckets indicated by tag 264 * @node: node to aggregate 265 * @tag: tag to indicate which buckets to aggregate 266 * @avg_bw: new bw to sum aggregate 267 * @peak_bw: new bw to max aggregate 268 * @agg_avg: existing aggregate avg bw val 269 * @agg_peak: existing aggregate peak bw val 307 * Iterate nodes on the provider, aggregate bandwidth requests for in qcom_icc_bus_aggregate() 506 provider->aggregate = qcom_icc_bw_aggregate; in qnoc_probe()
|
/openbmc/linux/tools/perf/Documentation/ |
H A D | perf-stat.txt | 99 Use BPF programs to aggregate readings from perf_events. This 156 Do not aggregate counts across all monitored CPUs. 298 Aggregate counts per processor socket for system-wide mode measurements. This 305 Aggregate counts per processor die for system-wide mode measurements. This 312 Aggregate counts per cache instance for system-wide mode measurements. By 316 Using option "--per-cache=l3" or "--per-cache=L3" will aggregate the 320 Aggregate counts per physical processor for system-wide mode measurements. This 326 Aggregate counts per monitored threads, when monitoring threads (-t option) 330 Aggregate counts per NUMA nodes for system-wide mode measurements. This 394 Aggregate counts per processor socket for system-wide mode measurements. [all …]
|
/openbmc/openbmc/poky/meta/files/common-licenses/ |
H A D | OCLC-2.0 | 30 … WORK OR AN AGGREGATE WORK; OR (B) THE RESULTS OF ANY PROJECT UNDERTAKEN USING THE PROGRAM, ANY MO… 49 …Aggregate Work" is when the Program exists, without integration, with other programs on a storage …
|
/openbmc/openbmc/poky/scripts/lib/ |
H A D | buildstats.py | 161 def aggregate(self, bsrecipe): member in BSRecipe 162 """Aggregate data of another recipe buildstats""" 164 raise ValueError("Refusing to aggregate buildstats, recipe version " 167 raise ValueError("Refusing to aggregate buildstats, set of tasks " 277 def aggregate(self, buildstats): member in BuildStats 278 """Aggregate other buildstats into this""" 280 raise ValueError("Refusing to aggregate buildstats, set of " 283 self[pkg].aggregate(data)
|
/openbmc/bmcweb/ |
H A D | AGGREGATION.md | 45 - Can only aggregate a single satellite BMC 64 aggregate that collection since some of the schemas can be very large and their 68 Similarly, we do not aggregate any satellite `$metadata` which is available at 183 3. Aggregate more than one satellite BMC
|
/openbmc/linux/include/uapi/linux/ |
H A D | if_link.h | 98 * Part of aggregate "frame" errors in `/proc/net/dev`. 118 * Part of aggregate "frame" errors in `/proc/net/dev`. 127 * Part of aggregate "frame" errors in `/proc/net/dev`. 134 * Part of aggregate "frame" errors in `/proc/net/dev`. 164 * Part of aggregate "carrier" errors in `/proc/net/dev`. 175 * Part of aggregate "carrier" errors in `/proc/net/dev`. 185 * Part of aggregate "carrier" errors in `/proc/net/dev`. 189 * Part of aggregate "carrier" errors in `/proc/net/dev`. 197 * Part of aggregate "carrier" errors in `/proc/net/dev`.
|
/openbmc/linux/tools/include/uapi/linux/ |
H A D | if_link.h | 98 * Part of aggregate "frame" errors in `/proc/net/dev`. 118 * Part of aggregate "frame" errors in `/proc/net/dev`. 127 * Part of aggregate "frame" errors in `/proc/net/dev`. 134 * Part of aggregate "frame" errors in `/proc/net/dev`. 164 * Part of aggregate "carrier" errors in `/proc/net/dev`. 175 * Part of aggregate "carrier" errors in `/proc/net/dev`. 185 * Part of aggregate "carrier" errors in `/proc/net/dev`. 189 * Part of aggregate "carrier" errors in `/proc/net/dev`. 197 * Part of aggregate "carrier" errors in `/proc/net/dev`.
|