#pragma section-numbers on #pragma keywords Linux, Kernel, Operative System, Changes, changelog, File system, Linus Torvalds, Open Source, drivers #pragma description Summary of the changes and new features merged in the Linux Kernel during the 3.2 development cycle Linux 3.2 [https://lkml.org/lkml/2012/1/4/395 released] on 4 Jan 2012 '''''Summary''''': This release includes support for ext4 block sizes bigger than 4KB and up to 1MB, which improve performance with big files; btrfs has been updated with faster scrubbing, automatic backup of critical filesystem metadata and tools for manual inspection of the filesystems; the process scheduler has added support to set upper limits of CPU time; the desktop reponsiveness in presence of heavy writes has been improved, TCP has been updated to include an algorithm which speeds up the recovery of the connection after lost packets; the profiling tool "perf top" has added support for live inspection of tasks and libraries and see the annotated assembly code; the Device Mapper has added support for 'thin provisioning' of storage, and a new architeture has been added: the Hexagon DSP processor from Qualcomm. Other drivers and small improvements and fixes are also available in this release. [[TableOfContents()]] = Prominent features in Linux 3.2 = == ext4: Support for bigger block sizes == Recommended LWN article: [https://lwn.net/Articles/469805/ Improving ext4: bigalloc, inline data, and metadata checksums] The maximum size of a filesystem block in ext4 has always been 4 KB in x86 systems. But the storage capacity of modern hard disks is growing fast, and with the size of hard disks, the overhead of using such small size as block size increases. Small block sizes benefit users who have many small files, because the space will be used more efficiently, but people who uses large files would benefit of larger block sizes. ext4 supports now block sizes of up to 1MB of size, which decreases considerably [https://lwn.net/Articles/469821/ the time spent doing block allocations], and there is smaller fragmentation. These new block sizes must be set at creation time, using the mkfs -C option (requires e2fsprogs 1.42). This feature is not backwards compatible with older kernels. Code: [http://git.kernel.org/linus/281b59959707dfae03ce038cdf231bf4904e170c (commit 1], [http://git.kernel.org/linus/bab08ab9646288f1b0b72a7aaeecdff94bd62c18 2], [http://git.kernel.org/linus/7137d7a48e2213eb1f6d6529da14c2ed3706b795 3], [http://git.kernel.org/linus/49f7f9af4bb4d7972f3a35a74877937fec9f622d 4], [http://git.kernel.org/linus/fd034a84e1ea5c8c8d159cd2089c32e792c269b0 5], [http://git.kernel.org/linus/d5b8f31007a93777cfb0603b665858fb7aebebfc 6], [http://git.kernel.org/linus/3212a80a58062056bb922811071062be58d8fee1 7], [http://git.kernel.org/linus/53accfa9f819c80056db6f03f9c5cfa4bcba1ed8 8], [http://git.kernel.org/linus/84130193e0e6568dfdfb823f0e1e19aec80aff6e 9], [http://git.kernel.org/linus/4d33b1ef10995d7ba6191d67456202c697a92a32 10], [http://git.kernel.org/linus/0aa060000e83ca3d09ddc446a7174fb0820d99bc 11], [http://git.kernel.org/linus/5704265188ffe4290ed73b3cb685206c3ed8209d 12], [http://git.kernel.org/linus/24aaa8ef4e2b5764ada1fc69787e2fbd4f6276e5 13], [http://git.kernel.org/linus/f975d6bcc7a698a10cc755115e27d3612dcfe322 14], [http://git.kernel.org/linus/27baebb849d46d901e756e6502b0a65a62e43771 15], [http://git.kernel.org/linus/7b415bf60f6afb0499fd3dc0ee33444f54e28567 16], [http://git.kernel.org/linus/6f16b60690ba04cf476480a6f19b204e4b95b4a6 17)] == Btrfs: Faster scrubbing, automatic backup of tree roots, detailed corruption messages, manual inspection of metadata == Recommended LWN article: [https://lwn.net/Articles/465160/ A btrfs update at LinuxCon Europe] Scrub read-ahead:: Scrubbing -the process of checking all the checksums of the filesystem- uses read-ahead to improve the performance. The average disk bandwith utilisation on a test volume was raised from 70% to 90%. On another volume, the time for a test run went down from 89 seconds to 43 seconds. Code: [http://git.kernel.org/linus/ab0fff03055d2d1b01a7581badeba18db9c4f55c (commit 1], [http://git.kernel.org/linus/90519d66abbccc251d14719ac76f191f70826e40 2], [http://git.kernel.org/linus/7414a03fbf9e75fbbf2a3c16828cd862e572aa44 3], [http://git.kernel.org/linus/7a26285eea8eb92e0088db011571d887d4551b0f 4)] Log of past tree roots:: Btrfs will store in the filesystem superblock information about most of the tree roots in the last four commits. A "-o recovery" mount option has been used to allow a user to use the root history log when the filesystem is not able to read the tree