KernelNewbies:

Linux 3.6 has [https://lkml.org/lkml/2012/9/30/152 been released] on 30 Sep 2012

/!\ /!\ NOTE: this document is incomplete and will be finished in the next few hours /!\ /!\

Summary: This release includes . Many small features and new drivers and fixes are also available.

TableOfContents()

1. Prominent features in Linux 3.6

1.1. Btrfs: subvolume quotas, quota groups, snapshot diff

1.1.1. Subvolume size limits/quotas

A size limit can be set for each subvolume. Once the subvolume reachs that limit, it won't be possible to write more data in it. This feature can be used as a substitute of quotas, assigning to each user home a subvolume and setting a size limit to it. You can get access to it with the command btrfs quota enable/disable/rescan

1.1.2. Subvolume quota groups

As part of the subvolume size limits, Btrfs also supports the concept of quota groups. It is possible to create a quota group and toss multiple subvolumes into that group: the quota limits will be automatically applied to all subvolumes in the group. The command used for this feature is btrfs qgroup create/destroy assign/remove show/limit

1.1.3. Snapshot diffs, aka "send/receive"

Btrfs can compute the differences between two snapshots and store the differences into a file. This file can be replayed later to reconstruct the sent subvolumes/snapshots. The main, but not only, usage for send/receive is backups.

1.2. Suspend to disk and memory

In portable devices it is useful to write a hibernation image to disk, and then suspend. If the battery runs out or power is otherwise lost, the computer will power off, but it will be resumed from the hibernated image. If not, it will resume normally from memory suspend, and hibernation image will be discarded.

If you would like to write hibernation image to swap and then suspend to RAM, you can try "echo suspend > /sys/power/disk; echo disk > /sys/power/state"

1.3. TCP Fast Open (client side)

"Fast Open" is a optimization to the process of stablishing a TCP connection that allows the elimination of one round time trip (RTT) from certain kinds of TCP conversations. Fast Open could result in speed improvements of between 4% and 41% in the page load times on popular web sites. In this version only the client-side has been merged.

Recommended LWN article: [https://lwn.net/Articles/508865/ TCP Fast Open: expediting web services]

1.4. Bufferbloat fight: TCP small queues

TCP small queues is another mechanism designed to fight bufferbloat. TCP Small Queues goal is to reduce number of TCP packets in xmit queues (qdisc & device queues), to reduce RTT and cwnd bias, part of the bufferbloat problem. Without reduction of nominal bandwidth, we have reduction of buffering per bulk sender : < 1ms on Gbit (instead of 50ms with TSO) and < 8ms on 100Mbit (instead of 132 ms).

Recommended LWN article: [https://lwn.net/Articles/507065/ TCP small queues]

1.5. Swap over NFS

Until now, using swap over NFS was not safe. This release allows safe support of swapping over NFS.

Recommended LWN article: [https://lwn.net/Articles/439298/ Safely swapping over the net]

2. Driver and architecture-specific changes

All the driver and architecture-specific changes can be found in the [http://kernelnewbies.org/Linux_3.6_DriverArch Linux_3.6_DriverArch page]

3. Various core changes

4. Memory Management

5. Block

KernelNewbies: Linux_3.6 (last edited 2012-10-01 12:21:05 by diegocalleja)