#pragma keywords Linux, Kernel, Operative System, Linus Torvalds, Open Source, drivers #pragma description Summary of the changes and new features merged in the Linux Kernel during the 2.6.22 development Linux 2.6.22 Released, 8 July 2007 ([[http://kernel.org/pub/linux/kernel/v2.6/testing/ChangeLog-2.6.22|full SCM git log]]) <> == Short overview (for news sites, etc) == 2.6.22 includes an optional, more SMP-friendly SLUB allocator (http://lwn.net/Articles/229984), new and much better wireless and firewire stacks, a new architecture called Blackfin, a LVM-for-flash-storage-devices called UBI, event notifications through file descriptors (http://lwn.net/Articles/225714), the POSIX-draft utimensat() syscall, the 'TCP Illinois' and 'YeAH-TCP' congestion control algorithms, IPV6 Optimistic Duplicate Address Detection, AF_RXRPC socket support, relocatable x86-64 kernel support, improvements to the CFQ I/O scheduler, more process footprint information in /proc, various new drivers and many other improvements. == Important things (AKA: ''the cool stuff'') == === New Slab allocator: SLUB === (Recommended article: [[http://lwn.net/Articles/229984/|"The SLUB allocator"]]) The slab allocator is a object-caching kernel memory allocator used for dealing with "objects that are frequently allocated and freed" (see the [[http://citeseer.ist.psu.edu/bonwick94slab.html|"slab allocator" paper from Jeff Bonwick]]). It is a critical piece of the innards of the memory management subsystem, and a critical piece to get good performance. The Linux slab allocator works quite well for pretty much everybody; however some people (SGI) has found its current design inefficient in some cases. For example, in 1K nodes/processors configurations, several GB of memory are wasted only in object queues, not counting the objects themselves. The memory management quickly becomes too complex when adding features like proper NUMA policy support. As result, a new slab allocator called "SLUB" has been developed by Christoph Lameter from SGI, to solve those and other problems. Its design is simpler, but it also addresses some problems that can result in better performance in some cases and more efficient memory usage (see the full design notes in this [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=81819f0fc8285a2a5a921c019e3e3d7b6169d225|commit link]]). It also has better debug capabilities. There's a slabinfo userspace tool that you can find in Documentation/vm/slabinfo.c. Its aim is to transparently replace slab, but in 2.6.22 this new slab allocator is '''optional''' and not enabled by default. You can enable it at compile time (making it the third option along with SLOB, the embedded-oriented slab allocator). SLUB has been tested for some time and it's solid enough to try it on your systems, but due to the importance of this part of the kernel, it won't completely replace the current slab allocator until more exposure and testing has been done, hence it's not recommended to use it in production systems. Testing reports, specially regressions, are greatly appreciated. User documentation can be found [[http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=blob;f=Documentation/vm/slub.txt|here]] Code: [[http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=blob;f=mm/slub.c;hb=HEAD|mm/slub.c]]; === New Wireless stack === For too many years, Linux wireless support has worked, but not very well. 2.6.22 has a completely new, better wireless stack included. This new wireless stack has been donated by the known WiFi specialist company Devicescape (many thanks to [[http://www.devicescape.com|Devicescape]] for their contribution and [[http://www.devicescape.org|support to open source]]!). This wireless stack has many features, like a complete software MAC implementation, WEP, WPA, a "link-layer" bridging module, hostapd, QoS support to prioritize things like VoIP, 802.11g support, and full debug capabilities. All of this comes in a single implementation that drivers can use without rewriting those features themselves, which sadly has been done multiple times in the linux WiFi world. Another feature of this stack is a completely new user interface. The old stacks have an ugly ioctl-based interface which were standardized under the name of "wireless extensions" (wext). The new interface uses a netlink-based interface, suited for the needs of desktop-based configuration interfaces, but retaining at the same time userspace compatibility with the old interface. The disadvantage is the lack of drivers using this stack: the drivers that have been in the tree for a long time do not support this stack, and will need to be ported (which will hopefully not be that hard, since the new stack is actually a much better ground to build drivers upon that the current mess). There are quite a lot of new and ported drivers that are already using the new stack which have not been merged in this release, but will get merged in future releases, like the RT2x00 drivers, the bcm43xx driver, zd1211rw, adm8211, rtl818x, Intel iwlwifi (ipw3945 and ipw4965). Distributions like Ubuntu and Fedora already are using them. In any case, this is the building block that will bring better wireless support to Linux. Code: [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f0706e828e96d0fa4e80c0d25aa98523f6d589a0|(commit 1]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=64a327a7029d3860ddf6a024816afa9e6673eb57|2]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a9de8ce0943e03b425be18561f51159fcceb873d|3]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e9f207f0ff90bf60b825800d7450e6f2ff2eab88|4]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=704232c2718c9d4b3375ec15a14fc0397970c449|5]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2a5e1c0eb9efe26eed1dd072fe08de5797a7efd5|6]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=9e101eab153073d8a1fc7ea22b20af65de8ab44b|7)]] === New FireWire stack === The !FireWire stack is also getting a rewrite, with the old stack being kept around for the time being. The main driver behind this work, according the author, is "to get a small, maintainable and supportable !FireWire stack, with an acceptable backwards compatibility story". This stack has many advantages: Considerably leaner codebase (less than 8k lines of code compared to 30k lines of code in the old stack, and a similar size reduction in the sizes of the binary files), cleaned-up and improved in-stack APIs (with the side effect of getting rid of a bunch of old bugs) and design (no kernel threads, compared to one subsystem thread and one thread per !FireWire controller in the old stack), consolidation of the currently four userspace ABIs into one improved ABI, the userspace ABI is changed, but compatibility is kept stable at library level (libraw1394 and libdc1394), and per-device device files, letting userspace set up finer-grained access control, such as preventing direct access to !FireWire storage devices. Still missing features relative to the old stack are: eth1394 (IP over 1394) not ported over, and no support for the PCILynx chipset (less important because that chip is very rare), isochronous support at the moment only for OHCI-1.1 chips, not on OHCI-1.0 chips. Plus the disadvantage of any new piece of code: despite being tested in Fedora rawhide etc, it can contain many bugs. Code: [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3038e353cfaf548eb94f02b172b9dbe412abd24c|(commit 1]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=9ba136d0fe5a3dd33533b4a2a21156aa22f80ebe|2]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ed5689122f4cdb5cb8c6770ad1a2c8561b32d9b3|3]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=19a15b937b26638933307bb02f7b1801310d6eb2|4)]] Linux1394.org's Release Notes: [[http://marc.info/?l=linux1394-user&m=118401466928264|posting]], [[http://wiki.linux1394.org/ReleaseNotesKernel|wiki]] === Signal/timer events notifications through file descriptors === (Recommended article: [[http://lwn.net/Articles/225714/|"Kernel events without kevents"]]) Linux currently lacks a proper way to get complete event reporting like other systems do. poll/epoll isn't a solution for everything, because it only works in file descriptors so things like timer and signal notifications aren't covered by it, so to get fe. signal notifications in the main event loop people has needed to use (clever) hacks, like writing a byte between two internal pipes. After considering the inclusion of [[http://linux-net.osdl.org/index.php/Kevent|an implementation]] of a [[http://www.freebsd.org/cgi/man.cgi?query=kevent&apropos=0&sektion=0&manpath=FreeBSD+6.2-RELEASE&format=html|FreeBSD/OSX-like ]] generic event notification mechanism, a simpler, more Unixy solution ([[http://groups.google.com/group/linux.kernel/msg/1f3fc521db812a07|inspired by Linus]] some years ago) has been adopted. Three new syscalls have been added: signalfd()/timerfd()/eventfd(). What those syscalls do is to implement event delivery into file descriptors. You can use the standard read(), select(), poll(), epoll() on those fds. They've the following differences * The signalfd() system call implements signal delivery into a file descriptor. That fd supports the standard calls poll(), read(), select(), epoll() etc. This allows a program to receive signals via that file descriptor, which are more flexible. * The timerfd() system call implements timers event delivery into file descriptors. As with signalfd(), you can use standard calls poll(), epoll(), select(), read()... * The eventfd() system call is a very simple and light file descriptor that can be used as event wait/dispatch by userspace (both wait and dispatch) and by the kernel (dispatch only). It can be used instead of pipe(2) in all cases where those would simply be used to signal events. As the two previous syscalls, you can use the standard calls with the returned fd. Code: Anonymous inode source [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5dc8bf8132d59c03fe2562bce165c2f03f021687|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=da66f7cb0f69ab27dbf5b9d0b85c4b97716c44d1|(commit)]] ; signalfd: [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=fba2afaaec790dc5ab4ae8827972f342211bbb86|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2121e24bd8dd16b4e3f8d995428e2a748d5180cc|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6d18c9220965b437287c3a7e803725c24992ceac|(commit)]]; timerfd: [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b215e283992899650c4271e7385c79e26fb9a88e|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=57ac8898508638ca6d15ecd8b911a431d673ff30|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=83f5d1266926c75890f1bc4678e49d79483cb573|(commit)]]; eventfd: [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e1ad7468c77ddb94b0615d5f50fa255525fde0f0|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=fdb902b1225e1668315f38e96d2f439452c03a15|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=9c3060bedd84144653a2ad7bea32389f65598d40|(commit)]] === Blackfin architecture === 2.6.22 adds support for yet another architecture: The Analog Devices Blackfin processor architecture, and currently supports the BF533, BF532, BF531, BF537, BF536, BF534, and BF561 (Dual Core) devices, with a variety of development platforms including those available from Analog Devices (BF533-EZKit, BF533-STAMP, BF537-STAMP, BF561-EZKIT) and Bluetechnix! Tinyboards. The Blackfin architecture was jointly developed by Intel and Analog Devices Inc. (ADI) as the Micro Signal Architecture (MSA) core and introduced it in December of 2000. Since then ADI has put this core into its Blackfin processor family of devices. The Blackfin core has the advantages of a clean, orthogonal, RISC-like microprocessor instruction set. It combines a dual-MAC (Multiply/Accumulate), state-of-the-art signal processing engine and single-instruction, multiple-data (SIMD) multimedia capabilities into a single instruction set architecture. The Blackfin architecture, including the instruction set, is described by the [[http://blackfin.uclinux.org/gf/download/frsrelease/29/2549/Blackfin_PRM.pdf|ADSP-BF53x/BF56x Blackfin Processor Programming Reference]]. The Blackfin processor is already supported by major releases of gcc, and there are [[http://blackfin.uclinux.org/gf/project/toolchain/frs|binary and source rpms/tarballs]] available for many architectures. There is [[http://docs.blackfin.uclinux.org/|complete documentation]], including "getting started" guides, which provides links to the sources and patches you will need in order to set up a cross-compiling environment for bfin-linux-uclib. All the code is actively supported by Analog Devices Inc, at: http://blackfin.uclinux.org Code: [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1394f03221790a988afc3e4b3cb79f2e477246a9|(commit 1]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a5f6abd4f7558fea97bc4021fd0eb7dcc5d16a77|2]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=8cc75c9a1498913d668b6d3559940c6837cee8bf|3]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d24ecfcc3953f9c3b833508cd839be614a3f3c64|4]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=0851a2848cfd40012063ca9cf86fb67b7bebceff|5]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=194de5612777a9ff4f96dae1932f77a5a89e5f0a|6)]] === UBI === The shortest description for UBI is "LVM for NAND flash memory devices". Why duplicate LVM? Well, because flash devices can't really be handled as typical hard disks. UBI provides wear-levelling support across the whole flash chip. UBI completely hides 2 aspects of flash chips which make them very difficult to work with: 1. wear of eraseblocks; 2. bad eraseblocks. UBI also makes it possible to dynamically create, delete and re-size flash partitions (UBI volumes). Home page: http://www.linux-mtd.infradead.org/doc/ubi.html Code: [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=801c135ce73d5df1caf3eca35b66a10824ae0707|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=0029da3bf430eea498eee8cef5933f9214534b8a|(commit)]] === Secure RxRPC sockets === The RxRPC protocol driver included in 2.6.22 provides a reliable two-phase transport on top of UDP that can be used to perform RxRPC remote operations. This is done over sockets of AF_RXRPC family, using sendmsg() and recvmsg() with control data to send and receive data, aborts and errors. The AFS filesystem has been ported to use AF_RXRPC instead of the old RxRPC code. Code: [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=17926a79320afa9b95df6b977b40cca6d8713cea|(commit 1]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=651350d10f93bed7003c9a66e24cf25e0f8eed3d|2]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=08e0e7c82eeadec6f4871a386b86bf0f0fbcb4eb|3]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=63b6be55e8b51cb718468794d343058e96c7462c|4)]] === Process footprint measurement facility === 2.6.22 adds a "Referenced" line to each VMA in /proc/pid/smaps, which indicates how many pages within it are currently marked as referenced or accessed. There's also a new /proc/pid/clear_refs file. When any non-zero number is written to this clear_refs file, the Reference fiel is cleared- With those mechanism it is now possible to measure approximately how much memory a task is using by clearing the reference bits with "echo 1 > /proc/pid/clear_refs" and checking the reference count for each VMA from the /proc/pid/smaps output at a measured time interval (fe. 1 second). This is a valuable tool to get an approximate measurement of the memory footprint for a task. Code: [[http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f79f177c25016647cc92ffac8afa7cb96ce47011|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b813e931b4c8235bb42e301096ea97dbdee3e8fe|(commit)]] === utimensat() === The next revision of POSIX will support fine-grained filesystem timestamps. struct stat will report nanosecond values. During the development one additional problem was found: there is no interface to set the file timestamp with that precision. utimes only takes a timeval structure which allows only micro-second resolution. This is why the utimensat() interface was created. It is basically the same as futimesat() interface but it takes a timespec structure. Code: [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1c710c896eb461895d3c399e15bb5f20b39c9073|(commit)]] === New drivers === * Add ivtv driver for Conexant cx23416/cx23415 MPEG encoder/decoder. It took three core maintainers, over four years of work, eight new i2c modules, eleven new V4L2 ioctls, three new DVB video ioctls, a Sliced VBI API, a new MPEG encoder API, an enhanced DVB video MPEG decoding API, major YUV/OSD contributions from Ian and John, web/wiki/svn/trac support from Axel Thimm, (hardware) support from Hauppauge, support and assistance from the v4l-dvb people and the many, many users of ivtv to finally make it possible to merge this driver into the kernel [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1a0adaf37c30e89e44d1470ef604a930999a5826|(commit)]] * Add driver for the Maxim DS1WM, a 1-wire bus master ASIC core [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f19b121e21c1b032f6c612d2b9b499151f7b661b|(commit)]] * Add au1550 SPI controller driver [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=63bd23591e6c3891d34e4c6dba7c6aa41b05caad|(commit)]] * Add sensable phantom driver [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=cef2cf07273d12ac3453d2baff096423f17b7403|(commit)]] * Add RTC class driver for the Maxim MAX6900 [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=aa5bd7e929325dbb48be43c3dccf7d1da433e38e|(commit)]] and for the rtc-rs5c313 driver [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e9f2bd8191a416fbd17e8bfc002dba5411937997|(commit)]] * Add MPC52xx PSC SPI master driver [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=00b8fd236764e3d5bc1d30dc65e256e283de4c3d|(commit)]] * Add serial drive for RM9000 [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=bd71c182d5a02337305fc381831c11029dd17d64|(commit)]] and for PMC MSP71xx [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=beab697ab4b2962e3d741b476abe443baad0933d|(commit)]] * Add user mode SPI device driver [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=814a8d50eb1d88cedcef97567be53ee0d4512631|(commit)]] * Graphics * pm3fb: Preliminary 2.4 to 2.6 port [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f23a06f076173c1f56572556169bf9e1793c5d59|(commit)]] * New framebuffer driver (vt8623fb) for VIA VT8623 [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=558b7bd86c32978648cda5deb5c758d77ef0c165|(commit)]] * Hecuba framebuffer driver [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=aad09e51eeb6ec68029271642a7528ffc08fee81|(commit)]] * arkfb: new framebuffer driver for ARK Logic cards [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=681e14730c73cc2c71af282c001de6bc71c22f00|(commit)]] * atmel_lcdfb: AT91/AT32 LCD Controller framebuffer driver [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=14340586148e7c88d7b1b752876f5b5227b200b9|(commit)]] * Add Sun XVR-500 framebuffer driver. [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=453e93b348ebabc517149b9d9a05042a3c1ccc82|(commit)]] and Sun XVR-2500 framebuffer driver. [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=71227521459872c321e7a581e82723bbc1aa33e1|(commit)]] * Hwmon: * New Apple SMC driver (hardware monitoring and control) which provides support for the Apple System Management Controller, which provides an accelerometer (Apple Sudden Motion Sensor), light sensors, temperature sensors, keyboard backlight control and fan control. Only Intel-based Apple's computers are supported (MacBook Pro, MacBook, MacMini) [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6f2fad748ccced5b9313efce2a2c7ae4c04ef564|(commit)]] * New coretemp driver for the digital temperature sensor found in recent Intel Core CPUs [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=bebe467823c0d8eeb7f49115c255d8a235a20ddb|(commit)]] * New max6650 driver for the Maxim MAX6650 and MAX6651 fan speed monitoring and control chips [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d20620de0c3de622a9d6a841725bafaed6d1aec2|(commit)]] * hwmon-vid: Add support for VIA Esther [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e46751bfd69839edd15ee54cabbeed8e801a4274|(commit)]] * New driver for the Analog Devices AD7416, AD7417 and AD7418 chips [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2d8dd65fc14287f2c004dd755e517ba0f45d446e|(commit)]] * Add keyboard blink driver [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f038f9a361a764ed013447174b7170073f89cbe9|(commit)]] * MTX-1 Watchdog driver [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=04bf3b4f5fc033adf921f2e57d034ddbebef5fe7|(commit)]] * Network: * Add a driver Mellanox ConnectX InfiniBand adapters [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=225c7b1feef1b41170f7037a5b10a65cd8a42c54|(commit)]] * Add Marvell Libertas 8388 802.11b/g USB driver [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=876c9d3aeb989cf1961f2c228d309ba5dcfb1172|(commit)]] * Add zr364xx V4L2 driver for USB webcams based on the zr364xx chipsets [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b7eee616ad8db5db5441a7d82083003df3ab6d3b|(commit)]] * pasemi * Cpufreq driver for PA Semi PWRficient processors [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2e0c3370b3ecf831ef209f1094df36a808865845|(commit)]] * PA6T oprofile support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=25fc530eed1ca9ccde2a1e96d0b2060867f76bb2|(commit)]] * Add pasemi hardware rng driver for the on-chip hardware random number generator on PA Semi PA6T-1682M [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b8cb34481edfee6692c83d3b283e29820e840280|(commit)]] == Various core changes == * Futex priority based wakeup. Today, all threads waiting for a given futex are woken in FIFO order (first waiter woken first) instead of priority order. This changes makes use of plist (priority ordered lists) instead [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ec92d08292d3e9b0823eba138a4564d2d39f25c7|(commit)]] * PRIVATE futexes [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=34f01cc1f512fa783302982776895c73714ebbc2|(commit)]] * Replace pgd management via slabs through 'quicklists'. Quicklists cut allocation overhead for page table pages down to a fraction in platforms like x86_64 [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6225e93735acaa09865bce746958f1046c2e0bc3|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3a2cba993b0a04f258ab75e15cf3f08ada268dbd|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6c645ac72582bacb85b90a1cf88e81a13045aba4|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2bd62a40f63bd628c43a2f3637b252d0967659b0|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5f8c9908f200b775a3d6c345bc6f3e928e2426a9|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=8defab33774a5c33920196a2ee9c0a946d22ba67|(commit)]] * Change default dirty-writeback limits. This means the kernel will write "dirty" caches differently. If you notice your system behaves poorly, please report it, but before that change the limits (via /proc/sys/vm) to check if this change is the cause. dirty_background_ratio defaulted to 10, now defaults to 5. vm_dirty_ratio defaulted to 40, now it's 10 [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=07db59bd6b0f279c31044cba6787344f63be87ea|(commit)]] * Many improvements to the CFQ I/O scheduler: Implement logic for detecting cooperating processes [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6d048f5310aa2dda2b5acd947eab3598c25e269f|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1e3335de05da3dfbe48b8caa03db1834a2133256|(commit)]]. Rework the queue handling, inspired from Ingo's CFS process scheduler: currently CFQ uses a doubly linked list per priority level for sorting and service uses, those lists are killed and now an rbtree of cfq_queue's is maintained, sorted by when to service them [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d9e7620e60bc6648c3dcabbc8d1a320b69c846f9|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=cc09e2990fdd96d25fdbb9db6bc9b4c82d9e4a3c|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=67060e37994444ee9c0bd2413c8baa6cc58e7adb|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=0c534e0a463e2eeafc97ba25ab23c14f3cdf2bdb|(commit)]] * Make multithreaded probing work per subsystem instead of per driver [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=21c7f30b1d3f8a3de3128478daca3ce203fc8733|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5adc55da4a7758021bcc374904b0f8b076508a11|(commit)]] * Notify userspace of network device renames [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ca2f37dbc5324c7278577731033a358f1f86050a|(commit)]] * Overdue removal of the mount/umount uevents [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3106d46f51a1a72fdbf071ebc0800a9bcfcbc544|(commit)]] * Add support for the Motorola sysv68 disk partition (slices in motorola doc) [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=19d0e8ce856a7628a630710aed82931ce1c7eb97|(commit)]] * Add support for finding out the current file position, open flags and possibly other info in the future. These new entries are added: /proc/PID/fdinfo/FD/* and /proc/PID/task/TID/fdinfo/FD/* [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2793274298c4423d79701e9a8190f2940bf3c785|(commit)]] * Add support for deferrable timers [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6e453a67510a17f01b63835f18569e8c3939a38c|(commit)]] and * Make vm statistics update interval configurable [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=77461ab33229d48614402decfb1b2eaa6d446861|(commit)]] * Add a new deferrable delayed work init [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=28287033e12463c8ff89f1ea8038783d0360391c|(commit)]] * Remove artificial maximum 256 loop device that can be created due to a legacy device number limit [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=73285082745045bcd64333c1fbaa88f8490f2626|(commit)]] * Kprobes: provides a debugfs knob to turn kprobes on/off [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=bf8f6e5b3e51ee0c64c2d1350c70198ddc8ad3f7|(commit)]] * CRC ITU-T V.41 [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3e7cbae7c6dda18d427335b3ad98f1a0d40ef30c|(commit)]] * vt: allow for the palette to be exposed and changed via sysfs [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1c2bbe6a11ec7d1de114acfc8a6bf2821b0224a5|(commit)]], add color support to the "underline" and "italic" attributes as in OpenBSD/NetBSD-style (vt220) and xterm [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=fa6ce9ab5fbcb4c276c48861584b70d387e787b3|(commit)]] == Architecture-specific changes == * x86-32 * Add an option for the VIA C7 which sets appropriate L1 cache [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=0949be35095b53dbaa72db700cb5074c5c249629|(commit)]] * Make COMPAT_VDSO runtime selectable. [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1dbf527c51c6c20c19869c8125cb5b87c3d09506|(commit)]] * Support Oprofile for AMD Family 10 CPUs [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2a12652c0335ec90747d3402a82b6699ae883b58|(commit)]] * Allow boot parameter "noreplace-smp" for disable of SMP altinstructions [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b7fb4af06c18496950a45b365f7a09c47ea64c17|(commit)]] * Implement alternative_io for i386 [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e859dc553c857f4672b3bbb73ee9170a901f8712|(commit)]] * x86: add command line length to boot protocol [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=8f9aeca7a081d81c4c9862be1e04f15b5ab5461f|(commit)]] * Voyager: add SMP alternatives [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d6444514b89098284099c17b9f168ef6236d3e8f|(commit)]] * x86-64 * Relocatable Kernel Support so that it can be loaded and run at any 2M aligned address, below 512G [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1ab60e0f72f71ec54831e525a3e1154f1c092408|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=8035d3ea78c2a61a9738c7857742370e0aa74d5c|(commit)]] * Split remaining fake nodes equally [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=14694d736bb66d0ec250d05c81c6e98a19c229c6|(commit)]] * Fake NUMA for cpusets document [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=20280195f2a3d80c42a190959ca22108c93cd7e0|(commit)]] * Fixed size remaining fake nodes [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=382591d500bbcd20a44416c5e0e292708468587c|(commit)]] * Configurable fake NUMA node sizes [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=8b8ca80e192b10eecc01fc44a2902510af86f73b|(commit)]] * PPC * Powermac: Support G5 CPU hotplug [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d9333afd6a714760c13f76ba275a32ec7bd979c1|(commit)]], suspend to disk on G5 [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=543b9fd3528f64c4b20439de0edb453764482de7|(commit)]] * Introduce address space "slices" [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d0f13e3c20b6fb73ccb467bdca97fa7cf5a574cd|(commit)]] * Spufs support for 64K LS mappings on 4K kernels [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f1fa74f4afe96b0e4ac2beaa61fa4f4667acdcbb|(commit)]] * PowerPC MSI infrastructure [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=df87ef5508b40fc655b6c4771be31741d8ec1596|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=812fd1fd63caf2d72906603ebb9c6049a19ef4d2|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=85f2bf9f60f55b6727ed310ebbaa2df7142326e5|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a7de7c74227edda719b257eb15aecd73790ff894|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=014dad902aad6f5efbd65d0524b2e99304d2b07e|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=05af7bd2d75e5098021864d83fbb831111755fa0|(commit)]] * Early serial debug support for PPC44x [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d9b55a03611ff2e2e54fb4e1ad2648d5eb870fa3|(commit)]] * DEBUG_PAGEALLOC for 64-bit [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=370a908db154f51008cea41e67e7409efa251c7b|(commit)]] and 32-bit [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=88df6e90fa9782dbf44d936e44649afe271e4790|(commit)]] * Handle recursive oopses [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=34c2a14fc20e4ab878fbf87e5f7fe1cff6afb3d4|(commit)]] * 64K page support for kexec [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=71bf08b6c083df4ee97874d895f911529f4150dd|(commit)]] * Use generic apm-emulation [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b302887854d6f0c6f9fc3f1080535e7c1bd53134|(commit)]] * EDAC ECC software scrubber [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=723ec731de880a76a004a304b62bf8d0f96435d8|(commit)]] * Add powerpc PCI-E reset support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=00c2ae35bd50664bcd841becc6efceef8aa5d074|(commit)]] * Create Marvell mv64x60 MPSC (serial) platform_data [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=52d3aff903171af13b56c5a4d6fb828461406c65|(commit)]], create Marvell mv64x60 ethernet platform_data [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=649c8e0289eeee2ab3d4c6c6e062df24dd602233|(commit)]], add interrupt support for Marvell mv64x60 chips [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e44b8941908ec9ccf03b52713c9e7d3471bada8c|(commit)]], add Marvell mv64x60 PCI bridge support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e1a3107b06a9619773596cd46a9ce0574419aed4|(commit)]], create Marvell mv64x60 I2C platform_data [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=01f0e78e15c52af480c867af5bd406afec80d9cc|(commit)]] * Add arch/powerpc support for the Motorola PrPMC2800 [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=fd4ba7e2b7ce9a48b8c60d5fcd65feda5746812e|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3f456cc18f63bebdf71d788098c72d7ecd83c9b6|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c368d921daed3c7cfba9752a45b2a8804cd54128|(commit)]] * Support for the Ebony 440GP reference board in arch/powerpc [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f6dfc80554b27da11dbb36ebae166b23ec3aa9ca|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ea20ff5d0338a0fbd78783df657f94ffa7967dd9|(commit)]] * Add support for 750CL Holly board [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=cb9e4d10c448a388babd9dfbfa2b8bb1c5bbf84f|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d4d19ec4931feb53f68fcc156563a21e34d50cb8|(commit)]] * Add bootwrapper support for Marvell/mv64x60 I2C [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ae4b3fbc7a91ea4e5685edb0310bb185a12e5943|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e12deb840ceed7051ab4799ae71b675a83c58c7c|(commit)]], Holly bootwrapper [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7487a2245b8841c77ba9db406cf99a483b9334e9|(commit)]], add bootwrapper support for Marvell/mv64x60 hostbridge [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=0f81b11d2a14adaa9b2c944f104e13d72fedc769|(commit)]] * Add uartlite boot console driver for the zImage wrapper [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=8b01653ab01eebc781c5a375ff336d0837f30c4e|(commit)]] * Remove the unused HTDMSOUND driver [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=8d1cea6e1439a113b1f17eab9b4e2f0cfc24bbb0|(commit)]] * ibmebus: dynamic addition/removal of adapters [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6bccf755ff53241d46c01c229b3c2452b9029ec4|(commit)]] * 86xx: Added 2nd PCI-Ex controller support for MPC8641 HPCN to DTS [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e0e3c8d432ab9503b167e53d60b145f0e26bb1e2|(commit)]], * 83xx: Add MPC832x RDB board support. [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=23308c54d559a210019a576c5741cfb762af69d6|(commit)]] * 85xx: Add initial MPC8544 DS platform files. [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d93daf848161043c06b665bbbd4bc22ef0247065|(commit)]] * Add arch/powerpc driver for UIC, PPC4xx interrupt controller [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e58923ed14370e0facc5eb2c3923216adc3bf260|(commit)]] * PS3: Add DABR support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f0a1d024cc2699f4897d611da1d91777cccc530b|(commit)]], CBE thermal support on [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=28066ae91b2050d79531a6f2d5e35dd8f666bafd|(commit)]] * ARM * Add ARM V7 support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=23688e999eda70f1ce1c61a68b865b996e3c6c4c|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=bbe888864ec32435e93923c40b9d6ce2bb73844b|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=065cf519c32984b7a78777aae3859baf5f5fd3d3|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=56163fcf194fb688fcf3cefa9b90c5ad41f74059|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=aaf83acba9fb1f93d2e656c7e4dda4e38c1cb490|(commit)]] * Add support for Atmel AT91SAM9RL processors. [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=877d7720f5f67793b9b6027840d2c88ea25dc4c8|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c42dcb3dcfd3a473ab7c79c2ae91fc1c2e4dc5db|(commit)]] * Support for Micrel/Kendin KS8695 processor [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c53c9cf60e49119e97d38390849cac5b2f0a0981|(commit)]] * Add support for the TI DaVinci platform [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7c6337e225364870e9bf02a3ae277d9fdea483f8|(commit)]] * Add Intel KIXRP435 Reference Platform based on IXP43x processor [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=45fba0846f5a5a48ed3c394aa4f8ca93699e7655|(commit)]] * Support for dynticks and hence the new clocksource/event infrastructure [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=0567a0c022d5b343370a343121f38fd89925de55|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=9e4559ddffc012a73ea0b54ed3b6a219c1483ae9|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e32f1502be3fa459723b1e4105e014f0828f7513|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b49c87c2a5059af14b68ee5f596ac0e9c93678bb|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=89df127246f23add865f4a8f719c990e41151843|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=075192ae807579448afcc0833bd349ccce057825|(commit)]] * Add stacktrace support and make oprofile use it [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f16fb1ecc5a1cb2f7cc595179d1fe55e711e599f|(commit)]] * Add ability to dump exception stacks to kernel backtraces [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7ab3f8d595a1b1e5cf8d726b72fd476fe0d0226c|(commit)]] * Add GPIO debug support. /sys/kernel/debug/omap_gpio dumps the state of all GPIOs that have been claimed, including basic IRQ info if relevant [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b9772a220a0d1b1d83b770ed131fa8b090af3681|(commit)]] * Add new boards: picotux 200 ARM [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5d01f133412b0e27b340ab1bbb2cf0017329ae61|(commit)]], KS8695 Micrel Development board [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=9bf77ee6c24b33758a432f106fb765bf32550508|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2c7ee6ab7cb7261aacea91d41da8df1874772f3f|(commit)]]; mach type cc9p9360js [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=13ea55b04eaafb60cd7df759c8d92566d1f19351|(commit)]], DSM-G600 [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=28bd3a0dcce11bea6f99a351cc64053dff00196e|(commit)]] * iop13xx: msi support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2fd0237538480c8d704c385b6f9abc3f6c46b760|(commit)]] * H1940: Add bluetooth support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7fdc7849d2f9f926cbaec224bbcbacb164b07b23|(commit)]] * Add support for ICSIDE interface on RiscPC [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=73b6a2be8b29b2067aa3c0f1d6433b6148d88705|(commit)]] * AT91: Support ADS7846 touchsceen on boards SAM9263-EK [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7c73628f24ea73479232d1b608359aa7d8d2c95d|(commit)]] and SAM9261-EK [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=235227285b3e4bae616be5720e6dedb49b914e9d|(commit)]]; * MIPS * Add bcm1480 ZBus trace support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d619f38fdacb5cec0c841798bbadeaf903868852|(commit)]] * Remove Momenco Jaguar ATX support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=bef964e55ac128b1a6894c68171d0b22263449f8|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=599ca0fb639ba843da46c3ad1a53590763539750|(commit)]] * Remove Momenco Ocelot G support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1e54f778af4467b816bf1289e7c4bf7e50067b7b|(commit)]] * SH * Clockevent/clocksource/hrtimers/nohz TMU (SH-3 and SH-4) support. [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=57be2b484a417bffae66359b9b89e7239480b729|(commit)]] * Kdump support. [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4d5ade5b29c618e97a8988efb6967cb4dd0e2183|(commit)]] * Bring kgdb back from the dead. [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=fa5da2f7bdcf885efe65a37df13907c7d72296f6|(commit)]] * Generic BUG() support. [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=fa69151173b1fc6fa3ced0edd5c2ea83b5d32bc1|(commit)]] * Support for: solution engine boards 7722 [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6865f0ea6ad91fec3ae7831c49d48b5a7db4b428|(commit)]] and SH7780 [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b75762302e144b73f12b72c59b99401d036680aa|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=45ed285b54930767937deb0eaf718b1d08c3c475|(commit)]]; MS7712SE01 board [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=9465a54fa4a9da628091c372baa84120f8304587|(commit)]], SH7785 Highlander board (R7785RP). [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=32351a28a7e1f2c68afbe559dd35e1ad0301be6d|(commit)]], L-BOX RE2 [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c86c5a910451dd5a30e62a9e36d8e9b3c7a0c1d1|(commit)]], se7780 PCI [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b7aee517c8302d651ff057fdcebee3c1f53c3b2e|(commit)]]. SH7722 clock framework support. [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1929cb340b74904c130fdf3de3fe5bbedb68a5aa|(commit)]] * SPARC64: * Provide mmu statistics via sysfs [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d887ab3a9b1899f88b8cfba531e726b5fb2ebd14|(commit)]] * Proper multi-core scheduling support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f78eae2e6f5d1eb05f76a45486286445b916bd92|(commit)]] * Unify timer interrupt handler [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=777a447529ad138f5fceb9c9ad28bab19848f277|(commit)]] * Add clocksource/clockevents support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=112f48716d9f292c92a033cff9e3ce7405ed4280|(commit)]] * Add support for bq4802 TOD chip, as found on ultra45 [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d037e0532e7dbb5a7936cbc6747206d2352f2974|(commit)]] * SUN4U PCI-E controller support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=861fe90656b8e20d750d73c57088dc52d316ce7b|(commit)]] * S390 * Improved oops output. [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=bb11e3bdbac08f773a89f3ca287024a956ee8a12|(commit)]] * Improved kernel stack overflow checking. [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=be7962856d299a0f231ac36f89f4a89cbecfe0ff|(commit)]] * Generic BUG(). [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c0007f1a65762eaf55633d403b380130ec60adad|(commit)]] * Add hardware capability support (ELF_HWCAP). [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=cf8ba7a95511b86608acb481ad96219fe2da4b3a|(commit)]] * Processor degradation notification through uevents. This can happen e.g. because the cpus are overheating. The cpu capability can be read via /sys/devices/system/cpu/cpuN/capability [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2fc2d1e9ffcde78af7ab63ed640d9a4901797de2|(commit)]] * zfcpdump support. [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=411ed3225733dbd83b4cbaaa992ef80d6ec1534e|(commit)]] * M68K * Early parameter support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d6713b4091a99fa2af2fabdcd2f3fb97f32ecf2e|(commit)]] * Discontinuous memory support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=12d810c1b8c2b913d48e629e2b5c01d105029839|(commit)]] * Runtime patching infrastructure [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=fbe9c9612930e0604dc99ef2da7e063fa3278817|(commit)]] * Atari fb revival [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a100501212f2e26bb6d70bfb5c55eefd90e22b65|(commit)]] * Atari keyboard and mouse support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c04cb856e20a8bf68762d60737b84328c1ab5900|(commit)]] * Atari SCSI revival [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=fb810d121bceb945c5e576356bccba11cbfad7e3|(commit)]] * UML * Turn on SCSI support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=0ff563830209d2f5ea2ece071f7ea71aff934544|(commit)]] * Add separated IRQ stacks [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c14b84949e127560084c7c56b365931c71c60768|(commit)]] * Shrink kernel stacks [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=02239c29967418284c05d58971894d658575e78c|(commit)]] * Speed up several critical hot paths: page faults, page table walking, exec... [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=64f60841c096594b8073e408cd9b40d7d08dcfdd|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=16dd07bc6404c8da0bdfeb7a5cde4e4a63991c00|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7f0536f80cfbefd753eb123ed20940978f223900|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1e7371c1a11f041d641cc0ff113bf1daa1bd98b9|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a0044bdf60c212366a314da09ca624cb315906e2|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a18ff1bde0c3da9ece3ba60e6eae2ef87f91a12e|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2adcec2197897365e0a0f657f1098cbfdb44bc8b|(commit)]] * H8300 * Convert h8300 to generic timekeeping [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=aeecf3142d82414d511135cc85f86caddfb58338|(commit)]] * Add zImage support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=97a572b3b877173e284c687be34d8ae81b826160|(commit)]] * Generic irq [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c728d60455e8e8722ee08312a75f38dd7a866b5e|(commit)]] * AVR32 * Board code for ATNGW100 [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=9ca20a8366462c553c27216161c735937f9de108|(commit)]] * Generic BUG() handling [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=623b0355d5b1f9c6d05005b649a2f3a7b9fd7816|(commit)]] * IA64: Add the Itanium Machine Check (MC) Error Injection Tool . The IPF Machine Check (MC) error inject tool is used to inject MC errors from Linux and is a test bed for IPF MC work flow including hardware correctable error handling, OS recoverable error handling, MC event logging, etc. Documentation [[http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=bf6285278418f1dc6f07296bbb286da0bfe26d5d|here]]. Code: [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e9ef08bdc189e98610bc4b9a6e6f19bc3793b2c8|Commit 1 ]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=bf6285278418f1dc6f07296bbb286da0bfe26d5d|2]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=62fa562af36d32431ac8d7432b2c3ffbb7cf82df|3]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=539d517ad10bbaac2c04e0ee22916a360c5bcc0d|4]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1138b7e2d40711b024768034beb64885994271e4|5]] * SuperH: smc91x support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5125ed914d238cf22783038393ea1e75bc470925|(commit)]] == Various subsystems == === Filesystems === * GFS2 * Consolidate transport protocols [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6ed7257b46709e87d79ac2b6b819b7e0c9184998|(commit)]] * Add orphan purging code [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=8499137d4ef1829281e04838113b6b09a0bf1269|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=72c2be776bd6eec5186e316e6d9dd4aab78d314d|(commit)]] * Add gfs2_tool lockdump support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7c52b166c588c98cf3d2b2e7e6a0468a98e84d0d|(commit)]] * OCFS2: * Sparse b-tree support that allows ocfs2 to support sparse files [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=dcd0538ff4e854fa9d7f4630b359ca8fdb5cb5a8|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=363041a5f74b953ab6b705ac9c88e5eda218a24b|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3a0782d09c07aa3ec767ba6089cd15cfbfbfc508|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=abf8b1569415bb4a8915a4884943ecd39c510957|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=89488984ac23b0580f959b9ee549f2fcb1c2f194|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=9517bac6cc7a7aa4fee63cb38a32cb6014e264c7|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5069120b7227fd323152a3755a0aa6bdeb361310|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=25baf2da1473d9dcde1a4c7b0ab26e7d67d9bf62|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=60b11392f1a09433740bda3048202213daa27736|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=83418978827324918a8cd25ce5227312de1d4468|(commit)]] * Implement compat_ioctl() for 64/32 bit compatibility [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=586d232b191b776a1c6d51c10c662b8b3e238fdf|(commit)]] * CIFS: * Add IPv6 support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5858ae44e289ac6c809af3fe81b9a6ed41914d41|(commit)]] * Add support for POSIX mkdir, which improves performance [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2dd29d3133ad4c7926ea03b8431e604373c4ad65|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=cbac3cba66ab51492da53e7bf4f38da872408065|(commit)]] * UID/GID override on CIFS mounts to Samba [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4523cc3044d1bc7fcf3d7fee75d62bc76b8e1abb|(commit)]] * AFS * Implement basic file write support, including write, truncate, fsync, fdatasync, chmod, chown, chgrp, utime. Shared-writable mappings are not supported right now [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=31143d5d515ece617ffccb7df5ff75e4d1dfa120|(commit)]] * Clean up the AFS sources [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ec26815ad847dbf74a1e27aa5515fb7d5dc6ee6f|(commit)]] * Handle multiple mounts of an AFS superblock correctly. [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=436058a49e0fb91c74454dbee9cfee6fb53b4336|(commit)]] * Add "directory write" support. Add support for the create, link, symlink, unlink, mkdir, rmdir and rename VFS operations to the in-kernel AFS filesystem [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=260a980317dac80182dd76140cf67c6e81d6d3dd|(commit)]] * Add support for the CB.GetCapabilities operation. [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b908fe6b2d1294d93b0d0badf6bf4f9a2cd7d729|(commit)]] * Implement the CB.InitCallBackState3 operation. [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c35eccb1f614954b10cba3f74b7c301993b2f42e|(commit)]] * implement statfs [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=45222b9e02fb282eb0a8007a3d992dd229ec2410|(commit)]] * Add security support. Kerberos IV tickets are added as RxRPC keys are added to the session keyring with the klog program. open() and other VFS operations then find this ticket with request_key() and either use it immediately (eg: mkdir, unlink) or attach it to a file descriptor (open) [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=00d3b7a4533e367b0dc2812a706db8f9f071c27f|(commit)]] * Update the AFS fs documentation. [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=0795e7c031c4bda46fbdde678adf29de19bef7f4|(commit)]] * NFS: Introduce rpcbind: replacement for in-kernel portmapper [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a509050bd3b8e0aa269c2241aa10d74ca7701e2f|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=260800142071a3a33e4523c7578358c6e29c0f53|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e9b1c9c98c051f49a76dcd76f914c02653aecccb|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=df8b172a8880521396d2048ecef7e75df43b5bc4|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4c2eaf073f0cc2b5bf593b8133c078b9d9406e95|(commit)]] * JFFS2: Improve read_inode memory usage [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=df8e96f39103adf5a13332d784040a2c62667243|(commit)]] * UDF: Support files larger than 1G [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=31170b6ad4ebe6c43c1cc3b8112274cf59474de0|(commit)]] * FAT: It seems that the recent Windows changed specification, and it's undocumented. Windows doesn't update ->free_clusters correctly. This patch doesn't use ->free_clusters by default. (instead, add "usefree" for forcing to use it) [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=28ec039c21839914389975b896160a815ffd8b83|(commit)]] === Networking === * TCP Illinois congestion control. This is an implementation of TCP Illinois invented by Shao Liu at University of Illinois. It is a another variant of Reno which adapts the alpha and beta parameters based on RTT. The basic idea is to increase window less rapidly as delay approaches the maximum. See [[http://www.ews.uiuc.edu/~shaoliu/tcpillinois/index.html|the papers and talks]] to get a more complete description [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c462238d6a6d8ee855bda10f9fff442971540ed2|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=65d1b4a7e73fe0e1f5275ad7d2d3547981480886|(commit)]] * YeAH-TCP congestion control algorithm implementation. YeAH-TCP is a sender-side high-speed enabled TCP congestion control algorithm, which uses a mixed loss/delay approach to compute the congestion window. It's design goals target high efficiency, internal, RTT and Reno fairness, resilience to link loss while keeping network elements load as low as possible. For further details look here: http://wil.cs.caltech.edu/pfldnet2007/paper/YeAH_TCP.pdf [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5ef814753eb810d900fbd77af7c87f6d04f0e551|(commit)]] * TCP cubic update for 2.6.22. The new version improves on its scalability, fairness and stability. So in all properties, we confirmed it shows better performance [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e1c3e7ab6de9711d2e0e9daf369c6638582eb7e7|(commit)]] * Add RFC3742 Limited Slow-Start, controlled by variable sysctl_tcp_max_ssthresh [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=886236c1247ab5e2ad9c73f6e9a652e3ae3c8b07|(commit)]] * Add support to IPv4 over IPv6 tunnel [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c4d3efafcc933fd2ffd169d7dc4f980393a13796|(commit)]] * Replace compile-time debug option CONFIG_NET_DEBUG with a runtime switchable sysctl, /proc/sys/net/core/warnings [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a2a316fd068c455c609ecc155dcfaa7e208d29fe|(commit)]] * Implement the SACK-enhanced FRTO given in RFC4138 using the variant given in Appendix B [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4dc2665e3634d720a62bd27128fc8781fcdad2dc|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=127af0c44fc916908abd145914d65b9fe598bcd7|(commit)]] * Add two new spurious RTO responses to FRTO, sysctl tcp_frto_response is added to select amongst these responses [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3cfe3baaf07c9e40a75f9a70662de56df1c246a8|(commit)]] * SNMP: Support InTruncatedPkts [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=704aed53b4e43bebfbd425cf95b66794a9cfa2c2|(commit)]], OutMcastPkts and OutBcastPkts [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=80787ebc2bbd8e675d8b9ff8cfa40f15134feebe|(commit)]], add definitions for {In,Out}BcastPkts, specified in the updated IP-MIB RFC (RFC4293) [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=71ff6c0a857d11e70aec0c8f1e0d4ae9a45dd468|(commit)]], support InNoRoutes [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e91a47ebb130b90790c7a8c625ade4dcea246842|(commit)]], support InMcastPkts and InBcastPkts [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5506b54b36f067b9776935085c9f8e607b026b23|(commit)]] * SNMP IPV6: Netlink interface. [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=bf99f1bde3b3009af74874f3465f6861431fbb66|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1370b5a59b941ac3873b5e8614d496e9f481d670|(commit)]] * CCID3: Handle Idle and Application-Limited periods as specified in [RFC 4342, 5.1] [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=0c150efb280986db7958cf2a559b91d826241e59|(commit)]] * Use ktime as clocksource, which provides nanosecond timestamping support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=641b9e0e8b7f96425da6ce98f3361e3af0baee29|(commit)]], introduce SIOCGSTAMPNS ioctl to get timestamps with nanosec resolution [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ae40eb1ef30ab4120bd3c8b7e3da99ee53d27a23|(commit)]], add SO_TIMESTAMPNS / SCM_TIMESTAMPNS socket option [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=92f37fd2ee805aa77925c1e64fd56088b46094fc|(commit)]], export real timer resolution in /proc/net/psched [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4361cb17f0df5491fe6e2c3ae1defc98e9a64a79|(commit)]] * SCTP: Implement SCTP_PARTIAL_DELIVERY_POINT socket option [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d49d91d79a8dc5e85108a5ae1c8eef23dec135c1|(commit)]], implement SCTP_MAX_BURST socket option [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=703315712cfccfe0b45ef4aa6994527d8ee95e33|(commit)]], implement SCTP_ADDR_CONFIRMED state for ADDR_CHNAGE event [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1ae4114dce35dd1d32ed847f60b599dbbdfd5829|(commit)]], implement sac_info field in SCTP_ASSOC_CHANGE notification [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a5a35e76753d27e782028843a5186f176b50dd16|(commit)]], implement SCTP_FRAGMENT_INTERLEAVE socket option, introduced in draft-ietf-tsvwg-sctpsocket-13, [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b6e1331f3ce25a56edb956054eaf8011654686cb|(commit)]], honor flags when setting peer address parameters [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=bdf3092af601ccad765974652ab103162fbe14f4|(commit)]] * IPV6: Optimistic Duplicate Address Detection (RFC 4429) Support. [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=95c385b4d5a71b8ad552aecaa968ea46d7da2f6a|(commit)]] * NETFILTER * Remove IPv4 only connection tracking/NAT [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=587aa64163bb14f70098f450abab9410787fce9d|(commit)]] * Add support for user mode STP [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=9cde070874b822d4677f4f01fe146991785813b1|(commit)]] * ipt_DNAT: accept port randomization option [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=327850070b019a96853c533c152688546201c286|(commit)]] * ebt_arp: add gratuitous arp filtering, it allows checking that the IPv4 source address matches the IPv4 destination address inside the ARP header [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c15bf6e699f4c366f2d1e19ac5d7add21c6b5a19|(commit)]] * bridge-nf: filter bridged IPv4/IPv6 encapsulated in pppoe traffic [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=516299d2f5b6f9703b9b388faf91898dc636a678|(commit)]] * rfkill: add support for input key to control wireless radio [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=cf4328cd949c2086091c62c5685f1580fe9b55e4|(commit)]] === DM === * New device-mapper target that can delay I/O (for testing). Reads can be separated from writes, redirected to different underlying devices and delayed by differing amounts of time [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=26b9f228703f0518a90e7513d6fe7b6abeed5138|(commit)]] * log: fault detection [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=01d03a660e73fb524957c09825a3eb7c2ae7c205|(commit)]] * Allow offline devices [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2cd54d9bedb79a97f014e86c0da393416b264eb3|(commit)]] === SELinux === * Export initial SID contexts via selinuxfs [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f0ee2e467ffa68c3122128b704c1540ee294b748|(commit)]] * Extract the NetLabel SELinux support from the security server [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5778eabd9cdbf16ea3e40248c452b4fd25554d11|(commit)]] === Audit === * Add SIGNAL syscall class [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7f13da40e36c84d0d046b7adbd060af7d3717250|(commit)]] * Audit signal recipients [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e54dc2431d740a79a6bd013babade99d71b1714f|(commit)]] * Abnormal End of Processes [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=0a4ff8c2598b72f2fa9d50aae9e1809e684dbf41|(commit)]] * Audit inode for all xattr syscalls [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=510f4006e7a82b37b53c17bbe64ec20f3a59302b|(commit)]] * Complete message queue auditing [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4fc03b9beb2314f3adb9e72b7935a80c577954d1|(commit)]] * auditing ptrace [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a5cb013da773a67ee48d1c19e96436c22a73a7eb|(commit)]] === Crypto === * Add cryptd, a software async crypto daemon [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=124b53d020622ffa24e27406f2373d5a3debd0d3|(commit)]] * Add async blkcipher type [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b5b7f08869340aa8cfa23303f7d195f161479592|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=32e3983fe590ac4cd70c7728eb330d43cef031a7|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6158efc09016d3186263f6fd3a50667446ec4008|(commit)]] === KVM === * Add lazy FPU support for VT [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2ab455ccceb07945368709ba852e49f4c3119331|(commit)]] * Lazy FPU support for SVM [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7807fa6ca5af2e5660a0eb3cd90276ca0c5bdfc8|(commit)]] === Power Management === * Remove firmware disk mode [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=11d77d0c01b80e44c7aceb21928508dafce774f9|(commit)]] * Change /sys/power/disk display [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f0ced9b229cfbc76b5db9837b4b256b602d56610|(commit)]] == Drivers == === Network drivers === * zd1211rw: Add ID for ZyXEL AG-220 [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5d082fe85bf77f11aebb98d3bd29d66284d46851|(commit)]], add AL7230B RF support for ZD1211B [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ba528c4587005a004d136ed2e69705401ee4b878|(commit)]], add AL2230S RF support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f2a81a161d5089fe838ec6c4c7b6357f25aeacbe|(commit)]], add another ID for Linksys WUSBF54G [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a3fa3aba7a0e00aa1cbb13c9e9bed162fa057973|(commit)]], added new USB id for Planex GW-US54ZGL [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=019a67555857d33b34b105774acb3d2f59553424|(commit)]], add ID for ZyXEL AG-225H v2 [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=187bb417d478067b092c30c7b97bb3e13541a08c|(commit)]], add ID for Sitecom WL-117 [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=aa1d3a1841ff795f6c393a9a3f1b230cf70ff42d|(commit)]], more device IDs [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=aec91028db71cae7efa1101cf2e38c407096f023|(commit)]] * tc35815 driver rework. Current tc35815 driver is very obsolete and less maintained for a long time, and has been replaced it with a new driver based on one from CELF patch archive. The advantages of this version are: improved performance, NAPI, ethtool and netpoll support, power management support, 64-bit proof, TX4938 support, independence from JMR3927 [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=eea221ce48803a92e2319270b2b7b8e21cd470ca|(commit)]] * BNX2: Update 5708 firmware [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=41ccf61cf09c9a042415c04ccf0dc3c198623a9a|(commit)]], and 5709 firmware [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=874bb672fdd939aec37ad3a06b50be4ff8b4feac|(commit)]], add ipv6 TSO and checksum for 5709 [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4666f87a82cf74b63737a7f55a8b3b057a7b83df|(commit)]], add support for 5709 Serdes. [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=27a005b883984ef3a3cf24e7ddd78eb78902f494|(commit)]] * Infiniband: Convert the IP-over-InfiniBand network device driver over to using NAPI [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=8d1cc86a6278687efbab7b8c294ab01efe4d4231|(commit)]], add CQ comp_vector support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f4fd0b224d60044d2da5ca02f8f2b5150c1d8731|(commit)]] * Netxen: Port swap feature for multi port cards [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6c80b18df3537d1221ab34555c150bccbfd90260|(commit)]], multi PCI support for Quad cards [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=595e3fb8cf0c3c1c6d63dc3d7fd166e50bf150ff|(commit)]] * ucc_geth: migrate ucc_geth to phylib [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=728de4c927a3544b6d3da331b634035d4c75ca17|(commit)]], implement Transmit on Demand support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d5b9049df25f38b3eaf3af48d494b0747aae4349|(commit)]] * ehea: NAPI multi queue TX/RX path for SMP [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=18604c54854549ee0ad65e27ca9cb91c96af784c|(commit)]], dynamic add / remove port [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1acf2318dd136edfbfa30f1f33b43f69f2e2ec6c|(commit)]] * dmfe: add support for Wake on lan [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f1069046b4c7a5750611305433646c1bff3686fd|(commit)]], add support for suspend/resume [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=bc8a8387ba57db2275e717c19838a8d5a404c270|(commit)]] * hostap_cs: support ADLINK 345 CF [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=25ac6c2627acd68bd50307e61a3b581b2f82552e|(commit)]], add D-Link DWL-650 Rev. P1 product id [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=99d3184ac7b4e91c88073f474ebe758540b3ad82|(commit)]] * qla3xxx: Adding support for the Agere PHY (ET1011C) [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3efedf2e5b814f3edd99e4f4ca47a604871ebe0e|(commit)]], add ethtool get_pauseparam for improved bonding support. [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ec8263839aa8bc6eeee608a045e8f51738d7e436|(commit)]] * Add NAPI support to sb1250-mac.c [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=693aa9470d8273a0ded8b211a8f5f7c0835adf30|(commit)]] * Support for Marvell 7042 Chip [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6a3d586d8e8a50e4cfd7f8c36d82a53c5614e05b|(commit)]] * ipw2200: add 'channels' sysfs entry [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=375dd24428cfe900f4ed95d301fe604f8e0d459b|(commit)]] * sgiseeq: Add support for Seeq 8003 on Challenge S Mezz board. [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=78ee5b3cc88297bb98843c24b231e99f3f2886a0|(commit)]] * Netpoll support for Sibyte MAC [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d68300182828596016d7a6c0f23a912f07d9d0df|(commit)]] * S2IO: getringparam ethtool option [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=0cec35ebf341726e2490a4b01296a6dc132d1127|(commit)]] * Add support for the Davicom DM9161A PHY [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=12414db11da8789d9a6b549c4899250f6e116630|(commit)]] * atl1: add netconsole support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=497f050c42e46a4b1f6a9bcd8827fa5d97fe1feb|(commit)]] * pasemi_mac: PHY support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=bb6e9590792834f905a92e439a083254649c985c|(commit)]] * AT91RM9200 Ethernet: Support additional PHYs [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6b4aea7352bed6e2fdb59a3fe24ce2b42b31c35a|(commit)]] === SATA/IDE/SCSI === * SATA * HPA support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1e999736cafdffc374f22eed37b291129ef82e4e|(commit)]] * pata_hpt3x2n: Add HPT371N support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=28e21c8c0d44cd63bad4c62f94ef0c5a1cb8402c|(commit)]] * pata_cmd640: CMD640 PCI support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b2248dac07cf057e4af3ec970e7d36a09f44fac8|(commit)]] * sata_mv: clean up DMA boundary issues, turn on 64-bit DMA [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d88184fb2348a50f7c34f5d49a901c875b2e0114|(commit)]] * pata_pcmcia: recognize 2GB CompactFlash from Transcend [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=48aaae7a2fa46e1ed0d0b7677fde79ccfcb8c963|(commit)]] * Add the ATI SB700 SATA controller device id to AHCI pci table [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2bcfdde6767f2f07891d2753c25220012fe5e6d2|(commit)]] * Add MCP73/MCP77 support to AHCI driver [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=0522b2869d89b095bf417c8cc6fa404842e91903|(commit)]] * SCSI * sd: implement START/STOP management [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c3c94c5a2fb43a654e777f509d5032b0db8ed09f|(commit)]] * lpfc: Add support for async scanning [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=47a8617c7df6cc8b8617a3deb5a36bbae1997d13|(commit)]], added support for 8G speed and new HBAs [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b87eab38be141c16026cb830064d661ca705ad23|(commit)]] * ipr: Enable multi-initator RAID support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ac09c349080008fdd54a15616a1b14771772d867|(commit)]] * Add SG_IO ioctl to cciss [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=03bbfee58d440f5dc2e880944ab75fc644534794|(commit)]] * qla2xxx: Add MSI support. [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=cbedb601868821c9bfdcf1e9194be160deceeecb|(commit)]] * SUNESP: Complete driver rewrite to version 2.0, with tagged queuing support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=cd9ad58d4061494e7fdd70ded7bcf2418daf356a|(commit)]] * IDE * Make /proc/ide/ optional [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ecfd80e4a514123070b4cfb674b817ba75055df2|(commit)]] * pdc202xx_new: enable DMA for all ATAPI devices [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=247b03f8dc4c01659030889f7fb4574013974ac6|(commit)]] * ide-cs: recognize 2GB CompactFlash from Transcend [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=aa12b2842aba8cc367a2e1ddb5c6ae4fd8ddb1da|(commit)]] * cmd64x: fix multiword and remove single-word DMA support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=60e7a82f1acb76af05d81e93ca0f65fdd52c23c2|(commit)]] * sl82c105: DMA support code cleanup [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=688a87d145e04f6761c63e7f2e19fd9b3e4ca060|(commit)]], rework PIO support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e93df705af1992dbf5956a8c80fcb9987bc595c0|(commit)]] * Add the IDE device ID for ATI SB700 [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6c6a2a8d201b4f8fd54167802da5ddbe08abd744|(commit)]] * Add the MCP73/77 support to PATA driver [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c1183a3345f2e553fa0907a453cbb311c7e1698c|(commit)]] === Graphics === * fbdev: display class [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2ee121631b9dd0291502ccac6f897907505faf8c|(commit)]] * pm2fb: 3dlabs Permedia 2V reference board support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f1c15f938d810b5eb38c85a28e5e9d2af07d135a|(commit)]] * fbdev: add support for AVR32 [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=880169dd2edc4297b7811a0542be9766ca6945bc|(commit)]], advertise limitations of drawing engine [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=bf26ad72a60c0009a99179b449a43daa6bf4b4f6|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2d2699d984924890f6dac8cf51c3b6311f56816c|(commit)]] * Geforce 7300 gt fb support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=bc0ca06e24545117b69c94b1219dbe19392a0c5a|(commit)]] * radeonfb: Add support for Radeon xpress 200m [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=dd1447134454b169d5ae353aceb93f2368db8547|(commit)]] * tgafb: TURBOchannel support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=86c6f7d08b2868ba7cc1ef509c76ee9e9266af40|(commit)]], acceleration code [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=28b230ed71df88a3b2df58e3f177c3c7be1753b9|(commit)]] * pm2fb: accelerated fillrect and copyarea [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=87a7cc685a847800482db1fd74504b9b4b42264e|(commit)]] * intel_agp: Add support for 965GME/GLE [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c8eebfd6807f37b9a8a7ce3a64b60429788dfb54|(commit)]], 945GME [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=df80b148869291621ddf51eb8716658d5bfba811|(commit)]] and G3x [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=874808c6dd429f7431b906a32c7f78a68e7636af|(commit)]] * i915: Add new pciids for 945GME, 965GME/GLE [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2f4042b186b9bfe82f48fe801619c6c285c16bef|(commit)]] * Add support SiS based XGI chips to SiS DRM [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ad5c980fdef0f339eb7c5888525acf9ce33855ec|(commit)]] === Sound === * ice1724 - Functioning support for Prodigy 192 [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7d4b4380d37025f0b13ae951e0cb2ff7184dc5bb|(commit)]] * ASoC Samsung S3c24xx build [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=86e1f0df2f88fd86657ddb993bba468a75128e02|(commit)]] * hda-codec: Add support of 96kHz back [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a961f9fe8c6b0f3138a97582e1ddf05c4560593b|(commit)]], add ALC662 support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=bc9f98a9815c452a74e5eb9cbd2ed61b337fdcd2|(commit)]], add ALC861VD Lenovo support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=bdd148a307e230517bf891c108e0eec68ba5d10f|(commit)]], add support for Gigabyte S-Series GA-M57SLI-S4 motherboard [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=57b14f24d2a7aca65ddc6432fa89ebedf1219cc7|(commit)]], allow opening SPDIF while analog dup mode [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5930ca41857f57e130b4438a9a261b2ab91f6fcf|(commit)]], add support for Asus A8JN Laptop [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=658fba0efe93fdef44f65cff391ae2a881e30d90|(commit)]], add support for new HP DV series laptops [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4d69d756d19a4f457749f3667ad7fc8984bba15c|(commit)]], add ATI RS780,R600 HDMI audio support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e6db1119318abdc445d541b560744bd6551b1b3d|(commit)]], add support for MSI K9N Ultra [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=799f88a3126cae3e59409f135da925cb0c1bc2c1|(commit)]], add support for ASUS A8J modem [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3b542985edeed1a1af124ee055e2d35a30489d93|(commit)]], add support for Gateway NX860 [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2c11f955b27edaf0270185781391abe6f39b7ed0|(commit)]] * hdspm: support for Master mode of AES32 and recent MADI [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ffb2c3c07f6ffd61923de736139248b31dc6f642|(commit)]] * ASoC Samsung S3c24xx audio DMA [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c0f41bb1717ae31f806615e81b808753271dd3d9|(commit)]] and I2S support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c1422a6658ef6101fc5a979021487c732cb177a1|(commit)]] * ASoC WM8753 codec - build changes [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=33703b73980f0a84251c298d00ad5fbcce81ca31|(commit)]] * ASoC AT91xxxx - SSC port DSP support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=36b8a8bbb402911e59acf13b5074eb8915e47a6a|(commit)]] * ASoC WM8753 codec support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1f53aee0e0b398bad0c6ec2cd5ca2bccd4fbd56b|(commit)]] * ac97 - Smart 5.1 for VIA 1617a codec [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e9024ccc2d54a71dfac583ede6082e265264d871|(commit)]] * usb-audio: another Logitech Quickcam ID [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d417045e7deeb37d97793805fe302da7b4f82eec|(commit)]] * Add Native Instrument usb audio device support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=523f1dce37434a9a6623bf46e7893e2b4b10ac3c|(commit)]] * The scheduled removal of OBSOLETE_OSS options [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=44171df8e944f0bc8f7fa3f6d080f3e671431989|(commit)]] === Input === * i8042: add Fujitsu touchscreen/touchpad PNP IDs [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b9973954c5f3264a2afa6ec357adb542f4b76e06|(commit)]], add Panasonic CF-29 to nomux list [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=cc8310e33b0439b43cdb19de55b2507cb27bd229|(commit)]], add HP Pavilion DV4017EA to the MUX blacklist [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6e782584e0713ea89da151333e7fe754c8f40324|(commit)]] * psmouse: Add support for eGalax PS/2 touchscreen controller [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=24bf10ab2d72863a14187905fd992ca8119c809e|(commit)]], allow disabling certain protocol extensions [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=55e3d9224b60df0fd2dc36bff9b538ce40fd9586|(commit)]] * Lifebook - add signature of Panasonic CF-29 [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=43887ba15a0c1e293be63793541fe444778c0474|(commit)]], work properly on Panasonic CF-18 [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e7afcd1bf784dde4cd6c6efbf9a4709626cc8e08|(commit)]] * Add driver for MIPS Cobalt back panel buttons [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=bebb8a2bc180a4c920c57e89b2d713a34c1d096c|(commit)]] * Wistron: Add support for Travelmate 610 [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=bc413c9563db6d596e841b2756ed3fccc48de5c0|(commit)]], add acerhk laptop database [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6480e2a275ff8ff48ae23a011616fcf819ed7a4e|(commit)]] * Add logical channel support for ATI Remote Wonder II [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a1421d3c780c373d5f74a0ab99b0652041d61876|(commit)]] * Remove old USB touchscreen drivers: itmtoch, mtouchusb and touchkitusb. They have been replaced with composite usbtouchscreen driver some time ago and can be removed now [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=db61a9124880a1d79b7b320d4b6bef717f23e485|(commit)]] === MTD === * Driver support for NAND flash devices on CM-x270 modules [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=54d33c4c715b80cc022b8e4974a4de693c96fc99|(commit)]] * Support for generic platform NAND driver [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=711fdf627ce1374796632f16acec1ab63d11e38f|(commit)]] * Remove MTD_OBSOLETE_CHIPS (jedec, amd_flash, sharp) [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b7aa48be1e7a11e36448a7db58931bbf735d2718|(commit)]] * MTD Driver for AT26Fxxx dataflash devices [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=340ea370c2ce89d1c15fbf785460f2f74314ce58|(commit)]] * NAND: Add Micron Manufacturer ID [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=8c60e5475d8ca614d712cd3e2fe7330480709e02|(commit)]] * Nandsim: Add partition capability [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2b77a0ed54eeea61937e7f71b0487b815edfbcdf|(commit)]], allow arbitrary NAND size [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a5ac8aeb29000fcab8d91848273a6616fcd039ee|(commit)]], optionally report wear information [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=57aa6b545f6f772dd317ccd29bdada999b16a13d|(commit)]], simulate flash errors [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=514087e74fb401a6621e8c836f4eaab87c269f24|(commit)]] * NOR: Support for auto locking flash on power up [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=0ecbc81adfcb9f15f86b05ff576b342ce81bbef8|(commit)]] === USB === * Usbmon: Extended text API [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f1c9e30b5e4cdd8aae5f0ea87004b1b61ec41881|(commit)]], and add the "bus zero" feature to the usbmon. If a user process specifies bus with number zero, it receives events from all buses [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ecb658d387dc09f344b3d755e8674076072032c7|(commit)]] * Remove ancient/broken CRIS hcd [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1b101ceb9162086035ce0c9cbe83ca7b4845179a|(commit)]] * Add power/level sysfs attribute. The new power/level sysfs attribute allows users to force the device on (with autosuspend off), force the device to sleep (with autoresume off), or return to normal automatic operation [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2add5229d77a3de08015feef437653e02372162f|(commit)]] * Add "busnum" attribute for USB devices [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=83f7d958eab2fbc6b159ee92bf1493924e1d0f72|(commit)]] * Add the detection for the Bandrich Bandluxe C100/C100S/C120 HSDPA Data Card [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3f6e58467c635ebbb4a139cbe5e0c1f46792e18c|(commit)]] * cxacru: ADSL state management [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6a02c996bce297a782432e29c69268356e97fadd|(commit)]] * Add picdem device to ldusb [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=79dcdbf67d8885375711c4f2261168fa87389a31|(commit)]] * ftdi_sio: Add USB ID of ADSTech USBX-707 [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=868e440d2f2b55f790d106100a46034b6aa12577|(commit)]] * CP2101: new Device IDs [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=92f5cae2e8914d2d762728dd7629e5121ba070f3|(commit)]] * Make usbdevices export their device nodes instead of using a separate class [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=9f8b17e643fe6aa505629658445849397bda4e4f|(commit)]] * Add Freescale high-speed USB SOC device controller driver [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b504882da539c17ce6fee9da2a97f2fafabd495d|(commit)]] * Add FF support for Logitech Force 3D Pro Joystick [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=320c01500c6ecb189c577b921a2357c7a56aaebc|(commit)]] * Thrustmaster firestorm dual power v1 support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=38d4b89e274c7eed99fcf6c3f8686f70edd6ab7c|(commit)]] * Add support for Wisegroup MP-8800 Quad Joypad [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=42cfb632f0210caa7d979666058075b06fc4680c|(commit)]] * Add support for Olimex arm-usb-ocd JTAG interface serial port [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=fa91d43b914b77637653d984416e17e182f7b807|(commit)]] * Add support for Sierra Wireless Aircard 595U [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5b7da8f6ff1aaf5a500dc798f4d1c2d6e98420a5|(commit)]] === V4L/DVB === * Add support for video output overlays. [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b2787845fb91da18ebb079dc9297f92d990e9fe1|(commit)]] * M920x: Initial support for devices likely manufactured by Dposh [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f8e0bd5db4cc636fec35264c2396adb1b633ee05|(commit)]] * M920x: Add support for LifeView TV Walker Twin [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=aa50ec2b4998f3937d7050826db190c82bed64e7|(commit)]] * Add support for the "Elitegroup ECS TVP3XP FM1246", the "KWorld DVB-T 210", and the Animation Technologies LR214 Rev F onwards (SAA7131) to the saa7134 driver [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b39423a95c1fd2508e463130b77d8256ef3fcead|(commit)]] * Add support for VIDIOC_INT_G/S_STD_OUTPUT [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=045290b2a90ff1be60196a061aadecf70eb6bcc3|(commit)]] * Added VIDIOC_INT_G_STD_OUTPUT and VIDIOC_INT_S_STD_OUTPUT to allow drivers to set the TV standard for video output separately from the video capture. This is needed for cx23415 support where the decoder is separate from the encoder and can have a different TV standard. Modified the saa7127 module to listen to VIDIOC_INT_G/S_STD_OUTPUT instead of VIDIOC_G/S_STD. * Additional card support for bttv driver [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1ebba670edac28d4ea37579453417ced71fd9128|(commit)]] * Add V4L2_CAP_VIDEO_OUTPUT_POS capability [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=206ebaf32795cf1582b1e2ff2ec6a560c9e986b8|(commit)]] * Add support for the cx23415 MPEG decoding features. [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2435be11ae1afb64ac7dfb25e10b6e3037ab0522|(commit)]] * Add support for the extra keys in the black Technotrend 1500 IR [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=28aedb8fd95b9a11cb9dc75d3be1f30227cb4385|(commit)]] * Add support for VIDIOC_G_CHIP_IDENT [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3434eb7e14d9587ee56f3462bcfa5726b62dadb9|(commit)]] * Add tveeprom entry for tuner LG S701D MK3 [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3b35b4b38049356b1e0b8e64ee27d1aca606b766|(commit)]] * Add raw bayer support to the ov7670 driver [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=585553ecedabf434e5cdc59d05bf64596ceab7bc|(commit)]] * Added support for tda827x tuners with preamplifiers [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=58ef4f924cf2824ae198b1fec3eea1e4059a021c|(commit)]] * Add support for three new MPEG controls. [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5eee72e88416ef11f55791626440ac3c9018c4c0|(commit)]] * Add Logitech ViewPort AV 100 [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6b1ce3c1017adce52675ec72825f0b052a6af5d4|(commit)]] * Dvb: Remove lgh06xf driver [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6bdcc6e6dbab8daffd05e5026486f34ba41a6c72|(commit)]] * Add radio support for the Lifeview FlyDVB-T Duo [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7c7fea669d77048b3013567dfb4c9171d536da05|(commit)]] * Add support for remote of Asustech P7131 Hybrid LNA [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=904ab884a25fbaebe5d76d633d1c30c9f2a7c0aa|(commit)]] * Add support for Opera S1- DVB-USB [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=941491f3a52c34506137060716ce73e642ee326e|(commit)]] * Sn9c102: Make driver V4L2 not V4L1 [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=990e3743b505a0bb08c04a381d5477e19d31ef5e|(commit)]] * Pwc: cisco VT Camera support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a63e157fc6147ae9792325cb55fa0c6d1d0f9905|(commit)]] * Tda10023: Add support for frontend TDA10023 [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=aa323ac89c5724de89656fcf31590d19e74594ec|(commit)]] * M920x: add support for Anubis Electronics / MSI Digi Vox Mini II [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d4ca23b188d458ef508649a0c6866937b48d4bf8|(commit)]] * 400e: Add support for Pinnacle PCTV Sat Pro USB (450e) [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ddc9ece89dbeb374e34772232f5e26f64ce63390|(commit)]] * Added / corrected support for some ASUS hybrid boards [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e06cea4cb4a16076dfca4863b12e1c4aeb781c8d|(commit)]] * Add some missing Hauppauge and Belkin devices to the driver [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e6c1df5581320720b8212a543e055e19d46f32bb|(commit)]] * Added card definition for AverMedia M102 miniPCI [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e95d317da2de7116ef66fa16bd9664cd39f1c11c|(commit)]] * Added support for Sabrent TV-PCB05 card. [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=53958b35e4f8fa14ebcc098018635b306db2bde1|(commit)]] === I2C === * New Simtec I2C bus driver [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=bcda9f1eb0de0e1108c8b2765e5b7afa0dfb6c9f|(commit)]] * New i2c-tiny-usb bus driver [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e8c76eed2ecdb8e9ca5339761d2c076d32b7cbca|(commit)]] * Bitbanging I2C bus driver using the GPIO API [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1c23af90dc44d05bbb6a3b5246ab664b1f943943|(commit)]] * i2c-nforce2: Add support for the MCP61 and MCP65 [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f75803de6ae9aaebaf096d4590b40503c896eca7|(commit)]] === ACPI === * ibm-acpi: rename driver to thinkpad-acpi [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f21f85de4b3b9ad4a671fb19a889c16db2ea38b2|(commit)]] * thinkpad-acpi: driver sysfs conversion [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=176750d68801bfa4a88d1cf54174aa0347d7e5d8|(commit)]], [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7252374a39d794879f5e47bcfa0a16e7599b27b5|(commit)]], add sysfs support to the thermal subdriver [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2c37aa4e22dd55070c608290c5031f2ee93e69ce|(commit)]], add sysfs support to the cmos command subdriver [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b616004c70dd7f60a1477c3e9d6fddd00ee1fa37|(commit)]], add sysfs support to wan and bluetooth subdrivers [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d3a6ade4f84416d774c3e5db5faae1840d55bd97|(commit)]], add sysfs support to hotkey subdriver [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a0416420e2c6244792d6f308183ad57c40532078|(commit)]], update brightness sysfs interface support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7d5a015eece8be9186d3613d595643a520555e33|(commit)]], * sony-laptop: Replace sonypi [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=74a882e4857414a98ca5904b3be90fb6aba2f25e|(commit)]], add SNY6001 device handling (sonypi reimplementation) [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=33a04454527edd33d4a6332a2944d2b4f46fbb18|(commit)]], add edge modem support (also called WWAN) [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=9476cdfae61a3c3fa61d06c18dd002b03671ca9f|(commit)]], make meye use sony-laptop instead of sonypi [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=cbefb762b67fa6d3eb2a48ae3380358a940e8c9d|(commit)]], add camera enable/disable parameter [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5f3d2898d79520bc8d8706ed3859060f9cbb969e|(commit)]] * asus-laptop: add GPS support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e539c2f69ca17f71dd41ba89cde67612a1326c57|(commit)]] === Watchdog === * Add support for the w83627thf chipset. [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=0e94f2ee0d1947ba6c2c00c3e971ff93ce8edec1|(commit)]] * The scheduled removal of the i8xx_tco watchdog driver [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=dbf379ea9ae878bf88d2b3cf8f74ce4536e25d19|(commit)]] === Bluetooth === * Add HCIUARTGETDEVICE support for HCI line discipline [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d215874460e7657b8e104de024140e0932690450|(commit)]] * Add support for Targus ACB10US USB dongle [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c51bd3d3d883d900efbeab3697ae182d60bdd217|(commit)]] === Cpufreq === * Support rev H AMD64s in powernow-k8 [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=30046e5885848fe5c2c66177dca6b277323e31ab|(commit)]] === HwMon === * hwmon/smsc47m1: Add support for the LPC47M292 [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=8eccbb6fb97a5b54a9db166399f0d24f33114522|(commit)]] === Various === * Add new_id to PCMCIA drivers [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6179b5562d5d17c7c09b54cb11dd925ca308d7a9|(commit)]] * IrDA: KingSun/DonShine USB IrDA dongle support. [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a2af421f1819946556c6f467b1efdd0dc84af4d5|(commit)]] * Firewire (old stack): eth1394: allow MTU bigger than 1500 [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=17bab407d54ba1320d71a45641ecffc33bd331c1|(commit)]] * tifm: add sysfs attribute for tifm devices [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4e64f223857b138e3474bedc967d51db25c414b3|(commit)]] * mmc: Support for MMC 4.2 sector based cards [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=85a18ad93ec66888d85758630019b10a84257f3c|(commit)]] * smsc-ircc2: add PNP support [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d0d4f69bb65a8c1c1430c577a583632709b874c6|(commit)]] * Remove the blink driver [[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2bcb1b7de9eeea969a25d5f2b4511195cca9f2a2|(commit)]] == Crashing soon a kernel near you == This is a list of some of the ongoing patches being developed at the kernel community that will be part of future Linux releases. Those features may take many months to get into the Linus' git tree, or may be dropped. The features are tested in the -mm tree, but be warned, it can crash your machine, eat your data (unlikely but not impossible) or kidnap your family (just because it has never happened it doesn't mean you're safe): * Ingo Molnar's CFS / Con Kolivas' RSDL process scheduler * Con's swap prefetching * Utrace [[http://lwn.net/Articles/224772|(LWN article)]] * [[http://lwn.net/Articles/236038/|Process containers]] * Revoke()/frevoke() system calls [[http://lwn.net/Articles/192632/|(LWN article)]] * Mel Gorman's fragmentation avoidance patches and Lumpy reclaim * Unionfs * EXT 4 patches [[http://ext4.wiki.kernel.org/|(wiki)]] * Lguest * [[http://lwn.net/Articles/235164|On-demand Read-ahead]] * Xen for x86-64 * Tickless patchess for x86-65 * Reiser 4 * The [[http://kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.22-rc4/2.6.22-rc4-mm1/broken-out/fallocate-implementation-on-i86-x86_64-and-powerpc.patch|fallocate() system call]] * [[http://lwn.net/Articles/234441|LogFS]]