mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 09:41:44 +00:00
7c955fca3e
* 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-udf-2.6: UDF: Close small mem leak in udf_find_entry() udf: Fix directory corruption after extent merging udf: Protect udf_file_aio_write from possible races udf: Remove unnecessary bkl usages udf: Use of s_alloc_mutex to serialize udf_relocate_blocks() execution udf: Replace bkl with the UDF_I(inode)->i_data_sem for protect udf_inode_info struct udf: Remove BKL from free space counting functions udf: Call udf_add_free_space() for more blocks at once in udf_free_blocks() udf: Remove BKL from udf_put_super() and udf_remount_fs() udf: Protect default inode credentials by rwlock udf: Protect all modifications of LVID with s_alloc_mutex udf: Move handling of uniqueID into a helper function and protect it by a s_alloc_mutex udf: Remove BKL from udf_update_inode udf: Convert UDF_SB(sb)->s_flags to use bitops fs/udf: Add printf format/argument verification fs/udf: Use vzalloc (Evil merge: this also removes the BKL dependency from the Kconfig file)
19 lines
541 B
Plaintext
19 lines
541 B
Plaintext
config UDF_FS
|
|
tristate "UDF file system support"
|
|
select CRC_ITU_T
|
|
help
|
|
This is the new file system used on some CD-ROMs and DVDs. Say Y if
|
|
you intend to mount DVD discs or CDRW's written in packet mode, or
|
|
if written to by other UDF utilities, such as DirectCD.
|
|
Please read <file:Documentation/filesystems/udf.txt>.
|
|
|
|
To compile this file system support as a module, choose M here: the
|
|
module will be called udf.
|
|
|
|
If unsure, say N.
|
|
|
|
config UDF_NLS
|
|
bool
|
|
default y
|
|
depends on (UDF_FS=m && NLS) || (UDF_FS=y && NLS=y)
|