diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2016-01-15 14:51:51 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-01-15 14:51:51 -0500 |
commit | 1d3671df72e0fe28d7cc686cb432e87c06f4accc (patch) | |
tree | 75bf9bdc327bd12d7ed0ca6ee5d1b0254c4753a4 /fs/udf/udfdecl.h | |
parent | 875fc4f5ddf35605581f9a5900c14afef48611f2 (diff) | |
parent | bb00c898ad1ce40c4bb422a8207ae562e9aea7ae (diff) |
Merge branch 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs
Pull UDF fixes and quota cleanups from Jan Kara:
"Several UDF fixes and some minor quota cleanups"
* 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs:
udf: Check output buffer length when converting name to CS0
udf: Prevent buffer overrun with multi-byte characters
quota: constify qtree_fmt_operations structures
udf: avoid uninitialized variable use
udf: Fix lost indirect extent block
udf: Factor out code for creating indirect extent
udf: limit the maximum number of indirect extents in a row
udf: limit the maximum number of TD redirections
fs: make quota/dquot.c explicitly non-modular
fs: make quota/netlink.c explicitly non-modular
Diffstat (limited to 'fs/udf/udfdecl.h')
-rw-r--r-- | fs/udf/udfdecl.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fs/udf/udfdecl.h b/fs/udf/udfdecl.h index ce169b49429d..fa0044b6b81d 100644 --- a/fs/udf/udfdecl.h +++ b/fs/udf/udfdecl.h | |||
@@ -158,6 +158,10 @@ extern int udf_write_inode(struct inode *, struct writeback_control *wbc); | |||
158 | extern long udf_block_map(struct inode *, sector_t); | 158 | extern long udf_block_map(struct inode *, sector_t); |
159 | extern int8_t inode_bmap(struct inode *, sector_t, struct extent_position *, | 159 | extern int8_t inode_bmap(struct inode *, sector_t, struct extent_position *, |
160 | struct kernel_lb_addr *, uint32_t *, sector_t *); | 160 | struct kernel_lb_addr *, uint32_t *, sector_t *); |
161 | extern int udf_setup_indirect_aext(struct inode *inode, int block, | ||
162 | struct extent_position *epos); | ||
163 | extern int __udf_add_aext(struct inode *inode, struct extent_position *epos, | ||
164 | struct kernel_lb_addr *eloc, uint32_t elen, int inc); | ||
161 | extern int udf_add_aext(struct inode *, struct extent_position *, | 165 | extern int udf_add_aext(struct inode *, struct extent_position *, |
162 | struct kernel_lb_addr *, uint32_t, int); | 166 | struct kernel_lb_addr *, uint32_t, int); |
163 | extern void udf_write_aext(struct inode *, struct extent_position *, | 167 | extern void udf_write_aext(struct inode *, struct extent_position *, |