mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-17 18:06:42 +07:00
26064ea409
five categories: (1) code cleanups, (2) patches related to adding PUNCH_HOLE support to GFS2, (3) support for new fields in resource group headers, (4) a few bug fixes, and (5) support for new fields in journal log headers. These new fields, which were previously unused, are designed to make it easier to track down file system corruption, and allow fsck.gfs2 to make more intelligent decisions when finding and fixing file system corruption. 1. Abhi Das contributed a patch to trim the ordered writes list, which used to grow uncontrollably until unmount. 2. Abhi also added a second patch to trim the ordered writes list. 3. Andreas Gruenbacher removed an unused parameter from function gfs2_write_jdata_pagevec. 4. Andreas also removed a pointless BUG_ON. 5. Andreas cleaned up an error patch in trunc_start. 6. Andreas removed some unused parameters from truncate. 7. Andreas made gfs2_journaled_truncate more efficient. 8. Andreas cleaned up the support functions for truncate. 9. Andreas fixed metadata read-ahead for truncate to make it faster. 10. Andreas fixed up the non-recursive truncate code. 11. Andreas reworked and renamed function gfs2_block_truncate_page. 12. Andreas generalized the non-recursive truncate code so it can take a range of values for punch_hole support. 13. Andreas introduced new PUNCH_HOLE support that take advantage of the previous patches. 14. Andreas contributed a patch to add fallocate with PUNCH_HOLE. 15. Andreas fixed some typos in the comments. 16. Andreas added function gfs2_max_stuffed_size to replace a piece of code that was needlessly repeated throughout GFS2. 17. Andreas made a minor cleanup to function gfs2_page_add_databufs. 18. Andreas got rid of function gfs2_log_header_in in preparation for the new log header fields. 19. Andreas also fixed up some missing newlines in kernel messages. 20. Andy Price added a new field to resource groups to indicate where the next one should be, to allow fsck.gfs2 to make better repairs. 21. Andy also added new rindex fields for consistency checking. 22. Andy added a crc field to resource group headers for consistency checking. 23. I added a patch to reduce redundancy in functions common to freeing dinodes. 24. I added a patch to reduce redundancy when writing log headers between the journalling code and journal recovery code. 25. I added a patch to add new fields to journal log headers based on a prototype from Steve Whitehouse. 26. I added a patch to log the source of journal log headers so we can better track down journal corruption. 27. I added a patch to fix a minor comment typo. 28. I also added a patch to fix a BUG in an unlink error path. 29. Steve Whitehouse contributed a patch to fix an incorrect use of the gfs2_blk2rgrpd function. 30. Tetsuo Handa contributed a patch that fixes incorrect error handling in function init_gfs2_fs. -----BEGIN PGP SIGNATURE----- iQEcBAABAgAGBQJaccZcAAoJENeLYdPf93o7zCYH/RgLn8alarI1IJ3633NHNisE thIvlcDVb3ffGuxMIAEnGwWEFt8qr8niEGc6GP+zvkWpO6Ym2PNmrB85DwB8brTv h1u7DTWrDsf9Qm1s6AVsw68+dn+Kq3eGwTficVFZYcJEox7NnFb1Jo6o3B0jVYei gn9ccELNMyTq8R8W2zaIk43TCbQYWWy5hT8uSMVSzr+Hz0m/fSlKKy8rizYsB1zA ut8IFUpn4dt6UG9DJ9HHg8MPw5mxr5f6wK/w/wNaaUdtZNMZyWYPiJGTrOk5YpEy EmGFljNV5iT9rwCmZfFWaXJZC9mYhWRw5zrWkX9bh4/I3TSzul6DUiUo3r6hyNA= =zDD/ -----END PGP SIGNATURE----- Merge tag 'gfs2-4.16.fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2 Pull GFS2 updates from Bob Peterson: "We've got 30 patches for this merge window. These generally fall into five categories: - code cleanups - patches related to adding PUNCH_HOLE support to GFS2 - support for new fields in resource group headers - a few bug fixes - support for new fields in journal log headers. These new fields, which were previously unused, are designed to make it easier to track down file system corruption, and allow fsck.gfs2 to make more intelligent decisions when finding and fixing file system corruption. Details: - Two patches from Abhi Das, to trim the ordered writes list, which used to grow uncontrollably until unmount. - Several patches from Andreas Gruenbacher: remove an unused parameter from function gfs2_write_jdata_pagevec, remove a pointless BUG_ON, clean up an error patch in trunc_start, remove some unused parameters from truncate, make gfs2_journaled_truncate more efficient, clean up the support functions for truncate, fix metadata read-ahead for truncate to make it faster, fix up the non-recursive truncate code, rework and rename gfs2_block_truncate_page, generalize the non-recursive truncate code so it can take a range of values for punch_hole support, introduce new PUNCH_HOLE support that take advantage of the previous patches, add fallocate support with PUNCH_HOLE, fix some typos in the comments, add the function gfs2_max_stuffed_size to replace a piece of code that was needlessly repeated throughout GFS2, a minor cleanup to function gfs2_page_add_databufs, get rid of function gfs2_log_header_in in preparation for the new log header fields, and also fix up some missing newlines in kernel messages. - Andy Price added a new field to resource groups to indicate where the next one should be, to allow fsck.gfs2 to make better repairs. He also added new rindex fields for consistency checking, and added a crc field to resource group headers for consistency checking. - I reduced redundancy in functions common to freeing dinodes, and when writing log headers between the journalling code and journal recovery code. Also added new fields to journal log headers based on a prototype from Steve Whitehouse, and log the source of journal log headers so we can better track down journal corruption. Minor comment typo fix and a fix for a BUG in an unlink error path. - Steve Whitehouse contributed a patch to fix an incorrect use of the gfs2_blk2rgrpd function. - Tetsuo Handa contributed a patch that fixes incorrect error handling in function init_gfs2_fs" * tag 'gfs2-4.16.fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2: (30 commits) gfs2: Add a few missing newlines in messages gfs2: Remove inode from ordered write list in gfs2_write_inode() GFS2: Don't try to end a non-existent transaction in unlink GFS2: Fix minor comment typo GFS2: Log the reason for log flushes in every log header GFS2: Introduce new gfs2_log_header_v2 gfs2: Get rid of gfs2_log_header_in gfs2: Minor gfs2_page_add_databufs cleanup gfs2: Add gfs2_max_stuffed_size gfs2: Typo fixes gfs2: Implement fallocate(FALLOC_FL_PUNCH_HOLE) gfs2: Turn trunc_dealloc into punch_hole gfs2: Generalize truncate code Turn gfs2_block_truncate_page into gfs2_block_zero_range gfs2: Improve non-recursive delete algorithm gfs2: Fix metadata read-ahead during truncate gfs2: Clean up {lookup,fillup}_metapath gfs2: Remove minor gfs2_journaled_truncate inefficiencies gfs2: truncate: Remove unnecessary oldsize parameters gfs2: Clean up trunc_start error path ... |
||
---|---|---|
.. | ||
asm-generic | ||
drm | ||
linux | ||
misc | ||
mtd | ||
rdma | ||
scsi | ||
sound | ||
video | ||
xen |