/openbmc/linux/fs/afs/ |
H A D | volume.c | 2 /* AFS volume management 15 * Insert a volume into a cell. If there's an existing volume record, that is 19 struct afs_volume *volume) in afs_insert_volume_into_cell() argument 30 if (p->vid < volume->vid) { in afs_insert_volume_into_cell() 32 } else if (p->vid > volume->vid) { in afs_insert_volume_into_cell() 36 volume = p; in afs_insert_volume_into_cell() 40 set_bit(AFS_VOLUME_RM_TREE, &volume->flags); in afs_insert_volume_into_cell() 41 rb_replace_node_rcu(&p->cell_node, &volume->cell_node, &cell->volumes); in afs_insert_volume_into_cell() 45 rb_link_node_rcu(&volume->cell_node, parent, pp); in afs_insert_volume_into_cell() 46 rb_insert_color(&volume->cell_node, &cell->volumes); in afs_insert_volume_into_cell() [all …]
|
H A D | afs.h | 14 #define AFS_MAXVOLNAME 64 /* Maximum length of a volume name */ 15 #define AFS_MAXNSERVERS 8 /* Maximum servers in a basic volume record */ 16 #define AFS_NMAXNSERVERS 13 /* Maximum servers in a N/U-class volume record */ 17 #define AFS_MAXTYPES 3 /* Maximum number of volume types */ 30 AFSVL_RWVOL, /* read/write volume */ 31 AFSVL_ROVOL, /* read-only volume */ 32 AFSVL_BACKVOL, /* backup volume */ 53 afs_volid_t vid; /* volume ID */ 54 afs_vnodeid_t vnode; /* Lower 64-bits of file index within volume */ 92 * AFS volume information [all …]
|
H A D | afs_fs.h | 29 FSGETVOLUMEINFO = 148, /* AFS Get information about a volume */ 30 FSGETVOLUMESTATUS = 149, /* AFS Get volume status information */ 31 FSGETROOTVOLUME = 151, /* AFS Get root volume name */ 46 VSALVAGE = 101, /* volume needs salvaging */ 48 VNOVOL = 103, /* no such volume or volume unavailable */ 49 VVOLEXISTS = 104, /* volume name already exists */ 50 VNOSERVICE = 105, /* volume not currently in service */ 51 VOFFLINE = 106, /* volume is currently offline (more info available [VVL-spec]) */ 52 VONLINE = 107, /* volume is already online */ 54 VOVERQUOTA = 109, /* volume's maximum quota exceeded */ [all …]
|
H A D | super.c | 159 struct afs_volume *volume = as->volume; in afs_show_devname() local 169 switch (volume->type) { in afs_show_devname() 174 if (volume->type_force) in afs_show_devname() 183 seq_printf(m, "%c%s:%s%s", pref, cell->name, volume->name, suf); in afs_show_devname() 213 * Parse the source name to get cell name, volume name, volume type and R/W 217 * "%[cell:]volume[.]" R/W volume 218 * "#[cell:]volume[.]" R/O or R/W volume (R/O parent), 219 * or R/W (R/W parent) volume 220 * "%[cell:]volume.readonly" R/O volume 221 * "#[cell:]volume.readonly" R/O volume [all …]
|
/openbmc/linux/fs/fscache/ |
H A D | volume.c | 2 /* Volume-level cache cookie handling. 20 struct fscache_volume *fscache_get_volume(struct fscache_volume *volume, in fscache_get_volume() argument 25 __refcount_inc(&volume->ref, &ref); in fscache_get_volume() 26 trace_fscache_volume(volume->debug_id, ref + 1, where); in fscache_get_volume() 27 return volume; in fscache_get_volume() 30 struct fscache_volume *fscache_try_get_volume(struct fscache_volume *volume, in fscache_try_get_volume() argument 35 if (!__refcount_inc_not_zero(&volume->ref, &ref)) in fscache_try_get_volume() 38 trace_fscache_volume(volume->debug_id, ref + 1, where); in fscache_try_get_volume() 39 return volume; in fscache_try_get_volume() 43 static void fscache_see_volume(struct fscache_volume *volume, in fscache_see_volume() argument [all …]
|
/openbmc/linux/fs/cachefiles/ |
H A D | volume.c | 2 /* Volume handling. 14 * Allocate and set up a volume representation. We make sure all the fanout 19 struct cachefiles_volume *volume; in cachefiles_acquire_volume() local 30 volume = kzalloc(sizeof(struct cachefiles_volume), GFP_KERNEL); in cachefiles_acquire_volume() 31 if (!volume) in cachefiles_acquire_volume() 33 volume->vcookie = vcookie; in cachefiles_acquire_volume() 34 volume->cache = cache; in cachefiles_acquire_volume() 35 INIT_LIST_HEAD(&volume->cache_link); in cachefiles_acquire_volume() 51 volume->dentry = vdentry; in cachefiles_acquire_volume() 54 if (!cachefiles_set_volume_xattr(volume)) in cachefiles_acquire_volume() [all …]
|
/openbmc/bmcweb/redfish-core/schema/dmtf/csdl/ |
H A D | Volume_v1.xml | 90 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Volume"> 92 <EntityType Name="Volume" BaseType="Resource.v1_0_0.Resource" Abstract="true"> 93 …<Annotation Term="OData.Description" String="Volume contains properties used to describe a volume,… 94 …Data.LongDescription" String="This resource shall be used to represent a volume, virtual disk, log… 109 …otation Term="OData.Description" String="Volumes can be deleted by deleting the Volume resource."/> 141 …String="This action is used to prepare the contents of the volume for use by the system. If Initia… 145 <Parameter Name="Volume" Type="Volume.v1_0_0.Actions"/> 146 <Parameter Name="InitializeMethod" Type="Volume.InitializeMethod"> 158 <Parameter Name="InitializeType" Type="Volume.InitializeType"> 167 <Parameter Name="Volume" Type="Volume.v1_0_0.Actions"/> [all …]
|
/openbmc/bmcweb/redfish-core/schema/dmtf/json-schema/ |
H A D | Volume.v1_10_0.json | 2 "$id": "http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.json", 3 "$ref": "#/definitions/Volume", 25 "description": "The ANA group id for this volume.", 26 "longDescription": "This shall contain the ANA group id for this volume.", 54 "#Volume.AssignReplicaTarget": { 57 "#Volume.ChangeRAIDLayout": { 60 "#Volume.CheckConsistency": { 63 "#Volume.CreateReplicaTarget": { 66 "#Volume.ForceEnable": { 69 "#Volume.Initialize": { [all …]
|
/openbmc/u-boot/doc/ |
H A D | README.ubi | 14 ubi info [l[ayout]] - Display volume and ubi layout information 15 ubi create[vol] volume [size] [type] - create volume name with size 16 ubi write[vol] address volume size - Write volume from address with size 17 ubi write.part address volume size [fullsize] 18 - Write part of a volume from address 19 ubi read[vol] address volume [size] - Read volume to address with size 20 ubi remove[vol] volume - Remove volume 22 volume: character name 77 ubi info Display volume and ubi layout information 78 ubi createvol Create UBI volume on UBI device [all …]
|
/openbmc/linux/include/linux/mtd/ |
H A D | ubi.h | 26 * enum ubi_open_mode - UBI volume open mode constants. 31 * UBI_METAONLY: modify only the volume meta-data, 32 * i.e. the data stored in the volume table, but not in any of volume LEBs. 42 * struct ubi_volume_info - UBI volume description data structure. 43 * @vol_id: volume ID 44 * @ubi_num: UBI device number this volume belongs to 45 * @size: how many physical eraseblocks are reserved for this volume 46 * @used_bytes: how many bytes of data this volume contains 47 * @used_ebs: how many physical eraseblocks of this volume actually contain any 49 * @vol_type: volume type (%UBI_DYNAMIC_VOLUME or %UBI_STATIC_VOLUME) [all …]
|
/openbmc/linux/drivers/mtd/ubi/ |
H A D | ubi-media.h | 30 /* Volume identifier header magic number (ASCII "UBI!") */ 34 * Volume type constants used in the volume identifier header. 36 * @UBI_VID_DYNAMIC: dynamic volume 37 * @UBI_VID_STATIC: static volume 45 * Volume flags used in the volume table record. 47 * @UBI_VTBL_AUTORESIZE_FLG: auto-resize this volume 48 * @UBI_VTBL_SKIP_CRC_CHECK_FLG: skip the CRC check done on a static volume at 54 * %UBI_VTBL_AUTORESIZE_FLG flag can be set only for one volume in the volume 55 * table. UBI automatically re-sizes the volume which has this flag and makes 56 * the volume to be of largest possible size. This means that if after the [all …]
|
H A D | vtbl.c | 10 * This file includes volume table manipulation code. The volume table is an 11 * on-flash table containing volume meta-data like name, number of reserved 12 * physical eraseblocks, type, etc. The volume table is stored in the so-called 13 * "layout volume". 15 * The layout volume is an internal volume which is organized as follows. It 17 * eraseblock stores one volume table copy, i.e. LEB 0 and LEB 1 duplicate each 18 * other. This redundancy guarantees robustness to unclean reboots. The volume 19 * table is basically an array of volume table records. Each record contains 20 * full information about the volume and protected by a CRC checksum. Note, 21 * nowadays we use the atomic LEB change operation when updating the volume [all …]
|
/openbmc/u-boot/drivers/mtd/ubi/ |
H A D | ubi-media.h | 33 /* Volume identifier header magic number (ASCII "UBI!") */ 37 * Volume type constants used in the volume identifier header. 39 * @UBI_VID_DYNAMIC: dynamic volume 40 * @UBI_VID_STATIC: static volume 48 * Volume flags used in the volume table record. 50 * @UBI_VTBL_AUTORESIZE_FLG: auto-resize this volume 52 * %UBI_VTBL_AUTORESIZE_FLG flag can be set only for one volume in the volume 53 * table. UBI automatically re-sizes the volume which has this flag and makes 54 * the volume to be of largest possible size. This means that if after the 56 * present on the device, it automatically appends all of them to the volume [all …]
|
H A D | vtbl.c | 10 * This file includes volume table manipulation code. The volume table is an 11 * on-flash table containing volume meta-data like name, number of reserved 12 * physical eraseblocks, type, etc. The volume table is stored in the so-called 13 * "layout volume". 15 * The layout volume is an internal volume which is organized as follows. It 17 * eraseblock stores one volume table copy, i.e. LEB 0 and LEB 1 duplicate each 18 * other. This redundancy guarantees robustness to unclean reboots. The volume 19 * table is basically an array of volume table records. Each record contains 20 * full information about the volume and protected by a CRC checksum. Note, 21 * nowadays we use the atomic LEB change operation when updating the volume [all …]
|
/openbmc/u-boot/include/linux/mtd/ |
H A D | ubi.h | 28 * enum ubi_open_mode - UBI volume open mode constants. 33 * UBI_METAONLY: modify only the volume meta-data, 34 * i.e. the data stored in the volume table, but not in any of volume LEBs. 44 * struct ubi_volume_info - UBI volume description data structure. 45 * @vol_id: volume ID 46 * @ubi_num: UBI device number this volume belongs to 47 * @size: how many physical eraseblocks are reserved for this volume 48 * @used_bytes: how many bytes of data this volume contains 49 * @used_ebs: how many physical eraseblocks of this volume actually contain any 51 * @vol_type: volume type (%UBI_DYNAMIC_VOLUME or %UBI_STATIC_VOLUME) [all …]
|
/openbmc/linux/sound/soc/codecs/ |
H A D | wm5100-tables.c | 872 { 0x0319, 0x0022 }, /* R793 - Input Volume Ramp */ 873 { 0x0320, 0x0180 }, /* R800 - ADC Digital Volume 1L */ 874 { 0x0321, 0x0180 }, /* R801 - ADC Digital Volume 1R */ 875 { 0x0322, 0x0180 }, /* R802 - ADC Digital Volume 2L */ 876 { 0x0323, 0x0180 }, /* R803 - ADC Digital Volume 2R */ 877 { 0x0324, 0x0180 }, /* R804 - ADC Digital Volume 3L */ 878 { 0x0325, 0x0180 }, /* R805 - ADC Digital Volume 3R */ 879 { 0x0326, 0x0180 }, /* R806 - ADC Digital Volume 4L */ 880 { 0x0327, 0x0180 }, /* R807 - ADC Digital Volume 4R */ 885 { 0x0410, 0x0080 }, /* R1040 - Out Volume 1L */ [all …]
|
H A D | cs42l73.c | 62 { 21, 0x00 }, /* r15 - MICA Preamp, PGA Volume */ 63 { 22, 0x00 }, /* r16 - MICB Preamp, PGA Volume */ 64 { 23, 0x00 }, /* r17 - Input Path A Digital Volume */ 65 { 24, 0x00 }, /* r18 - Input Path B Digital Volume */ 67 { 26, 0x00 }, /* r1A - HP/LO Left Digital Volume */ 68 { 27, 0x00 }, /* r1B - HP/LO Right Digital Volume */ 69 { 28, 0x00 }, /* r1C - Speakerphone Digital Volume */ 70 { 29, 0x00 }, /* r1D - Ear/SPKLO Digital Volume */ 71 { 30, 0x00 }, /* r1E - HP Left Analog Volume */ 72 { 31, 0x00 }, /* r1F - HP Right Analog Volume */ [all …]
|
/openbmc/linux/include/uapi/mtd/ |
H A D | ubi-user.h | 43 * UBI volume creation 50 * UBI volume deletion 53 * To delete a volume, the %UBI_IOCRMVOL ioctl command of the UBI character 54 * device should be used. A pointer to the 32-bit volume ID hast to be passed 57 * UBI volume re-size 60 * To re-size a volume, the %UBI_IOCRSVOL ioctl command of the UBI character 71 * UBI volume update 74 * Volume update should be done via the %UBI_IOCVOLUP ioctl command of the 75 * corresponding UBI volume character device. A pointer to a 64-bit update 77 * this number of bytes to the volume character device. The update is finished [all …]
|
/openbmc/u-boot/disk/ |
H A D | part_iso.h | 14 …unsigned char desctype; /* type of Volume descriptor: 0 = boot record, 1 = primary, 2 = Suppleme… 24 …unsigned char desctype; /* type of Volume descriptor: 0 = boot record, 1 = primary, 2 = Suppleme… 29 char volid[32]; /* volume Identifier */ 31 unsigned int volsiz_LE; /* volume size Little Endian */ 32 unsigned int volsiz_BE; /* volume size Big Endian */ 34 unsigned short setsize_LE; /* volume set size LE */ 35 unsigned short setsize_BE; /* volume set size BE */ 36 unsigned short seqnum_LE; /* volume sequence number LE */ 37 unsigned short seqnum_BE; /* volume sequence number BE */ 47 char volsetid[128];/* Volume set identifier */ [all …]
|
/openbmc/linux/drivers/mfd/ |
H A D | wm8997-tables.c | 248 { 0x00000309, 0x0022 }, /* R777 - Input Volume Ramp */ 250 { 0x00000311, 0x0180 }, /* R785 - ADC Digital Volume 1L */ 253 { 0x00000315, 0x0180 }, /* R789 - ADC Digital Volume 1R */ 256 { 0x00000319, 0x0180 }, /* R793 - ADC Digital Volume 2L */ 259 { 0x0000031D, 0x0180 }, /* R797 - ADC Digital Volume 2R */ 263 { 0x00000409, 0x0022 }, /* R1033 - Output Volume Ramp */ 265 { 0x00000411, 0x0180 }, /* R1041 - DAC Digital Volume 1L */ 266 { 0x00000412, 0x0080 }, /* R1042 - DAC Volume Limit 1L */ 269 { 0x00000415, 0x0180 }, /* R1045 - DAC Digital Volume 1R */ 270 { 0x00000416, 0x0080 }, /* R1046 - DAC Volume Limit 1R */ [all …]
|
H A D | wm5102-tables.c | 344 { 0x00000309, 0x0022 }, /* R777 - Input Volume Ramp */ 346 { 0x00000311, 0x0180 }, /* R785 - ADC Digital Volume 1L */ 349 { 0x00000315, 0x0180 }, /* R789 - ADC Digital Volume 1R */ 352 { 0x00000319, 0x0180 }, /* R793 - ADC Digital Volume 2L */ 355 { 0x0000031D, 0x0180 }, /* R797 - ADC Digital Volume 2R */ 358 { 0x00000321, 0x0180 }, /* R801 - ADC Digital Volume 3L */ 361 { 0x00000325, 0x0180 }, /* R805 - ADC Digital Volume 3R */ 365 { 0x00000409, 0x0022 }, /* R1033 - Output Volume Ramp */ 367 { 0x00000411, 0x0180 }, /* R1041 - DAC Digital Volume 1L */ 368 { 0x00000412, 0x0081 }, /* R1042 - DAC Volume Limit 1L */ [all …]
|
H A D | cs47l24-tables.c | 257 { 0x00000309, 0x0022 }, /* R777 - Input Volume Ramp */ 260 { 0x00000311, 0x0180 }, /* R785 - ADC Digital Volume 1L */ 263 { 0x00000315, 0x0180 }, /* R789 - ADC Digital Volume 1R */ 266 { 0x00000319, 0x0180 }, /* R793 - ADC Digital Volume 2L */ 269 { 0x0000031D, 0x0180 }, /* R797 - ADC Digital Volume 2R */ 273 { 0x00000409, 0x0022 }, /* R1033 - Output Volume Ramp */ 275 { 0x00000411, 0x0180 }, /* R1041 - DAC Digital Volume 1L */ 276 { 0x00000412, 0x0081 }, /* R1042 - DAC Volume Limit 1L */ 278 { 0x00000415, 0x0180 }, /* R1045 - DAC Digital Volume 1R */ 279 { 0x00000416, 0x0081 }, /* R1046 - DAC Volume Limit 1R */ [all …]
|
/openbmc/u-boot/include/mtd/ |
H A D | ubi-user.h | 29 * UBI volume creation 36 * UBI volume deletion 39 * To delete a volume, the %UBI_IOCRMVOL ioctl command of the UBI character 40 * device should be used. A pointer to the 32-bit volume ID hast to be passed 43 * UBI volume re-size 46 * To re-size a volume, the %UBI_IOCRSVOL ioctl command of the UBI character 57 * UBI volume update 60 * Volume update should be done via the %UBI_IOCVOLUP ioctl command of the 61 * corresponding UBI volume character device. A pointer to a 64-bit update 63 * this number of bytes to the volume character device. The update is finished [all …]
|
/openbmc/linux/include/sound/ |
H A D | ak4531_codec.h | 25 #define AK4531_LMASTER 0x00 /* master volume left */ 26 #define AK4531_RMASTER 0x01 /* master volume right */ 27 #define AK4531_LVOICE 0x02 /* channel volume left */ 28 #define AK4531_RVOICE 0x03 /* channel volume right */ 29 #define AK4531_LFM 0x04 /* FM volume left */ 30 #define AK4531_RFM 0x05 /* FM volume right */ 31 #define AK4531_LCD 0x06 /* CD volume left */ 32 #define AK4531_RCD 0x07 /* CD volume right */ 33 #define AK4531_LLINE 0x08 /* LINE volume left */ 34 #define AK4531_RLINE 0x09 /* LINE volume right */ [all …]
|
/openbmc/u-boot/cmd/ |
H A D | ubi.c | 148 static int ubi_create_vol(char *volume, int64_t size, int dynamic, int vol_id) in ubi_create_vol() argument 162 strcpy(req.name, volume); in ubi_create_vol() 163 req.name_len = strlen(volume); in ubi_create_vol() 172 printf("Creating %s volume %s of size %lld\n", in ubi_create_vol() 173 dynamic ? "dynamic" : "static", volume, size); in ubi_create_vol() 174 /* Call real ubi create volume */ in ubi_create_vol() 178 static struct ubi_volume *ubi_find_volume(char *volume) in ubi_find_volume() argument 185 if (vol && !strcmp(vol->name, volume)) in ubi_find_volume() 189 printf("Volume %s not found!\n", volume); in ubi_find_volume() 193 static int ubi_remove_vol(char *volume) in ubi_remove_vol() argument [all …]
|