#pragma section-numbers on #pragma keywords Linux, kernel, operating system, changes, changelog, file system, Linus Torvalds, open source, device drivers #pragma description Summary of the changes and new features merged in the Linux kernel during the 3.15 development cycle Linux 3.15 [https://lkml.org/lkml/2014/6/8/70 has been released] on Sun, 8 Jun Summary: This release resumes much faster in systems with hard disks, it adds support for cross-renaming two files atomically, it adds new [http://man7.org/linux/man-pages/man2/fallocate.2.html fallocate(2)] modes that allow to remove the range of a file or set it to zero, it adds a new file locking API, the memory management adapts better to working set size changes, it improves FUSE write performance, it adds support for the LZ4 algorithm in zram, it allows to load 64 bit kernels from 32 bit EFIs, it adds support for AVX-512 vector instructions that will be added in Intel CPUs, and it adds new drivers and many other small improvements. [[TableOfContents()]] = Prominent features = == Faster resume from power suspend in systems with hard disks == Resuming a system from suspend used to take a long time in systems with traditional hard disks, because the system blocks the resume process until the hard disk finish powering up. In this release, commands are sent to the hard disk asynchronously, so the entire resuming process isn't paused by the hard disk. The end result is that systems with hard disks will resume several seconds faster with this Linux release. For more details, see this [https://01.org/suspendresume/blogs/tebrandt/2013/hard-disk-resume-optimization-simpler-approach blog entry] Code: [http://git.kernel.org/linus/200421a80f6e0a9e39d698944cc35cba103eb6ce commit 1], [http://git.kernel.org/linus/3c31b52f96f7b559d950b16113c0f68c72a1985e 2] == Improved working set size detection == When there is not enough room for all memory in RAM, the Linux kernel is in charge of deciding which memory must be kept in RAM, and which must be sent to swap or discarded. In order to make good decisions, it is necessary to track which memory is most used and deserves to be kept in RAM, and which memory is not used often and can be evicted. The way the Linux kernel does this is by keeping an "inactive" and "active" list, when some data needs to be moved to RAM its memory is marked as active. As more and more memory gets used, the active list gets filled and the less used memory is moved to the inactive list. The problem with this algorithm is to know how big must be each list. Linux used to have a policy of not allowing the active list to grow larger than the inactive, but this approach caused problems. In this release, Linux does more advanced tracking of how memory gets used and can balance better the size of the lists, which makes Linux perform better in certain workloads, adapt better to workload size changes, and creates a foundation to build improved policies in the future. For more details, read this recommended link: [http://lwn.net/Articles/495543/ Better active/inactive list balancing] [http://git.kernel.org/linus/e7b563bb2a6f4d974208da46200784b9c5b5a47e commit 1], [http://git.kernel.org/linus/449dd6984d0e47643c04c807f609dd56d48d5bcc 2], [http://git.kernel.org/linus/d26914d11751b23ca2e8747725f2cae10c2f2c1b 3], [http://git.kernel.org/linus/6dbaf22ce1f1dfba33313198eb5bd989ae76dd87 4], [http://git.kernel.org/linus/a528910e12ec7ee203095eb1711468a66b9b60b0 5] == EFI 64 bit kernels can be booted from 32 bit firmware == Most modern x86 CPUs are 64bit, but many modern systems ship with a 32 bit EFI implementation. This didn't allow to boot a Linux 64 bit EFI kernel from these 32 bit EFI systems. This limitation has been removed, a 64-bit kernel can be booted on 32-bit firmware that runs on 64 bit CPUs (note that it is not possible to boot a mixed-mode enabled kernel via the EFI boot stub - a bootloader that supports the EFI handover protocol must be used) Code: [http://git.kernel.org/linus/0154416a71c2a84c3746c8dd8ed25287e36934d3 commit 1], [http://git.kernel.org/linus/4f9dbcfc40299ddaa780fe8c1cd74998c1be3af5 2], [http://git.kernel.org/linus/54b52d87268034859191d671505bb1cfce6bd74d 3], [http://git.kernel.org/linus/099240ac111aac454962e6399c0cc51d1511504a 4], [http://git.kernel.org/linus/b8ff87a6158886771677e6dc8139bac6e3cba717 5], [http://git.kernel.org/linus/e10848a26a962e404ac00c897dfe54f14290806d 6], [http://git.kernel.org/linus/18c46461d9e42d398536055f31f58cdcd2c6347e 7], [http://git.kernel.org/linus/9a11040ff962304c1838aa9a9f33be78784eae47 8], [http://git.kernel.org/linus/3f4a7836e33134d4ac34fa7c99788f0c6a79fa1c 9], [http://git.kernel.org/linus/c116e8d60adabfd545a269fccab85e77febc1643 10], [http://git.kernel.org/linus/7d453eee36ae4cf30fc2f2faae54f634c4f863b7 11] == New file locking scheme: file private locks == Due to some unfortunate history, POSIX locks have very strange and unhelpful semantics: they are dropped whenever the process closes any file descriptor associated with the inode, and locks taken between threads within the same process won't conflict with one another, which renders them useless for synchronization between threads. This release adds a new type of lock that attempts to address these issues. These locks will conflict with classic POSIX read/write locks, but have semantics that are more like BSD locks with respect to inheritance and behavior on close. For more documentation and details about the new locking API, read this recommended LWN link: [http://lwn.net/Articles/586904/ File-private POSIX locks] Code: [http://git.kernel.org/linus/5d50ffd7c31dab47c6b828841ca1ec70a1b40169 commit] == Faster erasing and zeroing of parts of a file == This release adds two new [http://man7.org/linux/man-pages/man2/fallocate.2.html fallocate(2)] mode flags: * FALLOC_FL_COLLAPSE_RANGE: Allows to remove a range of a file without leaving holes, improving the performance of these operations that previously needed to be done with workarounds. * FALLOC_FL_ZERO_RANGE: Allows to set a range of a file to zero, much faster than it would take to do it manually (this functionality was previously available in XFS through the XFS_IOC_ZERO_RANGE ioctl) In this release, only XFS and Ext4 have added support for these new flags, other filesystems will follow in the future. For more details, read this LWN article: [http://lwn.net/Articles/589260/ Finding the proper scope of a file collapse operation] Code: [http://git.kernel.org/linus/00f5e61998dd17f5375d9dfc01331f104b83f841 commit 1], [http://git.kernel.org/linus/409332b65d3ed8cfa7a8030f1e9d52f372219642 2], [http://git.kernel.org/linus/9eb79482a97152930b113b51dff530aba9e28c8e 3], [http://git.kernel.org/linus/b8a8684502a0fc852afa0056c6bb2a9273f6fcc0 4], [http://git.kernel.org/linus/e1d8fb88a64c1f8094b9f6c3b6d2d9e6719c970d 5], [http://git.kernel.org/linus/376ba313147b4172f3e8cf620b9fb591f3e8cdfa 6] == File cross-renaming support == This release adds cross-rename, a variant of rename which exchanges the two files. This allows interesting use cases which were not possible before, for example atomically replacing a directory tree with a symlink. It also allows overlayfs and friends to operate on whiteouts atomically. For more details, read this LWN article: [http://lwn.net/Articles/569134/ Exchanging two files] Code: [http://git.kernel.org/linus/520c8b16505236fc82daa352e6c5e73cd9870cff commit], [http://git.kernel.org/linus/da1ce0670c14d8380e423a3239e562a1dc15fa9e commit], [http://git.kernel.org/linus/bd42998a6bcb9b1708dac9ca9876e3d304c16f3d commit] == zram: LZ4 compression support, improved performance == Zram is a memory compression mechanism added in [http://kernelnewbies.org/Linux_3.14#head-72b295b09fea85de2e80f0b7850048264fed887e Linux 3.14] that is used in Android, Cyanogenmod, Chrome OS, Lubuntu and other projects. In this release zram brings support for the LZ4 compression algorithm, which is better than the current available LZO in some cases. This release also adds performance improvements to concurrent compression of multiple compression streams, and the ability to switch the compression algorithm in /sys/block/zram0/comp_algorithm Code: [http://git.kernel.org/linus/e7e1ef439d18f9a21521116ea9f2b976d7230e54 commit 1], [http://git.kernel.org/linus/beca3ec71fe5490ee9237dc42400f50402baf83e 2], [http://git.kernel.org/linus/e46b8a030d76d3c94156c545c3f4c3676d813435 3], [http://git.kernel.org/linus/6e76668e415adf799839f0ab205142ad7002d260 4] == Intel AVX-512 vector instructions support == [http://en.wikipedia.org/wiki/AVX-512 AVX-512] are 512-bit extensions to the 256-bit Advanced Vector Extensions SIMD instructions for x86 instruction set architecture proposed by Intel, and scheduled to be supported in 2015 with Intel's [http://en.wikipedia.org/wiki/Knights_Landing_(microarchitecture) Knights Landing] processor. For more details about these extensions, read the [http://download-software.intel.com/sites/default/files/managed/71/2e/319433-017.pdf documentation] Code: [https://git.kernel.org/linus/918d80a136430aeb23659aa75f8b415090500667 commit] == FUSE: improved write performance == FUSE can now use cached writeback support to fuse, which improves write throughput. Code: [http://git.kernel.org/linus/4d99ff8f12eb20c6cde292f185cb1c8c334ba0ed commit] = Drivers and architectures = All the driver and architecture-specific changes can be found in the [http://kernelnewbies.org/Linux_3.15-DriversArch Linux_3.15-DriversArch page] = Core = * Add generic support for CPU feature based module autoloading [http://git.kernel.org/linus/67bad2fdb754dbef14596c0b5d28b3a12c8dfe84 commit] * Introduce cancelable MCS lock, it is a simple spin-lock with the desirable properties of being fair, and with each cpu trying to acquire the lock spinning on a local variable. It avoids expensive cache bouncings that common test-and-set spin-lock implementations incur [http://git.kernel.org/linus/fb0527bd5ea99bfeb2dd91e3c1433ecf745d6b99 commit] * Permit disabling the obsolete uselib [http://git.kernel.org/linus/69369a7003735d0d8ef22097e27a55a8bad9557a commit] and sys_sysfs syscalls, no longer used by libc [http://git.kernel.org/linus/6af9f7bf3c399e0ab1eee048e13572c6d4e15fe9 commit] * NUMA: make smarter decisions on NUMA migrations in order to maximize performance of workloads that do not fit in one NUMA node [http://git.kernel.org/linus/10f39042711ba21773763f267b4943a2c66c8bef commit] * Rework sysfs layout for memcg caches [http://git.kernel.org/linus/9a41707bd3a0811919000daf094e9d50ea65f7da commit] * tools/vm/page-types.c: 'page-types' can walk over a file's mappings and analyze populated page cache pages mostly without disturbing its state [http://git.kernel.org/linus/65a6a4105f84f961fb219f5acaf05203f7114cf9 commit] * Show mnt_id in /proc/pid/fdinfo [http://git.kernel.org/linus/49d063cb353265c3af701bab215ac438ca7df36d commit] * Make /proc/*/pagemap 0400 [http://git.kernel.org/linus/32ed74a4b968a4faff7aaaff557035ce5d5e70ab commit] * Make /proc/*/{stack,syscall,personality} 0400 [http://git.kernel.org/linus/35a35046e4f9d8849e727b0e0f6edac0ece4ca6e commit] * Add a lock-torture kernel module [http://git.kernel.org/linus/0af3fe1efa534a43385fe2694c42ffec7a310e46 commit] = Memory management = * hugetlb: improve page-fault scalability. The kernel could only handle a single hugetlb page fault at a time. This release allows a better chance of parallelization. This releases reduces the startup time of a 10 Gb Oracle DB (with ~5000 faults) from 37.5 secs to 25.7 secs compared with previous kernels. Larger workloads will benefit even more [http://git.kernel.org/linus/8382d914ebf72092aa15cdc2a5dcedb2daa0209d commit] * Per-thread vma caching; cache last recently used VMA to improve VMA cache hit rate, for more details see the recommended LWN article [http://lwn.net/Articles/589475/ Optimizing VMA caching]. [http://git.kernel.org/linus/615d6e8756c87149f2d4c commit] * Introduce byte sized index for the freelist of a slab; microoptimizes some microbenchmarks [http://git.kernel.org/linus/a41adfaa23dfe58d0832e74bef54b98db8dcc774 commit] * zswap: support multiple swap devices [http://git.kernel.org/linus/60105e1248f571aa3b895cd63bef072ed9d90c77 commit] * "opportunistic fault around"; for more details see the bottom of [http://lwn.net/Articles/592989/ this] page [http://git.kernel.org/linus/8c6e50b0290c4c708a3e6462729e1e9151a9a7df commit] 1b93d471bca002bd849 commit] = Power management = * Speed up resume by resuming runtime-suspended devices later during system suspend [http://git.kernel.org/linus/7cd0602d7836c0056fe9bdab014d5ac5ec5cb291 commit][http://git.kernel.org/linus/92858c476ec4e99cf0425f05dee109b6a55eb6f8 commit] * Speed up resume by using asynchronous threads for resume_early [http://git.kernel.org/linus/9e5e7910df824ba02aedd2b5d2ca556426ea6d0b commit], resume_noirq [http://git.kernel.org/linus/76569faa62c46382e080c3e190c66e19515aae1c commit], suspend_late [http://git.kernel.org/linus/de377b3972729f00ee236ae4a97393e282ffe391 commit], suspend_noirq [http://git.kernel.org/linus/28b6fd6e37792b16a56d324841bdb20ab78e4522 commit], acpi_thermal_check [http://git.kernel.org/linus/a59ffb2062df3a5c346dbed931fa1e587fd0f0f3 commit] * tools/power turbostat: Run on Broadwell [http://git.kernel.org/linus/4e8e863fed2e82278d29c6357de8251adb73acb9 commit] = Block layer = * UBI: Read-only block driver on top of UBI volumes [http://git.kernel.org/linus/9d54c8a33eec78289b1b3f6e10874719c27ce0a7 commit] * Device Mapper: add dm-era target. dm-era is a target that behaves similar to the linear target, and in addition it keeps track of which blocks were written within a user defined period of time called an 'era'. Use cases include tracking changed blocks for backup software, and partially invalidating the contents of a cache to restore cache coherency after rolling back a vendor snapshot [http://git.kernel.org/linus/eec40579d84873dfb7021eb24c50360f073237c5 commit] = File systems = * Btrfs * Allow mounting different btrfs subvolumes with different ro/rw options [http://git.kernel.org/linus/0723a0473fb48a1c93b113a28665b64ce5faf35a commit] * Don't bother compress writes smaller than a block that are not inlined [http://git.kernel.org/linus/68bb462d42a963169bf7acbe106aae08c17129a5 commit] * Less lock contention when using autodefrag [http://git.kernel.org/linus/f094c9bd3e12ee83e91f4249b600d4d2ac0a4738 commit] * Replace the btrfs async threads with regular kernel workqueues [http://git.kernel.org/linus/a046e9c88b0f46677923864295eac7c92cd962cb commit] * Add simple debugfs interface [http://git.kernel.org/linus/1bae30982bc86ab66d61ccb6e22792593b45d44d commit] * ext3 * Speedup [http://man7.org/linux/man-pages/man2/sync.2.html sync(2)] [http://git.kernel.org/linus/2299432e1950c9ac0aa649d4617374ea24b6f131 commit] * ext4 * Speedup [http://man7.org/linux/man-pages/man2/sync.2.html sync(2)] [http://git.kernel.org/linus/10542c229a4e8e25b40357beea66abe9dacda2c0 commit] * jbd2: scalability improvements [http://git.kernel.org/linus/42cf3452d5f5b0817d27c93e4e7d7eab6e89077d commit] * xfs * v5 format is now considered stable [http://git.kernel.org/linus/c99d609a16506602a7398eea7d12b13513f3d889 commit] * Add O_TMPFILE support [http://git.kernel.org/linus/99b6436bc29e4f10e4388c27a3e4810191cc4788 commit] * Allow appending aio writes [http://git.kernel.org/linus/9862f62faba8c279ac07415a6f610041116fbdc0 commit] * f2fs * introduce large directory support [http://git.kernel.org/linus/3843154598a00408f4214a68bd536fdf27b1df10 commit], [http://git.kernel.org/linus/ab9fa662e4867455f44f4de96d29a7f09cf292c6 commit] * throttle the memory footprint with a sysfs entry [http://git.kernel.org/linus/cdfc41c134d48c1923066bcfa6630b94588ad6bc commit] * nilfs2 * Add FITRIM ioctl support for nilfs2 [http://git.kernel.org/linus/f9f32c44e7016c61f8c60afbe461fbc7d5a6c7cc commit] * Implementation of NILFS_IOCTL_SET_SUINFO ioctl. With this ioctl the segment usage entries in the SUFILE can be updated from userspace [http://git.kernel.org/linus/2cc88f3a5f16ae9a3c8f54de1b2fd4a397b36075 commit] * GFS2 * Add meta readahead field in directory entries [http://git.kernel.org/linus/44aaada9d144a46d3de48ad81093f69d17fae96f commit] * affs * add mount option to avoid filename truncates [http://git.kernel.org/linus/8ca577223f75230a746a06f4566c53943f78d5d0 commit] = Networking = * /!\ Warning, this section is unordered /!\ * af_rxrpc: Add sysctls for configuring RxRPC parameters [http://git.kernel.org/linus/5873c0834f8896aa9da338b941035a2f8b29e99b commit] * batman-adv: Add IPv4 link-local/IPv6-ll-all-nodes multicast support [http://git.kernel.org/linus/ab49886e3da73b6b35ece21006e191910427bb30 commit] * batman-adv: Announce new capability via multicast TVLV [http://git.kernel.org/linus/60432d756cf06e597ef9da511402dd059b112447 commit] * batman-adv: Multicast Listener Announcements via Translation Table [http://git.kernel.org/linus/c5caf4ef34e2779c9a90bf4cbb57fbdf57dc8cbc commit] * bonding: support QinQ for bond arp interval [http://git.kernel.org/linus/fbd929f2dce460456807a51e18d623db3db9f077 commit] * cfg80211: remove NL80211_FEATURE_P2P_DEVICE_NEEDS_CHANNEL [http://git.kernel.org/linus/e7aceef4ac3180bd93d4c0d3fe23775850b6c31d commit] * ether: add loopback type ETH_P_LOOPBACK [http://git.kernel.org/linus/61ccbb684421d374fdcd7cf5d6b024b06f03ce4e commit] * flowcache: Make flow cache name space aware [http://git.kernel.org/linus/ca925cf1534ebcec332c08719a7dee6ee1782ce4 commit] * ieee802154: add TX power control to wpan_phy [http://git.kernel.org/linus/9b2777d6089bcd7fb035847f907280560fe233c8 commit] * ieee802154: add basic support for RF212 to at86rf230 driver [http://git.kernel.org/linus/8fad346f366a72978ea942abd06bd501ebd39c22 commit] * ieee802154: add netlink APIs for smartMAC configuration [http://git.kernel.org/linus/4244db1b0b7bc9ab7b67d8c1c38de6cf15bc87a8 commit] * ieee802154: add support for CCA mode in wpan phys [http://git.kernel.org/linus/ba08fea53a43e02b590d89224afdad976dece841 commit] * ieee802154: add support for listen-before-talk in wpan_phy [http://git.kernel.org/linus/84dda3c648fd55898064d76366b14f964cdc9d16 commit] * ieee802154: add support for setting CCA energy detection levels [http://git.kernel.org/linus/6ca001978dce0d50ebac01a38d6287f241a520c6 commit] * ieee802154: at86rf230: add support for rf233 chip [http://git.kernel.org/linus/48d5dbaf9412c79a3fd75b6dbff7aa80ceb75cc4 commit] * ieee802154: enable smart transmitter features of RF212 [http://git.kernel.org/linus/f2fdd67c6bc89de0100410efb37de69b1c98ac03 commit] * ieee802154: support 100kbps QPSK/EU in at86rf230 [http://git.kernel.org/linus/643e53c20a6ae78149f75861f260d0ca6d9a17e3 commit] * ipsec: add support of limited SA dump [http://git.kernel.org/linus/d3623099d3509fa68fa28235366049dd3156c63a commit] * ipv4: yet another new IP_MTU_DISCOVER option IP_PMTUDISC_OMIT [http://git.kernel.org/linus/1b346576359c72bee34b1476b4fc63d77d37b314 commit] * ipv6: yet another new IPV6_MTU_DISCOVER option IPV6_PMTUDISC_OMIT [http://git.kernel.org/linus/0b95227a7ba7e69f795757cd7c839eff0615f2d1 commit] * mac80211: add NAPI support back [http://git.kernel.org/linus/06d181a8fd58031db9c114d920b40d8820380a6e commit] * mac80211_hwsim: add channel switch support [http://git.kernel.org/linus/0037db63ca71ddbe4473c8e261dcb74d75ff47d2 commit] * mac80211_hwsim: make P2P-Device support optional [http://git.kernel.org/linus/8c66a3d9d951a645861b9ec5751184723c4480ce commit] * mac802154: make csma/cca parameters per-wpan [http://git.kernel.org/linus/e462ded699aa2cca04b68fbf203ea4675d4c44d4 commit] * neigh: probe application via netlink in NUD_PROBE [http://git.kernel.org/linus/a960ff81f0cd6390940faa75a078ac76acec7940 commit] * net: add busy_poll device feature [http://git.kernel.org/linus/d0290214de712150b118a532ded378a29255893b commit] * net: filter: rework/optimize internal BPF interpreter's instruction set [http://git.kernel.org/linus/bd4cf0ed331a275e9bf5a49e6d0fd55dffc551b8 commit] * netfilter: connlimit: use keyed locks [http://git.kernel.org/linus/1442e7507dd597cc701b224d3cc9bf1f165e928b commit] * netfilter: connlimit: use rbtree for per-host conntrack obj storage [http://git.kernel.org/linus/7d08487777c8b30dea34790734d708470faaf1e5 commit] * netfilter: conntrack: remove central spinlock nf_conntrack_lock [http://git.kernel.org/linus/93bb0ceb75be2fdfa9fc0dd1fb522d9ada515d9c commit] * netfilter: ipset: add forceadd kernel support for hash set types [http://git.kernel.org/linus/07cf8f5ae2657ac495b906c68ff3441ff8ba80ba commit] * netfilter: ipset: add hash:ip,mark data type to ipset [http://git.kernel.org/linus/3b02b56cd5988d569731f6c0c26992296e46b758 commit] * netfilter: ipset: add markmask for hash:ip,mark data type [http://git.kernel.org/linus/4d0e5c076d01d3fb4767a502a9517923fb9a080e commit] * netfilter: nf_tables: accept QUEUE/DROP verdict parameters [http://git.kernel.org/linus/e0abdadcc6e113ed2e22c85b350074487095875b commit] * netfilter: nf_tables: add optional user data area to rules [http://git.kernel.org/linus/0768b3b3d228c5acf2075f40f3d25cda30011d4f commit] * loopback: sctp: add NETIF_F_SCTP_CSUM to device features [http://git.kernel.org/linus/b17c706987fa6f28bdc1771c8266e7a69e22adcb commit] * tcp: snmp stats for Fast Open, SYN rtx, and data pkts [http://git.kernel.org/linus/f19c29e3e391a66a273e9afebaf01917245148cd commit] * xfrm4: Add IPsec protocol multiplexer [http://git.kernel.org/linus/3328715e6c1fcb10cd86b0f3212d18290b7e4463 commit] * xfrm6: Add IPsec protocol multiplexer [http://git.kernel.org/linus/7e14ea1521d9249d9de7f0ea39c9af054745eebd commit] * xprtrdma: add separate Kconfig options for NFSoRDMA client and server support [http://git.kernel.org/linus/2e8c12e1b76536d723ae0501de0729ddf6a9142c commit] * {IPv4,xfrm} Add ESN support for AH egress part [http://git.kernel.org/linus/d4d573d0334d07341beffdcf97e2b85d3955d8ae commit] * {IPv4,xfrm} Add ESN support for AH ingress part [http://git.kernel.org/linus/d8b2a8600b0ea002985d65bba4a94642a01bfe4c commit] * {IPv6,xfrm} Add ESN support for AH egress part [http://git.kernel.org/linus/26dd70c3fad36f4b1aa124080d5907db10ed287c commit] * {IPv6,xfrm} Add ESN support for AH ingress part [http://git.kernel.org/linus/8d6da6f325572664107601a3c9782f8c23c1bfc5 commit] * vti4: Support inter address family tunneling. [http://git.kernel.org/linus/78a010cca000aafc6a8503eb2be590a533589a27 commit] * vti6: Support inter address family tunneling. [http://git.kernel.org/linus/22e1b23dafa8554ef722454e8b84645820cbbc17 commit] * Bluetooth: Add a new PID/VID 0cf3/e005 for AR3012. [http://git.kernel.org/linus/ca58e594da2486c1d28e7ad547d82266604ec4ce commit] * Bluetooth: Add basic IRK management support [http://git.kernel.org/linus/970c4e46037ab8ece3940afc9fcf916d3ed7e003 commit] * Bluetooth: Add management command for Secure Connection Only Mode [http://git.kernel.org/linus/0ab04a9c0e8e37ca495fb08c8b83615c5f144551 commit] * Bluetooth: Add management command for enabling Secure Connections [http://git.kernel.org/linus/eac83dc632a7afba72f7084266bc310219486253 commit] * Bluetooth: Add management command to allow use of debug keys [http://git.kernel.org/linus/4e39ac81366583486b857c88656409e56befefdf commit] * Bluetooth: Add management setting for use of debug keys [http://git.kernel.org/linus/b1de97d8c06d9d8d38e85dc5b0cf3630372e702c commit] * Bluetooth: Add support for Set Privacy command [http://git.kernel.org/linus/62b04cd124cb76ce0b9a6391c6c046c08c1ac8b7 commit] * Bluetooth: Add support for handling P-256 derived link keys [http://git.kernel.org/linus/66138ce8e556a8ddd13baf035fb3a8d0d6dd4bb5 commit] * Bluetooth: Add support for handling signature resolving keys [http://git.kernel.org/linus/7ee4ea3692f20b87b0e0d3884d5b2d22ec1a2df0 commit] * Bluetooth: Add support for local OOB data with Secure Connections [http://git.kernel.org/linus/4d2d27962642e23f88745b0430d47c3ff75afdd3 commit] * Bluetooth: Add support for remote OOB input of P-256 data [http://git.kernel.org/linus/ec1091131f9b53ea280247b5a01a617ce87d399e commit] * Bluetooth: Enable LE L2CAP CoC support by default [http://git.kernel.org/linus/9b7655eafeeec9e74e97e9056e820ede8d18093e commit] * Bluetooth: Handle security level 4 for L2CAP connections [http://git.kernel.org/linus/7d513e9243afd01df315db45ffe96a6e3688e612 commit] * Bluetooth: Handle security level 4 for RFCOMM connections [http://git.kernel.org/linus/2c068e0b924c6fabd9a2ac59bc451b4b656cbae3 commit] * Bluetooth: Introduce LE auto connect options [http://git.kernel.org/linus/9fcb18ef3acb51e54b6bca6d2d803676ac86813d commit] * Bluetooth: Introduce LE auto connection infrastructure [http://git.kernel.org/linus/a4790dbd43d1617b09d57e96494fde5a4b01980a commit] * Bluetooth: Introduce requirements for security level 4 [http://git.kernel.org/linus/7b5a9241b780ea2f77e71647bc0d3c9708c18ef1 commit] * Bluetooth: append new supported device to the list [0b05:17d0] [http://git.kernel.org/linus/a735f9e22432899cee188d167966782c29246390 commit] * Bluetooth: btusb: Add IMC Networks (Broadcom based) [http://git.kernel.org/linus/9113bfd82dc8ece9cbb898df8794f58a78a36e97 commit] * Bluetooth: Add support for Lite-on [04ca:3007] [http://git.kernel.org/linus/1fb4e09a7e780b915dbd172592ae7e2a4c071065 commit] = Virtualization = * KVM * Allow per-vm capability enablement [http://git.kernel.org/linus/d938dc55225a7212e7f31c5a8571da304cc3de16 commit] * PPC: Book3S HV: Add transactional memory support [http://git.kernel.org/linus/e4e38121507a27d2ccc4b28d9e7fc4818a12c44c commit] * x86: Add nested virtualization support for MPX [http://git.kernel.org/linus/36be0b9deb23161e9eba962c215aece551113a15 commit] * Hyper-V * Implement the file copy service for Linux guests on Hyper-V ([http://technet.microsoft.com/en-us/library/dn464282.aspx related documentation]) [http://git.kernel.org/linus/01325476d6e46185031be4a9bc6443832dbc807c commit] * network: Enable receive side IP checksum offload, send side checksum offload and large send offload [http://git.kernel.org/linus/4a0e70ae5e3858052f6d91564bf3484f1eb91dc7 commit], [http://git.kernel.org/linus/e3d605ed441cf4d113f9a1cf9e1b3f7cabe0d781 commit], [http://git.kernel.org/linus/08cd04bf6d5b14ea90845b596d371bfa33eaba06 commit], [http://git.kernel.org/linus/77bf5487946254798ed7f265877939c703189f1e commit] * network: Enable scatter gather I/O [http://git.kernel.org/linus/54a7357f7ac408be4ef4ca82900bd24cb6789f36 commit] * hyperv-fb: add support for generation 2 virtual machines. [http://git.kernel.org/linus/9069fd54960304a7c941909cbccdf8df9c42b488 commit] * XEN * xen-netback: Add stat counters for zerocopy [http://git.kernel.org/linus/1bb332af4cd889e4b64dacbf4a793ceb3a70445d commit] * xen-netback: Introduce TX grant mapping [http://git.kernel.org/linus/f53c3fe8dad725b014e9c7682720d8e3e2a8a5b3 commit] * Add support for MSI message groups [http://git.kernel.org/linus/4892c9b4ada9f9a71a0da7a268f95e988d88064b commit] * vfio: Multi-IOMMU domain support [http://git.kernel.org/linus/1ef3e2bc04223ff956dc62abaf2dff1f3322a431 commit] = Security = * audit: Allow login in non-init namespaces [http://git.kernel.org/linus/543bc6a1a987672b79d6ebe8e2ab10471d8f1047 commit] * audit: add compat syscall audit support [http://git.kernel.org/linus/4b58841149dcaa500ceba1d5378ae70622fe4899 commit] * audit: audit proc//cmdline aka proctitle [http://git.kernel.org/linus/3f1c82502c299da08b7b7f08b435212e51166ed9 commit] * Add driver for Intel Trusted Execution Environment with ME Interface [http://git.kernel.org/linus/92ab513072e73d74fee78062c9935f119339e4de commit] = Crypto = * caam - add support for aead null encryption [http://git.kernel.org/linus/ae4a825ffdd6fd769af2667e03070940af1b8368 commit] * omap-des - Add omap-des driver for OMAP4/AM43xx [http://git.kernel.org/linus/e91aa9d50c3561c4a40b87d1d302db851f07ef31 commit] * sha - SHA1 transform x86_64 AVX2 [http://git.kernel.org/linus/7c1da8d0d046174a4188b5729d7579abf3d29427 commit] * tegra - remove driver [http://git.kernel.org/linus/645af2e43705d8c80c9606d5c5e83eda9a1a1a2e commit] = Tracing/perf = * /!\ Warning, this section is unordered /!\ * ftrace: Allow for function tracing instance to filter functions [http://git.kernel.org/linus/591dffdade9f07692a7dd3ed16830ec24e901ece commit] * ftrace: Allow instances to use function tracing [http://git.kernel.org/linus/f20a580627f43e73e4e57cb37e3864080ca06088 commit] * perf bench: Add futex-hash microbenchmark [http://git.kernel.org/linus/a043971141f163f9845324a2f83502d15011485d commit] * perf bench: Add futex-requeue microbenchmark [http://git.kernel.org/linus/0fb298cf95c0d8119557b7d4657724a146e0622e commit] * perf bench: Add futex-wake microbenchmark [http://git.kernel.org/linus/27db78307481dbba68c5f3563c6cb694b25521d9 commit] * perf kvm: introduce --list-cmds for use by scripts [http://git.kernel.org/linus/09a71b97cce70551356b13b668aa1d7d6da84457 commit] * perf probe: Show in what binaries/modules probes are set [http://git.kernel.org/linus/fb226ccd2a6f77be13009edc196da2077800066b commit] * perf probe: Support distro-style debuginfo for uprobe [http://git.kernel.org/linus/a15ad2f5360c821f030c53266ebf467738249c68 commit] * perf tools: Add call-graph option support into .perfconfig [http://git.kernel.org/linus/eb853e80324fa87faf7ae7e1a763ad643f908f2d commit] * perf tools: Disable user-space callchain/stack dumps for function trace events [http://git.kernel.org/linus/6bedfab68666afac1b03f8d62ee037c6ab82fbc5 commit] * perf/x86/uncore: add PCI ids for SNB/IVB/HSW IMC [http://git.kernel.org/linus/ae58faf90050ea72c289f62c4bc9a5bb8ae7f0bd commit] * perf/x86/uncore: add SNB/IVB/HSW client uncore memory controller support [http://git.kernel.org/linus/b9e1ab6d4c0582cad97699285a6b3cf992251b00 commit] * perf: Disallow user-space callchains for function trace events [http://git.kernel.org/linus/cfa77bc4af2c75c0781ee76cde2dd104c6c8e2b7 commit] * perf: Disallow user-space stack dumps for function trace events [http://git.kernel.org/linus/63c45f4ba533e9749da16298db53e491c25d805b commit] * tracing/uprobes: Support event triggering [http://git.kernel.org/linus/ca3b162021a421b38a9cd7b66555b9b01568dc9d commit] * tracing: Add trace_clock= kernel parameter [http://git.kernel.org/linus/e1e232ca6b8faa210e5509f17d55519b4392524f commit] * tracing: Set up infrastructure to allow tracers for instances [http://git.kernel.org/linus/607e2ea167e56db84387f3ab97e59a862e101cab commit] = Other news sites that track the changes of this release = * LWN Merge window, [http://lwn.net/Articles/592989/ part 1] and [http://lwn.net/Articles/594864/ part 2] * Phoronix [http://www.phoronix.com/scan.php?page=news_item&px=MTcwOTY The Top Features Of The Linux 3.15 Kernel]