Home
last modified time | relevance | path

Searched full:aggregate (Results 1 – 25 of 211) sorted by relevance

123456789

/linux/include/linux/
H A Dcomponent.h20 * 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 Dinterconnect-provider.h49 * @aggregate: pointer to device specific aggregate operation function
64 int (*aggregate)(struct icc_node *node, u32 tag, u32 avg_bw, member
/linux/fs/jfs/
H A Djfs_mount.c9 * 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 Djfs_superblock.h20 * 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 Djfs_dmap.h45 #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 Djfs_umount.c9 * 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 Djfs_incore.h161 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 Dresize.c128 * 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()
/linux/drivers/base/
H A Dcomponent.c17 * 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 …]
/linux/drivers/acpi/
H A Dplatform_profile.c29 unsigned long aggregate[BITS_TO_LONGS(PLATFORM_PROFILE_LAST)]; member
246 * _aggregate_choices - Aggregate the available profile choices
261 if (test_bit(PLATFORM_PROFILE_LAST, data->aggregate)) in _aggregate_choices()
262 bitmap_copy(data->aggregate, tmp, PLATFORM_PROFILE_LAST); in _aggregate_choices()
264 bitmap_and(data->aggregate, tmp, data->aggregate, PLATFORM_PROFILE_LAST); in _aggregate_choices()
271 * _remove_hidden_choices - Remove hidden choices from aggregate data
284 bitmap_andnot(data->aggregate, handler->choices, in _remove_hidden_choices()
303 .aggregate = { [0 ... BITS_TO_LONGS(PLATFORM_PROFILE_LAST) - 1] = ~0UL }, in platform_profile_choices_show()
308 set_bit(PLATFORM_PROFILE_LAST, data.aggregate); in platform_profile_choices_show()
323 if (bitmap_empty(data.aggregate, PLATFORM_PROFILE_LAST)) in platform_profile_choices_show()
[all …]
/linux/tools/perf/Documentation/
H A Dperf-stat.txt99 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 processor cluster for system-wide mode measurement. This
320 Aggregate counts per cache instance for system-wide mode measurements. By
324 Using option "--per-cache=l3" or "--per-cache=L3" will aggregate the
328 Aggregate counts per physical processor for system-wide mode measurements. This
334 Aggregate counts per monitored threads, when monitoring threads (-t option)
338 Aggregate counts per NUMA nodes for system-wide mode measurements. This
[all …]
/linux/drivers/interconnect/qcom/
H A Dicc-rpm.c247 * 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
333 * Iterate nodes on the provider, aggregate bandwidth requests for in qcom_icc_bus_aggregate()
553 provider->aggregate = qcom_icc_bw_aggregate; in qnoc_probe()
H A Dicc-rpm.h101 * @sum_avg: current sum aggregate value of all avg bw requests
102 * @max_peak: current max aggregate value of all peak bw requests
/linux/drivers/interconnect/mediatek/
H A Dicc-emi.h16 * @sum_avg: Current sum aggregate value of all average bw requests in kBps
17 * @max_peak: Current max aggregate value of all peak bw requests in kBps
/linux/LICENSES/deprecated/
H A DGFDL-1.2324 distribution medium, is called an "aggregate" if the copyright
327 When the Document is included in an aggregate, this License does not
328 apply to the other works in the aggregate which are not themselves
333 the entire aggregate, the Document's Cover Texts may be placed on
334 covers that bracket the Document within the aggregate, or the
337 aggregate.
H A DGFDL-1.1299 compilation. Such a compilation is called an "aggregate", and this
306 of the entire aggregate, the Document's Cover Texts may be placed on
307 covers that surround only the Document within the aggregate.
308 Otherwise they must appear on covers around the whole aggregate.
/linux/Documentation/admin-guide/gpio/
H A Dgpio-aggregator.rst6 The GPIO Aggregator provides a mechanism to aggregate GPIOs, and expose them as
33 aggregate to the "new_device" file, using the format
/linux/drivers/firewire/
H A Duapi-test.c15 // 4 bytes alignment for aggregate type including 8 bytes storage types. in structure_layout_event_response()
18 // 8 bytes alignment for aggregate type including 8 bytes storage types. in structure_layout_event_response()
/linux/Documentation/power/
H A Dpm_qos_interface.rst44 Will remove the element. After removal it will update the aggregate target
97 The PM QoS flags aggregate value is a gather (bitwise OR) of all list elements'
119 Will remove the element. After removal it will update the aggregate target
/linux/Documentation/sound/cards/
H A Dserial-u16550.rst65 Out for each byte, so the aggregate data rate across all four MIDI Outs is
76 the MIDI Outs to act independently at double the aggregate throughput of M/B,
/linux/Documentation/devicetree/bindings/pci/
H A Dqcom,pcie-sc8280xp.yaml50 - const: noc_aggr_4 # NoC aggregate 4 clock
51 - const: noc_aggr_south_sf # NoC aggregate South SF clock
/linux/Documentation/driver-api/
H A Dcomponent.rst4 Component Helper for Aggregate Drivers
/linux/arch/arm/crypto/
H A Dghash-ce-core.S196 .macro ghash_update, pn, enc, aggregate=1, head=1 argument
210 .if \aggregate
606 ghash_update p64, aggregate=0, head=0
663 ghash_update p64, aggregate=0, head=0
/linux/Documentation/userspace-api/media/
H A Dfdl-appendix.rst375 is called an "aggregate", and this License does not apply to the other
381 the entire aggregate, the Document's Cover Texts may be placed on covers
382 that surround only the Document within the aggregate. Otherwise they
383 must appear on covers around the whole aggregate.
/linux/security/integrity/ima/
H A DKconfig26 an aggregate integrity value over this list inside the
53 that IMA uses to maintain the integrity aggregate of the

123456789