Commit 4770119d authored by Linus Torvalds's avatar Linus Torvalds

Merge tag 'fs_for_v6.12-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs

Pull UDF fixes from Jan Kara:
 "A couple of UDF error handling fixes for issues spotted by syzbot"

* tag 'fs_for_v6.12-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs:
  udf: fix uninit-value use in udf_get_fileshortad
  udf: refactor inode_bmap() to handle error
  udf: refactor udf_next_aext() to handle error
  udf: refactor udf_current_aext() to handle error
parents a3a37691 264db9d6
...@@ -370,6 +370,7 @@ static void udf_table_free_blocks(struct super_block *sb, ...@@ -370,6 +370,7 @@ static void udf_table_free_blocks(struct super_block *sb,
struct extent_position oepos, epos; struct extent_position oepos, epos;
int8_t etype; int8_t etype;
struct udf_inode_info *iinfo; struct udf_inode_info *iinfo;
int ret = 0;
mutex_lock(&sbi->s_alloc_mutex); mutex_lock(&sbi->s_alloc_mutex);
iinfo = UDF_I(table); iinfo = UDF_I(table);
...@@ -383,8 +384,12 @@ static void udf_table_free_blocks(struct super_block *sb, ...@@ -383,8 +384,12 @@ static void udf_table_free_blocks(struct super_block *sb,
epos.block = oepos.block = iinfo->i_location; epos.block = oepos.block = iinfo->i_location;
epos.bh = oepos.bh = NULL; epos.bh = oepos.bh = NULL;
while (count && while (count) {
(etype = udf_next_aext(table, &epos, &eloc, &elen, 1)) != -1) { ret = udf_next_aext(table, &epos, &eloc, &elen, &etype, 1);
if (ret < 0)
goto error_return;
if (ret == 0)
break;
if (((eloc.logicalBlockNum + if (((eloc.logicalBlockNum +
(elen >> sb->s_blocksize_bits)) == start)) { (elen >> sb->s_blocksize_bits)) == start)) {
if ((0x3FFFFFFF - elen) < if ((0x3FFFFFFF - elen) <
...@@ -459,11 +464,8 @@ static void udf_table_free_blocks(struct super_block *sb, ...@@ -459,11 +464,8 @@ static void udf_table_free_blocks(struct super_block *sb,
adsize = sizeof(struct short_ad); adsize = sizeof(struct short_ad);
else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG) else if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_LONG)
adsize = sizeof(struct long_ad); adsize = sizeof(struct long_ad);
else { else
brelse(oepos.bh);
brelse(epos.bh);
goto error_return; goto error_return;
}
if (epos.offset + (2 * adsize) > sb->s_blocksize) { if (epos.offset + (2 * adsize) > sb->s_blocksize) {
/* Steal a block from the extent being free'd */ /* Steal a block from the extent being free'd */
...@@ -479,10 +481,10 @@ static void udf_table_free_blocks(struct super_block *sb, ...@@ -479,10 +481,10 @@ static void udf_table_free_blocks(struct super_block *sb,
__udf_add_aext(table, &epos, &eloc, elen, 1); __udf_add_aext(table, &epos, &eloc, elen, 1);
} }
error_return:
brelse(epos.bh); brelse(epos.bh);
brelse(oepos.bh); brelse(oepos.bh);
error_return:
mutex_unlock(&sbi->s_alloc_mutex); mutex_unlock(&sbi->s_alloc_mutex);
return; return;
} }
...@@ -498,6 +500,7 @@ static int udf_table_prealloc_blocks(struct super_block *sb, ...@@ -498,6 +500,7 @@ static int udf_table_prealloc_blocks(struct super_block *sb,
struct extent_position epos; struct extent_position epos;
int8_t etype = -1; int8_t etype = -1;
struct udf_inode_info *iinfo; struct udf_inode_info *iinfo;
int ret = 0;
if (first_block >= sbi->s_partmaps[partition].s_partition_len) if (first_block >= sbi->s_partmaps[partition].s_partition_len)
return 0; return 0;
...@@ -516,11 +519,14 @@ static int udf_table_prealloc_blocks(struct super_block *sb, ...@@ -516,11 +519,14 @@ static int udf_table_prealloc_blocks(struct super_block *sb,
epos.bh = NULL; epos.bh = NULL;
eloc.logicalBlockNum = 0xFFFFFFFF; eloc.logicalBlockNum = 0xFFFFFFFF;
while (first_block != eloc.logicalBlockNum && while (first_block != eloc.logicalBlockNum) {
(etype = udf_next_aext(table, &epos, &eloc, &elen, 1)) != -1) { ret = udf_next_aext(table, &epos, &eloc, &elen, &etype, 1);
if (ret < 0)
goto err_out;
if (ret == 0)
break;
udf_debug("eloc=%u, elen=%u, first_block=%u\n", udf_debug("eloc=%u, elen=%u, first_block=%u\n",
eloc.logicalBlockNum, elen, first_block); eloc.logicalBlockNum, elen, first_block);
; /* empty loop body */
} }
if (first_block == eloc.logicalBlockNum) { if (first_block == eloc.logicalBlockNum) {
...@@ -539,6 +545,7 @@ static int udf_table_prealloc_blocks(struct super_block *sb, ...@@ -539,6 +545,7 @@ static int udf_table_prealloc_blocks(struct super_block *sb,
alloc_count = 0; alloc_count = 0;
} }
err_out:
brelse(epos.bh); brelse(epos.bh);
if (alloc_count) if (alloc_count)
...@@ -560,6 +567,7 @@ static udf_pblk_t udf_table_new_block(struct super_block *sb, ...@@ -560,6 +567,7 @@ static udf_pblk_t udf_table_new_block(struct super_block *sb,
struct extent_position epos, goal_epos; struct extent_position epos, goal_epos;
int8_t etype; int8_t etype;
struct udf_inode_info *iinfo = UDF_I(table); struct udf_inode_info *iinfo = UDF_I(table);
int ret = 0;
*err = -ENOSPC; *err = -ENOSPC;
...@@ -583,8 +591,10 @@ static udf_pblk_t udf_table_new_block(struct super_block *sb, ...@@ -583,8 +591,10 @@ static udf_pblk_t udf_table_new_block(struct super_block *sb,
epos.block = iinfo->i_location; epos.block = iinfo->i_location;
epos.bh = goal_epos.bh = NULL; epos.bh = goal_epos.bh = NULL;
while (spread && while (spread) {
(etype = udf_next_aext(table, &epos, &eloc, &elen, 1)) != -1) { ret = udf_next_aext(table, &epos, &eloc, &elen, &etype, 1);
if (ret <= 0)
break;
if (goal >= eloc.logicalBlockNum) { if (goal >= eloc.logicalBlockNum) {
if (goal < eloc.logicalBlockNum + if (goal < eloc.logicalBlockNum +
(elen >> sb->s_blocksize_bits)) (elen >> sb->s_blocksize_bits))
...@@ -612,9 +622,11 @@ static udf_pblk_t udf_table_new_block(struct super_block *sb, ...@@ -612,9 +622,11 @@ static udf_pblk_t udf_table_new_block(struct super_block *sb,
brelse(epos.bh); brelse(epos.bh);
if (spread == 0xFFFFFFFF) { if (ret < 0 || spread == 0xFFFFFFFF) {
brelse(goal_epos.bh); brelse(goal_epos.bh);
mutex_unlock(&sbi->s_alloc_mutex); mutex_unlock(&sbi->s_alloc_mutex);
if (ret < 0)
*err = ret;
return 0; return 0;
} }
......
...@@ -166,13 +166,19 @@ static struct buffer_head *udf_fiiter_bread_blk(struct udf_fileident_iter *iter) ...@@ -166,13 +166,19 @@ static struct buffer_head *udf_fiiter_bread_blk(struct udf_fileident_iter *iter)
*/ */
static int udf_fiiter_advance_blk(struct udf_fileident_iter *iter) static int udf_fiiter_advance_blk(struct udf_fileident_iter *iter)
{ {
int8_t etype = -1;
int err = 0;
iter->loffset++; iter->loffset++;
if (iter->loffset < DIV_ROUND_UP(iter->elen, 1<<iter->dir->i_blkbits)) if (iter->loffset < DIV_ROUND_UP(iter->elen, 1<<iter->dir->i_blkbits))
return 0; return 0;
iter->loffset = 0; iter->loffset = 0;
if (udf_next_aext(iter->dir, &iter->epos, &iter->eloc, &iter->elen, 1) err = udf_next_aext(iter->dir, &iter->epos, &iter->eloc,
!= (EXT_RECORDED_ALLOCATED >> 30)) { &iter->elen, &etype, 1);
if (err < 0)
return err;
else if (err == 0 || etype != (EXT_RECORDED_ALLOCATED >> 30)) {
if (iter->pos == iter->dir->i_size) { if (iter->pos == iter->dir->i_size) {
iter->elen = 0; iter->elen = 0;
return 0; return 0;
...@@ -240,6 +246,7 @@ int udf_fiiter_init(struct udf_fileident_iter *iter, struct inode *dir, ...@@ -240,6 +246,7 @@ int udf_fiiter_init(struct udf_fileident_iter *iter, struct inode *dir,
{ {
struct udf_inode_info *iinfo = UDF_I(dir); struct udf_inode_info *iinfo = UDF_I(dir);
int err = 0; int err = 0;
int8_t etype;
iter->dir = dir; iter->dir = dir;
iter->bh[0] = iter->bh[1] = NULL; iter->bh[0] = iter->bh[1] = NULL;
...@@ -259,9 +266,9 @@ int udf_fiiter_init(struct udf_fileident_iter *iter, struct inode *dir, ...@@ -259,9 +266,9 @@ int udf_fiiter_init(struct udf_fileident_iter *iter, struct inode *dir,
goto out; goto out;
} }
if (inode_bmap(dir, iter->pos >> dir->i_blkbits, &iter->epos, err = inode_bmap(dir, iter->pos >> dir->i_blkbits, &iter->epos,
&iter->eloc, &iter->elen, &iter->loffset) != &iter->eloc, &iter->elen, &iter->loffset, &etype);
(EXT_RECORDED_ALLOCATED >> 30)) { if (err <= 0 || etype != (EXT_RECORDED_ALLOCATED >> 30)) {
if (pos == dir->i_size) if (pos == dir->i_size)
return 0; return 0;
udf_err(dir->i_sb, udf_err(dir->i_sb,
...@@ -457,6 +464,7 @@ int udf_fiiter_append_blk(struct udf_fileident_iter *iter) ...@@ -457,6 +464,7 @@ int udf_fiiter_append_blk(struct udf_fileident_iter *iter)
sector_t block; sector_t block;
uint32_t old_elen = iter->elen; uint32_t old_elen = iter->elen;
int err; int err;
int8_t etype;
if (WARN_ON_ONCE(iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB)) if (WARN_ON_ONCE(iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB))
return -EINVAL; return -EINVAL;
...@@ -471,8 +479,9 @@ int udf_fiiter_append_blk(struct udf_fileident_iter *iter) ...@@ -471,8 +479,9 @@ int udf_fiiter_append_blk(struct udf_fileident_iter *iter)
udf_fiiter_update_elen(iter, old_elen); udf_fiiter_update_elen(iter, old_elen);
return err; return err;
} }
if (inode_bmap(iter->dir, block, &iter->epos, &iter->eloc, &iter->elen, err = inode_bmap(iter->dir, block, &iter->epos, &iter->eloc, &iter->elen,
&iter->loffset) != (EXT_RECORDED_ALLOCATED >> 30)) { &iter->loffset, &etype);
if (err <= 0 || etype != (EXT_RECORDED_ALLOCATED >> 30)) {
udf_err(iter->dir->i_sb, udf_err(iter->dir->i_sb,
"block %llu not allocated in directory (ino %lu)\n", "block %llu not allocated in directory (ino %lu)\n",
(unsigned long long)block, iter->dir->i_ino); (unsigned long long)block, iter->dir->i_ino);
......
This diff is collapsed.
...@@ -282,9 +282,11 @@ static uint32_t udf_try_read_meta(struct inode *inode, uint32_t block, ...@@ -282,9 +282,11 @@ static uint32_t udf_try_read_meta(struct inode *inode, uint32_t block,
sector_t ext_offset; sector_t ext_offset;
struct extent_position epos = {}; struct extent_position epos = {};
uint32_t phyblock; uint32_t phyblock;
int8_t etype;
int err = 0;
if (inode_bmap(inode, block, &epos, &eloc, &elen, &ext_offset) != err = inode_bmap(inode, block, &epos, &eloc, &elen, &ext_offset, &etype);
(EXT_RECORDED_ALLOCATED >> 30)) if (err <= 0 || etype != (EXT_RECORDED_ALLOCATED >> 30))
phyblock = 0xFFFFFFFF; phyblock = 0xFFFFFFFF;
else { else {
map = &UDF_SB(sb)->s_partmaps[partition]; map = &UDF_SB(sb)->s_partmaps[partition];
......
...@@ -2482,13 +2482,14 @@ static unsigned int udf_count_free_table(struct super_block *sb, ...@@ -2482,13 +2482,14 @@ static unsigned int udf_count_free_table(struct super_block *sb,
uint32_t elen; uint32_t elen;
struct kernel_lb_addr eloc; struct kernel_lb_addr eloc;
struct extent_position epos; struct extent_position epos;
int8_t etype;
mutex_lock(&UDF_SB(sb)->s_alloc_mutex); mutex_lock(&UDF_SB(sb)->s_alloc_mutex);
epos.block = UDF_I(table)->i_location; epos.block = UDF_I(table)->i_location;
epos.offset = sizeof(struct unallocSpaceEntry); epos.offset = sizeof(struct unallocSpaceEntry);
epos.bh = NULL; epos.bh = NULL;
while (udf_next_aext(table, &epos, &eloc, &elen, 1) != -1) while (udf_next_aext(table, &epos, &eloc, &elen, &etype, 1) > 0)
accum += (elen >> table->i_sb->s_blocksize_bits); accum += (elen >> table->i_sb->s_blocksize_bits);
brelse(epos.bh); brelse(epos.bh);
......
...@@ -69,6 +69,7 @@ void udf_truncate_tail_extent(struct inode *inode) ...@@ -69,6 +69,7 @@ void udf_truncate_tail_extent(struct inode *inode)
int8_t etype = -1, netype; int8_t etype = -1, netype;
int adsize; int adsize;
struct udf_inode_info *iinfo = UDF_I(inode); struct udf_inode_info *iinfo = UDF_I(inode);
int ret;
if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB || if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB ||
inode->i_size == iinfo->i_lenExtents) inode->i_size == iinfo->i_lenExtents)
...@@ -85,7 +86,10 @@ void udf_truncate_tail_extent(struct inode *inode) ...@@ -85,7 +86,10 @@ void udf_truncate_tail_extent(struct inode *inode)
BUG(); BUG();
/* Find the last extent in the file */ /* Find the last extent in the file */
while ((netype = udf_next_aext(inode, &epos, &eloc, &elen, 1)) != -1) { while (1) {
ret = udf_next_aext(inode, &epos, &eloc, &elen, &netype, 1);
if (ret <= 0)
break;
etype = netype; etype = netype;
lbcount += elen; lbcount += elen;
if (lbcount > inode->i_size) { if (lbcount > inode->i_size) {
...@@ -101,7 +105,8 @@ void udf_truncate_tail_extent(struct inode *inode) ...@@ -101,7 +105,8 @@ void udf_truncate_tail_extent(struct inode *inode)
epos.offset -= adsize; epos.offset -= adsize;
extent_trunc(inode, &epos, &eloc, etype, elen, nelen); extent_trunc(inode, &epos, &eloc, etype, elen, nelen);
epos.offset += adsize; epos.offset += adsize;
if (udf_next_aext(inode, &epos, &eloc, &elen, 1) != -1) if (udf_next_aext(inode, &epos, &eloc, &elen,
&netype, 1) > 0)
udf_err(inode->i_sb, udf_err(inode->i_sb,
"Extent after EOF in inode %u\n", "Extent after EOF in inode %u\n",
(unsigned)inode->i_ino); (unsigned)inode->i_ino);
...@@ -110,7 +115,8 @@ void udf_truncate_tail_extent(struct inode *inode) ...@@ -110,7 +115,8 @@ void udf_truncate_tail_extent(struct inode *inode)
} }
/* This inode entry is in-memory only and thus we don't have to mark /* This inode entry is in-memory only and thus we don't have to mark
* the inode dirty */ * the inode dirty */
iinfo->i_lenExtents = inode->i_size; if (ret == 0)
iinfo->i_lenExtents = inode->i_size;
brelse(epos.bh); brelse(epos.bh);
} }
...@@ -124,6 +130,8 @@ void udf_discard_prealloc(struct inode *inode) ...@@ -124,6 +130,8 @@ void udf_discard_prealloc(struct inode *inode)
int8_t etype = -1; int8_t etype = -1;
struct udf_inode_info *iinfo = UDF_I(inode); struct udf_inode_info *iinfo = UDF_I(inode);
int bsize = i_blocksize(inode); int bsize = i_blocksize(inode);
int8_t tmpetype = -1;
int ret;
if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB || if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB ||
ALIGN(inode->i_size, bsize) == ALIGN(iinfo->i_lenExtents, bsize)) ALIGN(inode->i_size, bsize) == ALIGN(iinfo->i_lenExtents, bsize))
...@@ -132,15 +140,23 @@ void udf_discard_prealloc(struct inode *inode) ...@@ -132,15 +140,23 @@ void udf_discard_prealloc(struct inode *inode)
epos.block = iinfo->i_location; epos.block = iinfo->i_location;
/* Find the last extent in the file */ /* Find the last extent in the file */
while (udf_next_aext(inode, &epos, &eloc, &elen, 0) != -1) { while (1) {
ret = udf_next_aext(inode, &epos, &eloc, &elen, &tmpetype, 0);
if (ret < 0)
goto out;
if (ret == 0)
break;
brelse(prev_epos.bh); brelse(prev_epos.bh);
prev_epos = epos; prev_epos = epos;
if (prev_epos.bh) if (prev_epos.bh)
get_bh(prev_epos.bh); get_bh(prev_epos.bh);
etype = udf_next_aext(inode, &epos, &eloc, &elen, 1); ret = udf_next_aext(inode, &epos, &eloc, &elen, &etype, 1);
if (ret < 0)
goto out;
lbcount += elen; lbcount += elen;
} }
if (etype == (EXT_NOT_RECORDED_ALLOCATED >> 30)) { if (etype == (EXT_NOT_RECORDED_ALLOCATED >> 30)) {
lbcount -= elen; lbcount -= elen;
udf_delete_aext(inode, prev_epos); udf_delete_aext(inode, prev_epos);
...@@ -150,6 +166,7 @@ void udf_discard_prealloc(struct inode *inode) ...@@ -150,6 +166,7 @@ void udf_discard_prealloc(struct inode *inode)
/* This inode entry is in-memory only and thus we don't have to mark /* This inode entry is in-memory only and thus we don't have to mark
* the inode dirty */ * the inode dirty */
iinfo->i_lenExtents = lbcount; iinfo->i_lenExtents = lbcount;
out:
brelse(epos.bh); brelse(epos.bh);
brelse(prev_epos.bh); brelse(prev_epos.bh);
} }
...@@ -188,6 +205,7 @@ int udf_truncate_extents(struct inode *inode) ...@@ -188,6 +205,7 @@ int udf_truncate_extents(struct inode *inode)
loff_t byte_offset; loff_t byte_offset;
int adsize; int adsize;
struct udf_inode_info *iinfo = UDF_I(inode); struct udf_inode_info *iinfo = UDF_I(inode);
int ret = 0;
if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT) if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
adsize = sizeof(struct short_ad); adsize = sizeof(struct short_ad);
...@@ -196,10 +214,12 @@ int udf_truncate_extents(struct inode *inode) ...@@ -196,10 +214,12 @@ int udf_truncate_extents(struct inode *inode)
else else
BUG(); BUG();
etype = inode_bmap(inode, first_block, &epos, &eloc, &elen, &offset); ret = inode_bmap(inode, first_block, &epos, &eloc, &elen, &offset, &etype);
if (ret < 0)
return ret;
byte_offset = (offset << sb->s_blocksize_bits) + byte_offset = (offset << sb->s_blocksize_bits) +
(inode->i_size & (sb->s_blocksize - 1)); (inode->i_size & (sb->s_blocksize - 1));
if (etype == -1) { if (ret == 0) {
/* We should extend the file? */ /* We should extend the file? */
WARN_ON(byte_offset); WARN_ON(byte_offset);
return 0; return 0;
...@@ -217,8 +237,8 @@ int udf_truncate_extents(struct inode *inode) ...@@ -217,8 +237,8 @@ int udf_truncate_extents(struct inode *inode)
else else
lenalloc -= sizeof(struct allocExtDesc); lenalloc -= sizeof(struct allocExtDesc);
while ((etype = udf_current_aext(inode, &epos, &eloc, while ((ret = udf_current_aext(inode, &epos, &eloc,
&elen, 0)) != -1) { &elen, &etype, 0)) > 0) {
if (etype == (EXT_NEXT_EXTENT_ALLOCDESCS >> 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) {
...@@ -253,6 +273,11 @@ int udf_truncate_extents(struct inode *inode) ...@@ -253,6 +273,11 @@ int udf_truncate_extents(struct inode *inode)
} }
} }
if (ret < 0) {
brelse(epos.bh);
return ret;
}
if (indirect_ext_len) { if (indirect_ext_len) {
BUG_ON(!epos.bh); BUG_ON(!epos.bh);
udf_free_blocks(sb, NULL, &epos.block, 0, indirect_ext_len); udf_free_blocks(sb, NULL, &epos.block, 0, indirect_ext_len);
......
...@@ -157,8 +157,9 @@ extern struct buffer_head *udf_bread(struct inode *inode, udf_pblk_t block, ...@@ -157,8 +157,9 @@ extern struct buffer_head *udf_bread(struct inode *inode, udf_pblk_t block,
extern int udf_setsize(struct inode *, loff_t); extern int udf_setsize(struct inode *, loff_t);
extern void udf_evict_inode(struct inode *); extern void udf_evict_inode(struct inode *);
extern int udf_write_inode(struct inode *, struct writeback_control *wbc); extern int udf_write_inode(struct inode *, struct writeback_control *wbc);
extern int8_t inode_bmap(struct inode *, sector_t, struct extent_position *, extern int inode_bmap(struct inode *inode, sector_t block,
struct kernel_lb_addr *, uint32_t *, sector_t *); struct extent_position *pos, struct kernel_lb_addr *eloc,
uint32_t *elen, sector_t *offset, int8_t *etype);
int udf_get_block(struct inode *, sector_t, struct buffer_head *, int); int udf_get_block(struct inode *, sector_t, struct buffer_head *, int);
extern int udf_setup_indirect_aext(struct inode *inode, udf_pblk_t block, extern int udf_setup_indirect_aext(struct inode *inode, udf_pblk_t block,
struct extent_position *epos); struct extent_position *epos);
...@@ -169,10 +170,12 @@ extern int udf_add_aext(struct inode *, struct extent_position *, ...@@ -169,10 +170,12 @@ extern int udf_add_aext(struct inode *, struct extent_position *,
extern void udf_write_aext(struct inode *, struct extent_position *, extern void udf_write_aext(struct inode *, struct extent_position *,
struct kernel_lb_addr *, uint32_t, int); struct kernel_lb_addr *, uint32_t, int);
extern int8_t udf_delete_aext(struct inode *, struct extent_position); extern int8_t udf_delete_aext(struct inode *, struct extent_position);
extern int8_t udf_next_aext(struct inode *, struct extent_position *, extern int udf_next_aext(struct inode *inode, struct extent_position *epos,
struct kernel_lb_addr *, uint32_t *, int); struct kernel_lb_addr *eloc, uint32_t *elen,
extern int8_t udf_current_aext(struct inode *, struct extent_position *, int8_t *etype, int inc);
struct kernel_lb_addr *, uint32_t *, int); extern int udf_current_aext(struct inode *inode, struct extent_position *epos,
struct kernel_lb_addr *eloc, uint32_t *elen,
int8_t *etype, int inc);
extern void udf_update_extra_perms(struct inode *inode, umode_t mode); extern void udf_update_extra_perms(struct inode *inode, umode_t mode);
/* misc.c */ /* misc.c */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment