aboutsummaryrefslogtreecommitdiff
path: root/fs/ext4
AgeCommit message (Expand)AuthorFilesLines
2016-01-12Merge branch 'work.misc' of git://git.kernel.org/pub/scm/linux/kernel/git/vir...Gravatar Linus Torvalds 2-7/+4
2016-01-11Merge branch 'work.xattr' of git://git.kernel.org/pub/scm/linux/kernel/git/vi...Gravatar Linus Torvalds 4-68/+17
2016-01-11Merge branch 'work.symlinks' of git://git.kernel.org/pub/scm/linux/kernel/git...Gravatar Linus Torvalds 3-15/+16
2016-01-06fs: use block_device name vsprintf helperGravatar Dmitry Monakhov 2-7/+4
2015-12-30switch ->get_link() to delayed_call, kill ->put_link()Gravatar Al Viro 1-4/+4
2015-12-13xattr handlers: Simplify list operationGravatar Andreas Gruenbacher 4-56/+17
2015-12-08replace ->follow_link() with new method that could stay in RCU modeGravatar Al Viro 1-5/+8
2015-12-08don't put symlink bodies in pagecache into highmemGravatar Al Viro 3-7/+5
2015-12-07Merge tag 'ext4_for_linus_stable' of git://git.kernel.org/pub/scm/linux/kerne...Gravatar Linus Torvalds 4-10/+47
2015-12-06vfs: Distinguish between full xattr names and proper prefixesGravatar Andreas Gruenbacher 3-12/+0
2015-11-26ext4: add "static" to ext4_seq_##name##_fops structGravatar Xu Cang 1-1/+1
2015-11-26ext4: fix an endianness bug in ext4_encrypted_follow_link()Gravatar Al Viro 1-1/+1
2015-11-26ext4: fix an endianness bug in ext4_encrypted_zeroout()Gravatar Al Viro 1-1/+1
2015-11-24ext4: Fix handling of extended tv_secGravatar David Turner 1-7/+44
2015-11-16ext2, ext4: warn when mounting with dax enabledGravatar Dan Williams 1-1/+5
2015-11-13Merge branch 'for-linus-3' of git://git.kernel.org/pub/scm/linux/kernel/git/v...Gravatar Linus Torvalds 4-22/+30
2015-11-13xattr handlers: Pass handler to operations instead of flagsGravatar Andreas Gruenbacher 4-22/+30
2015-11-11Merge branch 'for-linus-2' of git://git.kernel.org/pub/scm/linux/kernel/git/v...Gravatar Linus Torvalds 1-2/+2
2015-11-11vfs: remove unused wrapper block_page_mkwrite()Gravatar Ross Zwisler 1-2/+2
2015-11-09remove abs64()Gravatar Andrew Morton 1-2/+2
2015-11-07Merge branch 'akpm' (patches from Andrew)Gravatar Linus Torvalds 3-3/+3
2015-11-07Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jik...Gravatar Linus Torvalds 2-4/+4
2015-11-06mm, fs: introduce mapping_gfp_constraint()Gravatar Michal Hocko 2-2/+2
2015-11-06mm, page_alloc: distinguish between being unable to sleep, unwilling to sleep...Gravatar Mel Gorman 1-1/+1
2015-11-06Merge tag 'ext4_for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/t...Gravatar Linus Torvalds 30-942/+1155
2015-11-05Merge branch 'next' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/...Gravatar Linus Torvalds 1-2/+2
2015-10-29fs/ext4: remove unnecessary new_valid_dev checkGravatar Yaowei Bai 1-3/+0
2015-10-21KEYS: Merge the type-specific data with the payload dataGravatar David Howells 1-2/+2
2015-10-19ext4: fix abs() usage in ext4_mb_check_group_paGravatar John Stultz 1-2/+2
2015-10-18ext4: do not allow journal_opts for fs w/o journalGravatar Dmitry Monakhov 2-2/+32
2015-10-18ext4: explicit mount options parsing cleanupGravatar Dmitry Monakhov 1-2/+6
2015-10-18ext4, jbd2: ensure entering into panic after recording an error in superblockGravatar Daeho Jeong 1-2/+10
2015-10-18[PATCH] fix calculation of meta_bg descriptor backupsGravatar Andy Leiserson 1-2/+2
2015-10-17ext4: fix potential use after free in __ext4_journal_stopGravatar Lukas Czerner 1-3/+3
2015-10-17ext4: fix xfstest generic/269 double revoked buffer bug with bigallocGravatar Daeho Jeong 1-15/+17
2015-10-17ext4: make the bitmap read routines return real error codesGravatar Darrick J. Wong 3-85/+143
2015-10-17ext4: clean up feature test macros with predicate functionsGravatar Darrick J. Wong 15-184/+252
2015-10-17ext4: call out CRC and corruption errors with specific error codesGravatar Darrick J. Wong 13-83/+98
2015-10-17ext4: store checksum seed in superblockGravatar Darrick J. Wong 3-4/+10
2015-10-17ext4: reserve code points for the project quota featureGravatar Theodore Ts'o 1-1/+7
2015-10-16Merge branch 'akpm' (patches from Andrew)Gravatar Linus Torvalds 1-2/+2
2015-10-16mm, fs: obey gfp_mapping for add_to_page_cache()Gravatar Michal Hocko 1-2/+2
2015-10-15ext4: use private version of page_zero_new_buffers() for data=journal modeGravatar Theodore Ts'o 1-1/+33
2015-10-03ext4 crypto: fix bugs in ext4_encrypted_zeroout()Gravatar Theodore Ts'o 2-4/+22
2015-10-03ext4 crypto: replace some BUG_ON()'s with error checksGravatar Theodore Ts'o 4-7/+15
2015-10-03ext4 crypto: ext4_page_crypto() doesn't need a encryption contextGravatar Theodore Ts'o 4-28/+9
2015-10-03ext4: optimize ext4_writepage() for attempted 4k delalloc writesGravatar Theodore Ts'o 1-1/+12
2015-10-02ext4 crypto: fix memory leak in ext4_bio_write_page()Gravatar Theodore Ts'o 1-1/+4
2015-09-29fs: Drop unlikely before IS_ERR(_OR_NULL)Gravatar Viresh Kumar 2-4/+4
2015-09-24ext4: Update EXT4_USE_FOR_EXT2 descriptionGravatar Jean Delvare 1-1/+1