Home
last modified time | relevance | path

Searched full:storage (Results 1 – 25 of 2388) sorted by relevance

12345678910>>...96

/openbmc/libbej/test/json/
H A Dstorage_large.json2 "@odata.type": "#Storage.v1_3_0.Storage",
3 "@odata.context": "/redfish/v1/$metadata#Storage.Storage",
4 "@odata.id": "/redfish/v1/Systems/1/Storage/1",
15 "@odata.id": "/redfish/v1/Systems/1/Storage/1#/StorageControllers/0",
16 "@odata.type": "#Storage.v1_3_0.StorageController",
41 "@odata.id": "/redfish/v1/Systems/1/Storage/1/Drives/1"
44 "@odata.id": "/redfish/v1/Systems/1/Storage/1/Drives/2"
47 "@odata.id": "/redfish/v1/Systems/1/Storage/1/Drives/3"
50 "@odata.id": "/redfish/v1/Systems/1/Storage/1/Drives/4"
53 "@odata.id": "/redfish/v1/Systems/1/Storage/1/Drives/5"
[all …]
/openbmc/bmcweb/redfish-core/schema/dmtf/installed/
H A DStorage_v1.xml4 <!--# Redfish Schema: Storage v1.17.1 …
8 <!--# Copyright 2014-2024 DMTF in cooperation with the Storage Networking Industry Association (SNI…
103 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Storage">
107 <EntityType Name="Storage" BaseType="Resource.v1_0_0.Resource" Abstract="true">
108 …The `Storage` schema defines a storage subsystem and its respective properties. A storage subsyst…
109 …<Annotation Term="OData.LongDescription" String="This resource shall represent a storage subsystem…
118 …iption" String="Writable properties, such as `AssetTag`, can be updated for a storage subsystem."/>
128 <String>/redfish/v1/Storage/{StorageId}</String>
129 <String>/redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}</String>
130 …<String>/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}</Strin…
[all …]
/openbmc/bmcweb/redfish-core/schema/dmtf/csdl/
H A DStorage_v1.xml4 <!--# Redfish Schema: Storage v1.17.1 …
8 <!--# Copyright 2014-2024 DMTF in cooperation with the Storage Networking Industry Association (SNI…
103 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Storage">
107 <EntityType Name="Storage" BaseType="Resource.v1_0_0.Resource" Abstract="true">
108 …The `Storage` schema defines a storage subsystem and its respective properties. A storage subsyst…
109 …<Annotation Term="OData.LongDescription" String="This resource shall represent a storage subsystem…
118 …iption" String="Writable properties, such as `AssetTag`, can be updated for a storage subsystem."/>
128 <String>/redfish/v1/Storage/{StorageId}</String>
129 <String>/redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}</String>
130 …<String>/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}</Strin…
[all …]
/openbmc/linux/kernel/bpf/
H A Dlocal_storage.c78 struct bpf_cgroup_storage *storage; in cgroup_storage_lookup() local
80 storage = container_of(node, struct bpf_cgroup_storage, node); in cgroup_storage_lookup()
82 switch (bpf_cgroup_storage_key_cmp(map, key, &storage->key)) { in cgroup_storage_lookup()
92 return storage; in cgroup_storage_lookup()
103 struct bpf_cgroup_storage *storage) in cgroup_storage_insert() argument
114 switch (bpf_cgroup_storage_key_cmp(map, &storage->key, &this->key)) { in cgroup_storage_insert()
126 rb_link_node(&storage->node, parent, new); in cgroup_storage_insert()
127 rb_insert_color(&storage->node, root); in cgroup_storage_insert()
135 struct bpf_cgroup_storage *storage; in cgroup_storage_lookup_elem() local
137 storage = cgroup_storage_lookup(map, key, false); in cgroup_storage_lookup_elem()
[all …]
/openbmc/linux/tools/testing/selftests/bpf/progs/
H A Dlocal_storage.c66 struct local_storage *storage; in BPF_PROG() local
79 storage = bpf_task_storage_get(&task_storage_map, task, 0, 0); in BPF_PROG()
80 if (!storage) in BPF_PROG()
84 is_self_unlink = storage->exec_inode == victim->d_inode; in BPF_PROG()
86 storage = bpf_task_storage_get(&task_storage_map2, task, 0, in BPF_PROG()
88 if (!storage || storage->value) in BPF_PROG()
94 /* Ensure that the task_storage_map is disconnected from the storage. in BPF_PROG()
95 * The storage memory should not be freed back to the in BPF_PROG()
112 struct local_storage *storage; in BPF_PROG() local
122 storage = bpf_inode_storage_get(&inode_storage_map, old_dentry->d_inode, in BPF_PROG()
[all …]
H A Dmptcp_sock.c31 struct mptcp_storage *storage; in _sockops() local
51 storage = bpf_sk_storage_get(&socket_storage_map, sk, 0, in _sockops()
53 if (!storage) in _sockops()
56 storage->token = 0; in _sockops()
57 __builtin_memset(storage->ca_name, 0, TCP_CA_NAME_MAX); in _sockops()
58 storage->first = NULL; in _sockops()
64 storage = bpf_sk_storage_get(&socket_storage_map, msk, 0, in _sockops()
66 if (!storage) in _sockops()
69 storage->token = msk->token; in _sockops()
70 __builtin_memcpy(storage->ca_name, msk->ca_name, TCP_CA_NAME_MAX); in _sockops()
[all …]
/openbmc/qemu/include/hw/
H A Dregisterfields.h49 #define FIELD_EX8(storage, reg, field) \ argument
50 extract8((storage), R_ ## reg ## _ ## field ## _SHIFT, \
52 #define FIELD_EX16(storage, reg, field) \ argument
53 extract16((storage), R_ ## reg ## _ ## field ## _SHIFT, \
55 #define FIELD_EX32(storage, reg, field) \ argument
56 extract32((storage), R_ ## reg ## _ ## field ## _SHIFT, \
58 #define FIELD_EX64(storage, reg, field) \ argument
59 extract64((storage), R_ ## reg ## _ ## field ## _SHIFT, \
62 #define FIELD_SEX8(storage, reg, field) \ argument
63 sextract8((storage), R_ ## reg ## _ ## field ## _SHIFT, \
[all …]
/openbmc/linux/Documentation/bpf/
H A Dmap_sk_storage.rst11 ``BPF_MAP_TYPE_SK_STORAGE`` is used to provide socket-local storage for BPF
12 programs. A map of type ``BPF_MAP_TYPE_SK_STORAGE`` declares the type of storage
14 storage. The values for maps of type ``BPF_MAP_TYPE_SK_STORAGE`` are stored
16 allocating storage for a socket when requested and for freeing the storage when
22 socket-local storage.
37 Socket-local storage for ``map`` can be retrieved from socket ``sk`` using the
39 flag is used then ``bpf_sk_storage_get()`` will create the storage for ``sk``
41 ``BPF_LOCAL_STORAGE_GET_F_CREATE`` to initialize the storage value, otherwise
42 it will be zero initialized. Returns a pointer to the storage on success, or
56 Socket-local storage for ``map`` can be deleted from socket ``sk`` using the
[all …]
H A Dmap_cgroup_storage.rst9 storage. It is only available with ``CONFIG_CGROUP_BPF``, and to programs that
11 storage is identified by the cgroup the program is attached to.
13 The map provide a local storage at the cgroup that the BPF program is attached
38 map will share the same storage. Otherwise, if the type is
42 To access the storage in a program, use ``bpf_get_local_storage``::
51 ``struct bpf_spin_lock`` to synchronize the storage. See
128 storage. The non-per-CPU will have the same memory region for each storage.
130 Prior to Linux 5.9, the lifetime of a storage is precisely per-attachment, and
133 multiple attach types, and each attach creates a fresh zeroed storage. The
134 storage is freed upon detach.
[all …]
H A Dmap_cgrp_storage.rst9 storage for cgroups. It is only available with ``CONFIG_CGROUPS``.
21 To access the storage in a program, use ``bpf_cgrp_storage_get``::
26 a new local storage will be created if one does not exist.
28 The local storage can be removed with ``bpf_cgrp_storage_delete``::
81 The old cgroup storage map ``BPF_MAP_TYPE_CGROUP_STORAGE`` has been marked as
91 (2). ``BPF_MAP_TYPE_CGRP_STORAGE`` supports local storage for more than one
95 (3). ``BPF_MAP_TYPE_CGROUP_STORAGE_DEPRECATED`` allocates local storage at attach time so
96 ``bpf_get_local_storage()`` always returns non-NULL local storage.
97 ``BPF_MAP_TYPE_CGRP_STORAGE`` allocates local storage at runtime so
98 it is possible that ``bpf_cgrp_storage_get()`` may return null local storage.
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-dbs/mysql/mariadb/
H A D0001-Add-missing-includes-cstdint-and-cstdio.patch15 storage/rocksdb/rocksdb/include/rocksdb/utilities/checkpoint.h | 1 +
17 storage/rocksdb/rocksdb/util/slice.cc | 1 +
18 storage/rocksdb/rocksdb/util/string_util.h | 1 +
21 diff --git a/storage/rocksdb/rocksdb/db/compaction/compaction_iteration_stats.h b/storage/rocksdb/r…
23 --- a/storage/rocksdb/rocksdb/db/compaction/compaction_iteration_stats.h
24 +++ b/storage/rocksdb/rocksdb/db/compaction/compaction_iteration_stats.h
33 diff --git a/storage/rocksdb/rocksdb/include/rocksdb/utilities/checkpoint.h b/storage/rocksdb/rocks…
35 --- a/storage/rocksdb/rocksdb/include/rocksdb/utilities/checkpoint.h
36 +++ b/storage/rocksdb/rocksdb/include/rocksdb/utilities/checkpoint.h
45 diff --git a/storage/rocksdb/rocksdb/table/block_based/data_block_hash_index.h b/storage/rocksdb/ro…
[all …]
/openbmc/bmcweb/redfish-core/schema/dmtf/json-schema/
H A DStorage.v1_17_1.json2 "$id": "http://redfish.dmtf.org/schemas/v1/Storage.v1_17_1.json",
3 "$ref": "#/definitions/Storage",
26 "#Storage.RekeyExternalKey": {
29 "#Storage.ResetToDefaults": {
32 "#Storage.SetControllerPassword": {
35 "#Storage.SetEncryptionKey": {
63 …"description": "This type describes the cache memory of the storage controller in general detail.",
64 …on": "This type shall contain properties that describe the cache memory for a storage controller.",
140 …re locked. This value is used for status reporting to indicate that the storage subsystem is part…
159 "Disabled": "Encryption is disabled on the storage subsystem.",
[all …]
H A DStorageController.v1_8_0.json24 … "description": "The ANA characteristics and volume information for a storage controller.",
25 …"This type shall contain the ANA characteristics and volume information for a storage controller.",
126 … of links to resources of type `Volume` that are attached to this instance of storage controller.",
145 …"description": "This action attaches referenced namespaces to the storage controller. Attached na…
146 …"longDescription": "This action shall attach referenced namespaces to the storage controller. Ser…
149 "description": "The namespaces to attach to the storage controller.",
153 … to resources of type `Volume` that represent the namespaces to attach to the storage controller.",
188 …"description": "This type describes the cache memory of the storage controller in general detail.",
189 …on": "This type shall contain properties that describe the cache memory for a storage controller.",
243 …"description": "This action detaches referenced namespaces from the storage controller. Detached …
[all …]
H A DSimpleStorage.v1_3_2.json37 "description": "A storage device, such as a disk drive or optical media device.",
38 … "longDescription": "This type shall describe a storage device visible to simple storage.",
55 "description": "The size, in bytes, of the storage device.",
56 … "longDescription": "This property shall represent the size, in bytes, of the storage device.",
68 …gDescription": "This property shall indicate the name of the manufacturer of this storage device.",
77 …erty shall indicate the model information as provided by the manufacturer of this storage device.",
127 "description": "The link to the chassis that contains this simple storage.",
137 "Storage": { object
138 "$ref": "http://redfish.dmtf.org/schemas/v1/Storage.json#/definitions/Storage",
139 … "description": "The link to the storage instance that corresponds to this simple storage.",
[all …]
H A DVolumeCollection.json5 …"copyright": "Copyright 2015-2024 Storage Networking Industry Association (SNIA), USA. All rights …
93 … "/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Volumes",
94 …itionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Volum…
95 "/redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Volumes",
96 …"/redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Volum…
97 "/redfish/v1/Storage/{StorageId}/ConsistencyGroups/{ConsistencyGroupId}/Volumes",
98 …"/redfish/v1/Storage/{StorageId}/FileSystems/{FileSystemId}/CapacitySources/{CapacitySourceId}/Pro…
99 "/redfish/v1/Storage/{StorageId}/StoragePools/{StoragePoolId}/AllocatedVolumes",
100 …"/redfish/v1/Storage/{StorageId}/StoragePools/{StoragePoolId}/CapacitySources/{CapacitySourceId}/P…
101 "/redfish/v1/Storage/{StorageId}/Volumes",
[all …]
/openbmc/bmcweb/redfish-core/schema/dmtf/json-schema-installed/
H A DStorage.v1_17_1.json2 "$id": "http://redfish.dmtf.org/schemas/v1/Storage.v1_17_1.json",
3 "$ref": "#/definitions/Storage",
26 "#Storage.RekeyExternalKey": {
29 "#Storage.ResetToDefaults": {
32 "#Storage.SetControllerPassword": {
35 "#Storage.SetEncryptionKey": {
63 …"description": "This type describes the cache memory of the storage controller in general detail.",
64 …on": "This type shall contain properties that describe the cache memory for a storage controller.",
140 …re locked. This value is used for status reporting to indicate that the storage subsystem is part…
159 "Disabled": "Encryption is disabled on the storage subsystem.",
[all …]
H A DStorageController.v1_8_0.json24 … "description": "The ANA characteristics and volume information for a storage controller.",
25 …"This type shall contain the ANA characteristics and volume information for a storage controller.",
126 … of links to resources of type `Volume` that are attached to this instance of storage controller.",
145 …"description": "This action attaches referenced namespaces to the storage controller. Attached na…
146 …"longDescription": "This action shall attach referenced namespaces to the storage controller. Ser…
149 "description": "The namespaces to attach to the storage controller.",
153 … to resources of type `Volume` that represent the namespaces to attach to the storage controller.",
188 …"description": "This type describes the cache memory of the storage controller in general detail.",
189 …on": "This type shall contain properties that describe the cache memory for a storage controller.",
243 …"description": "This action detaches referenced namespaces from the storage controller. Detached …
[all …]
/openbmc/qemu/include/hw/s390x/
H A Dstorage-keys.h2 * s390 storage key device
35 * Check whether storage keys are enabled. If not enabled, they were not
36 * enabled lazily either by the guest via a storage key instruction or
41 * storage keys and should not lazily enable it.
52 * Lazily enable storage keys. If this function is not implemented,
53 * setting a storage key will lazily enable storage keys implicitly
55 * if storage keys were not enabled before this call.
67 * Get storage keys for the given PFN range. This call will fail if
68 * storage keys have not been lazily enabled yet.
73 * @start_gfn: the start GFN to get storage keys for
[all …]
/openbmc/linux/kernel/
H A Dstacktrace.c20 * @entries: Pointer to storage array
21 * @nr_entries: Number of entries in the storage array
41 * @entries: Pointer to storage array
42 * @nr_entries: Number of entries in the storage array
105 * stack_trace_save - Save a stack trace into a storage array
106 * @store: Pointer to storage array
107 * @size: Size of the storage array
128 * stack_trace_save_tsk - Save a task stack trace into a storage array
130 * @store: Pointer to storage array
131 * @size: Size of the storage array
[all …]
/openbmc/bmcweb/redfish-core/include/registries/
H A Dstorage_device_message_registry.hpp26 "Storage Device Message Registry",
28 "This registry defines the messages for storage devices.",
88 "A storage controller degraded condition was detected.",
89 …"A degraded condition for the storage controller located in '%1' was detected due to reason '%2'.",
96 …"Reseat the storage controller in the PCI slot. Update the controller to the latest firmware vers…
101 "A storage controller failure was detected.",
102 "A failure condition for the storage controller located in '%1' was detected.",
108 …"Reseat the storage controller in the PCI slot. Update the controller to the latest firmware vers…
113 "The storage controller health has changed to OK.",
114 "The health of the storage controller located in '%1' has changed to OK.",
[all …]
/openbmc/linux/Documentation/usb/
H A Dmass-storage.rst2 Mass Storage Gadget (MSG)
8 Mass Storage Gadget (or MSG) acts as a USB Mass Storage device,
10 multiple logical units (LUNs). Backing storage for each LUN is
27 relation to mass storage function (or MSF) and different gadgets
28 using it, and how it differs from File Storage Gadget (or FSG)
35 The mass storage gadget accepts the following mass storage specific
41 backing storage for each logical unit. There may be at most
45 *BEWARE* that if a file is used as a backing storage, it may not
75 true. This has been changed to better match File Storage Gadget
110 MS Windows mounts removable storage in “Removal optimised mode” by
[all …]
/openbmc/qemu/docs/specs/
H A Dacpi_erst.rst6 storing error records in persistent storage for future reference
11 method for storing error records into persistent storage.
28 Linux uses the persistent storage filesystem, pstore, to record
35 Two common storage backends for the pstore filesystem are ACPI ERST
38 storage backend for virtual machines (as it is now for bare metal
65 - size: The size of the ACPI ERST backing storage. This parameter is
67 - mem-path: The location of the ACPI ERST backing storage file. This
76 backend storage. Must be a power of two value greater than or
98 Backend Storage Format
101 The backend storage is divided into fixed size "slots", 8KiB in
[all …]
/openbmc/phosphor-dbus-interfaces/yaml/xyz/openbmc_project/Metric/
H A DValue.interface.yaml96 - name: Storage
98 The different types of available storage, such as tmp, var etc.
99 Each storage type will have path relative to storage/, for
100 example storage/tmp for temporary storage.
101 value: storage
104 The available read write storage. This storage path has been
106 and free storage metric gets exposed via Redfish.
107 value: storage/rw
/openbmc/linux/drivers/platform/x86/intel/uncore-frequency/
H A Duncore-frequency-common.h28 * @uncore_attr_group: Attribute group storage
29 * @max_freq_khz_kobj_attr: Storage for kobject attribute max_freq_khz
30 * @mix_freq_khz_kobj_attr: Storage for kobject attribute min_freq_khz
31 * @initial_max_freq_khz_kobj_attr: Storage for kobject attribute initial_max_freq_khz
32 * @initial_min_freq_khz_kobj_attr: Storage for kobject attribute initial_min_freq_khz
33 * @current_freq_khz_kobj_attr: Storage for kobject attribute current_freq_khz
34 * @domain_id_kobj_attr: Storage for kobject attribute domain_id
35 * @fabric_cluster_id_kobj_attr: Storage for kobject attribute fabric_cluster_id
36 * @package_id_kobj_attr: Storage for kobject attribute package_id
37 * @uncore_attrs: Attribute storage for group creation
/openbmc/linux/tools/testing/selftests/bpf/
H A Dtest_cgroup_storage.c15 #define TEST_CGROUP "/test-bpf-cgroup-storage-buf/"
90 printf("Failed to get the first key in cgroup storage\n"); in main()
95 printf("Failed to lookup cgroup storage 0\n"); in main()
103 printf("Failed to update the data in the cgroup storage\n"); in main()
112 /* Check the counter in the cgroup local storage */ in main()
114 printf("Failed to lookup cgroup storage\n"); in main()
119 printf("Unexpected data in the cgroup storage: %llu\n", value); in main()
123 /* Bump the counter in the cgroup local storage */ in main()
126 printf("Failed to update the data in the cgroup storage\n"); in main()
135 /* Check the final value of the counter in the cgroup local storage */ in main()
[all …]

12345678910>>...96