mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 02:40:52 +07:00
udf: Fix spelling in EXT_NEXT_EXTENT_ALLOCDESCS
Change EXT_NEXT_EXTENT_ALLOCDECS to proper spelling EXT_NEXT_EXTENT_ALLOCDESCS. Link: https://lore.kernel.org/r/20200107212904.30471-1-pali.rohar@gmail.com Signed-off-by: Pali Rohár <pali.rohar@gmail.com> Signed-off-by: Jan Kara <jack@suse.cz>
This commit is contained in:
parent
d9e9866803
commit
800552ceec
@ -757,7 +757,7 @@ struct partitionIntegrityEntry {
|
|||||||
#define EXT_RECORDED_ALLOCATED 0x00000000
|
#define EXT_RECORDED_ALLOCATED 0x00000000
|
||||||
#define EXT_NOT_RECORDED_ALLOCATED 0x40000000
|
#define EXT_NOT_RECORDED_ALLOCATED 0x40000000
|
||||||
#define EXT_NOT_RECORDED_NOT_ALLOCATED 0x80000000
|
#define EXT_NOT_RECORDED_NOT_ALLOCATED 0x80000000
|
||||||
#define EXT_NEXT_EXTENT_ALLOCDECS 0xC0000000
|
#define EXT_NEXT_EXTENT_ALLOCDESCS 0xC0000000
|
||||||
|
|
||||||
/* Long Allocation Descriptor (ECMA 167r3 4/14.14.2) */
|
/* Long Allocation Descriptor (ECMA 167r3 4/14.14.2) */
|
||||||
|
|
||||||
|
@ -1981,10 +1981,10 @@ int udf_setup_indirect_aext(struct inode *inode, udf_pblk_t block,
|
|||||||
|
|
||||||
__udf_add_aext(inode, &nepos, &cp_loc, cp_len, 1);
|
__udf_add_aext(inode, &nepos, &cp_loc, cp_len, 1);
|
||||||
udf_write_aext(inode, epos, &nepos.block,
|
udf_write_aext(inode, epos, &nepos.block,
|
||||||
sb->s_blocksize | EXT_NEXT_EXTENT_ALLOCDECS, 0);
|
sb->s_blocksize | EXT_NEXT_EXTENT_ALLOCDESCS, 0);
|
||||||
} else {
|
} else {
|
||||||
__udf_add_aext(inode, epos, &nepos.block,
|
__udf_add_aext(inode, epos, &nepos.block,
|
||||||
sb->s_blocksize | EXT_NEXT_EXTENT_ALLOCDECS, 0);
|
sb->s_blocksize | EXT_NEXT_EXTENT_ALLOCDESCS, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
brelse(epos->bh);
|
brelse(epos->bh);
|
||||||
@ -2143,7 +2143,7 @@ int8_t udf_next_aext(struct inode *inode, struct extent_position *epos,
|
|||||||
unsigned int indirections = 0;
|
unsigned int indirections = 0;
|
||||||
|
|
||||||
while ((etype = udf_current_aext(inode, epos, eloc, elen, inc)) ==
|
while ((etype = udf_current_aext(inode, epos, eloc, elen, inc)) ==
|
||||||
(EXT_NEXT_EXTENT_ALLOCDECS >> 30)) {
|
(EXT_NEXT_EXTENT_ALLOCDESCS >> 30)) {
|
||||||
udf_pblk_t block;
|
udf_pblk_t block;
|
||||||
|
|
||||||
if (++indirections > UDF_MAX_INDIR_EXTS) {
|
if (++indirections > UDF_MAX_INDIR_EXTS) {
|
||||||
|
@ -241,7 +241,7 @@ int udf_truncate_extents(struct inode *inode)
|
|||||||
|
|
||||||
while ((etype = udf_current_aext(inode, &epos, &eloc,
|
while ((etype = udf_current_aext(inode, &epos, &eloc,
|
||||||
&elen, 0)) != -1) {
|
&elen, 0)) != -1) {
|
||||||
if (etype == (EXT_NEXT_EXTENT_ALLOCDECS >> 30)) {
|
if (etype == (EXT_NEXT_EXTENT_ALLOCDESCS >> 30)) {
|
||||||
udf_write_aext(inode, &epos, &neloc, nelen, 0);
|
udf_write_aext(inode, &epos, &neloc, nelen, 0);
|
||||||
if (indirect_ext_len) {
|
if (indirect_ext_len) {
|
||||||
/* We managed to free all extents in the
|
/* We managed to free all extents in the
|
||||||
|
Loading…
Reference in New Issue
Block a user