#pragma section-numbers on #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.27 development The linux 2.6.27 kernel ([http://kernel.org/pub/linux/kernel/v2.6/testing/ChangeLog-2.6.27 full SCM git log]) is neither released nor finished. Its merge window has officially been closed by the [http://marc.info/?l=linux-kernel&m=121730204732684&w=2 2.6.27-rc1 release on July 28th 2008.] '''Summary''': 2.6.27 add a new filesystem (UBIFS) optimized for "pure" flash-based storage devices, the page-cache is now lockless, much improved Direct I/O scalability and performance, delayed allocation for ext4, multiqueue networking, an alternative hibernation implementation based on kexec/kdump, data integrity support in the block layer for devices that support it, a simple tracer called ftrace, a mmio tracer, sysprof support, extraction of all the in-kernel's firmware to /lib/firmware, XEN support for saving/restorig VMs, improved video camera support, support for the Intel wireless 5000 series and RTL8187B network cards, a new ath9k driver for the Atheros AR5008 and AR9001 family of chipsets, more new drivers, improved support for others and many other improvements and fixes. [[TableOfContents()]] = Prominent features (the cool stuff) = == Lockless page cache and get_user_pages() == Recommended LWN article: [http://lwn.net/Articles/275808/ "Toward better direct I/O scalability"], [http://lwn.net/Articles/291826/ "The lockless page cache"] The page cache is the place where the kernel keeps in RAM a copy of a file to improve performance by avoiding disk I/O when the data that needs to be read is already on RAM. Each "mapping", which is the data structure that keeps track of the correspondence between a file and the page cache, is SMP-safe thanks to its own lock. So when different processes in different CPUs access different files, there's no lock contention, but if they access the same file (shared libraries for example), they can hit some contention on that lock. In 2.6.27, thanks to some rules on how the page cache can be used and the usage of RCU, the page cache will be able to do lookups (ie., "read" the page cache) without needing to take the mapping lock, and hence improving scalability. Single threaded lookup and modification performance of the page cache is also [http://lwn.net/Articles/285339/ improved]. Code: [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=47feff2c8eefe85099f87c43d3096855f0085ca0 (commit 1], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e286781d5f2e9c846e012a39653a166e9d31777d 2], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a60637c85893e7191faaafa6a72e197c24386727 3)] Lockless get_user_pages(): get_user_pages() is a function used in direct I/O operations to pin the userspace memory that is going to be transferred. It's a complex function that requires to hold the mmap_sem semaphore in the mm_struct struct of the process and the page table lock. This is a scalability problem when there're several processes using get_user_pages in the same address space (for example, databases that do Direct I/O), because there will be lock contention. In 2.6.27, a new get_user_pages_fast() function has been introduced, which does the same work that get_user_pages() does, but its simplified to speed up the most common workloads that exercise those paths within the same address space. This new function can avoid taking the mmap_sem semaphore and the page table locks in those cases. Benchmarks showed a 10% speedup running a OLTP workload with a IBM DB2 database in a quad-core system Code: [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=21cc199baa815d7b3f1ace4be20b9558cbddc00f (commit 1], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=8174c430e445a93016ef18f717fe570214fa38bf 2], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f5dd33c494a427b1d1a3b574de5c9e511c888864 3], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=bc40d73c950146725e9e768e856a416ec8949065 4], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=652ea695364142b2464744746beac206d050ef19 5], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=30002ed2e41830ec03ec3e577ad83ac6b188f96e 6)] == Ext4: Delayed Allocation == In this release, Ext4 is adding one of its most important planned features: Delayed allocation, also called [http://en.wikipedia.org/wiki/Allocate-on-flush "Allocate-on-flush"]. It doesn't changes the disk format in any way, but it improves the performance in a wide range of workloads. This is how it works: When an application {{{write()}}}s data to the disk, the data is usually not written immediately to the disk, it's cached in RAM for a while. But despite of not being written immediately to the disk, the filesystem allocates the neccesary disk structures for it immediately. Delayed allocation consists on not allocating space for that cached data - instead, only the free space counter is updated when {{{write()}}} is called. The on-disk blocks and structures are allocated only when the cached data is finally written to the disk - not when a process writes something (IOW: "delayed allocation"). This approach, used by filesystems such as XFS, btrfs, ZFS, or Reiser 4, improves noticeably the performance on many workloads. It also results in better block allocation decisions, because when allocation decisions are done at {{{write()}}}-time, the block allocator can not know if any other {{{write()}}}s are going to be done. Code: [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=29a814d2ee0e43c2980f33f91c1311ec06c0aa35 (commit 1], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=64769240bd07f446f83660bb143bb609d8ab4910 2], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d2a1763791a634e315ec926b62829c1e88842c86 3], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=cd1aac32923a9c8adcc0ae85e33c1ca0c5855838 4], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=dd919b9822c5fd9fd72f95a602440130297c3857 5)] There's also a new implementation of the default {{{data=ordered}}} journaling mode based in {{{inodes}}}, not in {{{jbd}}} buffer heads. Code: [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c851ed540173736e60d48b53b91a16ea5c903896 (commit 1], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=678aaf481496b01473b778685eca231d6784098b 2], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=87c89c232c8f7b3820c33c3b9bc803e9358027da 3], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=772cb7c83ba256a11c7bf99a11bef3858d23767c 4)] == Kexec jump: kexec/kdump based hibernation == Recommended LWN article: [http://lwn.net/Articles/242107/ "Yet another approach to software suspend"] Kexec is a Linux feature that allows loading a kernel into memory and executing it, allowing to reboot to a new kernel without rebooting. This infrastructure was used to implement kdump, a kernel crash dump system: A "safe kernel" is loaded into memory as soon as the system starts, and if the running kernel crashes, the oops code kexec's to the "safe kernel", which is able to dump the memory that it's not using to the disk or somewhere else. This infrastructure has been enhanced in 2.6.27 to be able to be used as an hibernation implementation: Instead of kexec'ing a safe kernel to dump the system memory, a system can kexec to a kernel that will dump all the memory on the disk and then shutdown the system. When the systems boots, the initrd can load the dumped system, and restore it. This hibernation implementation does not replace the existing hibernation implementations, it's just an alternative. It has some advantages, like not depending on ACPI. For now it only works on x86-32. Code: http://lwn.net/Articles/242107/ [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3ab83521378268044a448113c6aa9a9e245f4d2f (commit)]. [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=89081d17f7bb81d89fa1aa9b70f821c5cf4d39e9 (commit)] == UBIFS and OMFS == Recommended LWN article: [http://lwn.net/Articles/276025/ "UBIFS"] [http://lwn.net/Articles/278028/ "OMFS"] UBIFS is a new filesystem designed to work with flash devices, developed by Nokia with help of the University of Szeged. It's important to understand that UBIFS is very different to any traditional filesystem: UBIFS does not work with block based devices, but pure flash based devices, handled by the MTD subsystem in Linux. Hence, UBIFS does not work with what many people considers flash devices like flash-based hard drives, SD cards, USB sticks, etc; because those devices use a block device emulation layer called FTL (Flash Translation Layer) that make they look like traditional block-based storage devices to the outside world. UBIFS instead is designed to work with flash devices that do not have a block device emulation layer and that are handled by the MTD subsystem and present themselves to userspace as MTD devices. UBIFS works on top of UBI volumes. UBI is a LVM-like layer which was included in [http://kernelnewbies.org/Linux_2_6_22 Linux 2.6.22], which itself works on top of MTD devices. UBIFS offers various advantages to JFFS2: faster and scalable mount times (unlike JFFS2, UBIFS does not have to scan whole media when mounting), tolerance to unclean reboots (UBIFS is a journaling filesystem), write-back (which improves dramatically the performance), and support of on-the-flight compression. Documentation: UBIFS [http://www.linux-mtd.infradead.org/faq/ubifs.html FAQ], more [http://www.linux-mtd.infradead.org/doc/ubifs.html documentation] Code: [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1e51764a3c2ac05a23a22b2a95ddee4d9bffb16d (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=0d7eff873caaeac84de01a1acdca983d2c7ba3fe (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e56a99d5a42dcb91e622ae7a0289d8fb2ddabffb (commit)] OMFS stands for "Sonicblue Optimized MPEG File System support". It is the proprietary file system used by the Rio Karma music player and ReplayTV DVR. Despite the name, this filesystem is not more efficient than a standard FS for MPEG files, in fact likely the opposite is true. Code: [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1b002d7b173ae7cc15ed90d3c07f6d106babc510 (commit 1], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=36cc410a6799a205bfc6ccc38abd9d52f2afba64 2], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=555e3775ced1d05203934fc6529bbf0560dd8733 3], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=63ca8ce2a2641f9cb5f0add33ced4591681d1cd7 5], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=8f09e98768c17287df076580c4cc72ac358312c6 6], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a14e4b572b0ee5c6dbe4aceb83d00b2c969324e9 7], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a3ab7155ea21aadc8a4d5687e91b3d876973185e 8)] == Block layer data integrity support == Recommended LWN article: [http://lwn.net/Articles/290141/ "Block layer: integrity checking and lots of partitions"] Modern filesystems feature checksumming of data and metadata to protect against data corruption. However, the detection of the corruption is done at read time which could potentially be months after the data was written. At that point the original data that the application tried to write is most likely lost (if there's not data redundancy). The solution is to ensure that the disk is actually storing what the application meant it to. Recent additions to both the SCSI family protocols (SBC Data Integrity Field, SCC protection proposal) as well as SATA/T13 (External Path Protection) try to remedy this by adding support for appending integrity metadata to an I/O. The integrity metadata includes a checksum for each sector as well as an incrementing counter that ensures the individual sectors are written in the right order. And for some protection schemes also that the I/O is written to the right place on disk. Code: [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7ba1ba12eeef0aa7113beb16410ef8b7c748e18b (commit 1], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c1c72b59941e2f5aad4b02609d7ee7b121734b8d 2], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4469f9878059f1707f021512e6b34252c4096ee7 3], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=db007fc5e20c00b356e9ffe2d0e007398c65c837 4], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=511e44f42e3239a4df77b8e0e46d294d98a768ad 5], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7027ad72a689797475973c6feb5f0b673382f779 6], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e0597d70012c82e16ee152270a55d89d8bf66693 7], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=af55ff675a8461da6a632320710b050af4366e0c 8], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f11f594edba7f689af9792a5673ed59d660ad371 9)] == Multiqueue networking == Recommended LWN article: [http://lwn.net/Articles/289137/ "Multiqueue networking"] From that article: ''One of the fundamental data structures in the networking subsystem is the transmit queue associated with each device [...] This is a scheme which has worked well for years, but it has run into a fundamental limitation: it does not map well to devices which have multiple transmit queues. Such devices are becoming increasingly common, especially in the wireless networking area. Devices which implement the Wireless Multimedia Extensions, for example, can have four different classes of service: video, voice, best-effort, and background. Video and voice traffic may receive higher priority within the device - it is transmitted first - and the device can also take more of the available air time for such packets''. Linux 2.6.27 adds support for those devices Code: [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e8a0464cc950972824e2e128028ae3db666ec1ed (commit)] == ftrace, sysprof support == Ftrace is a very simple function tracer -unrelated to kprobes/SystemTap- which was born in the -rt patches. It uses a compiler feature to insert a small, 5-byte No-Operation instruction to the beginning of every kernel function, which NOP sequence is then dynamically patched into a tracer call when tracing is enabled by the administrator. If it's disabled, the overhead of the instructions is very small and not measurable even in micro-benchmarks. Although ftrace is the function tracer, it also includes an plugin infrastructure that allows for other types of tracing. Some of the tracers that are currently in ftrace include a tracer to trace context switches, the time it takes for a high priority task to run after it was woken up, how long interrupts are disabled, the time spent in preemption off critical sections. The interface to access ftrace can be found in /debugfs/tracing, which are documented in Documentation/ftrace.txt. There's also a sysprof plugin that can be used with a development version of sysprof - "svn checkout http://svn.gnome.org/svn/sysprof/branches/ftrace-branch sysprof" Code: [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7c731e0a495e25e79dc1e9e68772a67a55721a65 (commit 1], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=502825282e6f79c975a644afc124432ec1744de4 2], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6e766410c4babd37bc7cd5e25009c179781742c8 3], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=16444a8a40d4c7b4f6de34af0cae1f76a4f6c901 4], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=bc0c38d139ec7fcd5c030aea16b008f3732e42ac 5], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1b29b01887e6032dcaf818c14999c7a39593b4e7 6], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=35e8e302e5d6e32675df2fc1dd3a53dfa6630dc1 7], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=352ad25aa4a189c667cb2af333948d34692a2d27 8], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=81d68a96a39844853b37f20cc8282d9b65b78ef3 9], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6cd8a4bb2f97527a9ceb30bc77ea4e959c6a95e3 10], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3d0833953e1b98b79ddf491dd49229eef9baeac1 11], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b0fc494fae96a7089f3651cb451f461c7291244c 12], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4e491d14f2506b218d678935c25a7027b79178b1 13] [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f06c38103ea9dbca27c3f4d77f444ddefb5477cd 14], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f984b51e0779a6dd30feedc41404013ca54e5d05 15], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=014c257cce65e9d1cd2d28ec1c89a37c536b151d 16], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=bd3bff9e20f454b242d979ec2f9a4dca0d5fa06f 17)] == Mmiotrace == Recommended LWN article: [http://lwn.net/Articles/270939/ "Tracing memory-mapped I/O operations"] Mmiotrace is a tool for trapping [http://en.wikipedia.org/wiki/IO_port memory mapped IO] (MMIO) accesses within the kernel. Since MMIO is used by drivers, this tool can be used for debugging and especially for reverse engineering binary drivers. Code: [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=8b7d89d02ef3c6a7c73d6596f28cea7632850af4 (commit)], Documentation: [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c6c67c1afcce71335b18ed8769b1165c468bfb03 (commit)] == External firmware == Recommended LWN article: [http://lwn.net/Articles/284932/ "Moving the firmware out"] Firmware is usually compiled with each driver. For some reasons (mainly, licensing reasons), distributing firmware is not allowed by some companies and some drivers have also supported loading external firmware for a long time. But even if the firmware compiled and shipped with each driver is redistributable, is not libre software, and some people thinks that this breaks the GPL. It also has some disadvantages for distros. In 2.6.27, the firmware blobs have been moved from the drivers' source code to a new directory: firmware/. By default, the firmware won't be compiled in the kernel binary, or in the modules. It's installed in /lib/firmware when the user types "make modules_install", and drivers have been modified to call request_firmware() and load the firmware when they need it. There's also a configuration option that will compile the firmware files in the kernel binary image, like it was done previously. Code: [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5658c769443d543728b6c5c673dffc2df8676317 (commit 1], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4d2acfbfdf68257e846aaa355edd10fc35ba0feb 2], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d172e7f5c67f2d41f453c7aa83d3bdb405ef8ba5 3], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=88ecf814c47f577248751ddbe9626d98aeef5783 4)] == Improved video camera support with the gspca driver == [http://kernelnewbies.org/Linux_2_6_26 Linux 2.6.26] was a big improvement to linux webcam support thanks to a driver that supports devices that implement the [http://en.wikipedia.org/wiki/USB_video_device_class USB video class] specification, which are quite a lot. 2.6.26 includes of the gspca driver, which implements support for another [http://lwn.net/Articles/291036/ largue] set of devies. With this driver, most video camera devices on the market are supported by Linux. Code: [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=63eb9546dcb5e9dc39ab88a603dede8fdd18e717 (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6a7eba24e4f0ff725d33159f6265e3a79d53a833 (commit)] == Extended file descriptor system calls == Recommended LWN article: [http://lwn.net/Articles/281965/ "Extending system calls"] When Unix was designed, some of the interfaces didn't envisioned functionality that would be needed in the future. Many interfaces that allow creating a file descritor don't take a flag parameter, for example. That makes impossible to create file descriptors with new properties things like close-on-exec, non-blocking, or non-sequential descriptors. Being able to do such things today is neccesary - not just for fun: it also closes a security bug that can be exploited in multithreaded apps. To solve this issue, Linux 2.6.27 is adding a new set of interfaces and syscalls that will be used by glibc. Code: [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a677a039be7243357d93502bff2b40850c942e2d (commit 1], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=aaca0bdca573f3f51ea03139f9c7289541e7bca3 2], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c019bbc612f6633ede7ed67725cbf68de45ae8a4 3], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7d9dbca34240ebb6ff88d8a29c6c7bffd098f0c1 4], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=9deb27baedb79759c3ab9435a7d8b841842d56e9 5], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b087498eb5605673b0f260a7620d91818cd72304 6], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=11fcb6c14676023d0bd437841f5dcd670e7990a0 7], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a0998b50c3f0b8fdd265c63e0032f86ebe377dbf 8], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=336dd1f70ff62d7dd8655228caed4c5bfc818c56 9], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ed8cae8ba01348bfd83333f4648dd807b04d7f08 10], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4006553b06306b34054529477b06b68a1c66249b 11], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=99829b832997d907c30669bfd17da32151e18f04 12], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=77d2720059618b9b6e827a8b73831eb6c6fad63c 13], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5fb5e04926a54bc1c22bba7ca166840f4476196f 14], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e7d476dfdf0bcfed478a207aecfdc84f81efecaf 15], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6b1ef0e60d42f2fdaec26baee8327eb156347b4f 16], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=be61a86d7237dd80510615f38ae21d6e1e98660c 17], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=510df2dd482496083e1c3b1a8c9b6afd5fa4c7d7 18)] == Voltage and Current Regulator == This framework is designed to provide a generic interface to voltage and current regulators. The intention is to allow systems to dynamically control regulator output in order to save power and prolong battery life. This applies to both voltage regulators (where voltage output is controllable) and current sinks (where current output is controllable). This framework is designed around SoC based devices and has also been designed against two Power Management ICs (PMICs) currently on the market - namely the Freescale MC13783 and the Wolfson WM8350, however it is quite generic and should apply to all PMICs. Code: [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=571a354b1542a274d88617e1f6703f3fe7a517f1 (commit 1], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e2ce4eaa76214f65a3f328ec5b45c30248115768 2], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=414c70cb91c445ec813b61e16fe4882807e40240 3], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=48d335ba3164ce99cb8847513d0e3b6ee604eb20 4], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4b74ff6512492dedea353f89d9b56cb715df0d7f 5], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4c1184e85cb381121a5273ea20ad31ca3faa0a4f 6], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c080909eef2b3e7fba70f57cde3264fba95bdf09 7], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6392776d262fcd290616ff5e4246ee95b22c13f0 8], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=8e6f0848be83c5c406ed73a6d7b4bfbf87880eec 9], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ba7e4763437561763b6cca14a41f1d2a7def23e2 10], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e7d0fe340557b202dc00135ab3cc877db794a01f 11], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e8695ebe5568921c41c269f4434e17590735865c 12], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e941d0ce532daf8d8610b2495c06f787fd587b85 13], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=0eb5d5ab3ec99bfd22ff16797d95835369ffb25b 14)] = Architecture-specific changes = * x86 * Support GB hugepages on 64-bit [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=39c11e6c05b7fedbf7ed4df3908b25f622d56204 (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b4718e628dbf68a2dee23b5709e2aa3190409c56 (commit)] * Add AMD IOMMU support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2b188723ee1707ca902ddb98ce1decdeafb5190a (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=8d283c35a293e6091fdf7ef86842c1174c48a941 (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f6e2e6b6fc465bc3cc4eae8d53fcf573ca1cfa14 (commit)] * Make generic arch support NUMAQ [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d49c4288407b2ffa8cab270cb5bc6882abe969f6 (commit)] * Make generic arch support VisWS (Visual Workstation): turn into generic arch [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=22d5c67c5b0476e463ce4b632ba9ec3953d33a5f (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=31ac409a7921da39cc998f2432afa13e77fd8705 (commit)] * CPA: add statistics about state of direct mapping [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ce0c0e50f94e8c55b00a722e8c6e8d6c802be211 (commit)] * Add a debugfs interface to dump PAT memtype [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=fec0962e0bed407927b9ff54bb0596a3ab7e4b61 (commit)] * Add "debugpat" boot option [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=77b52b4c5c66175553ee59eb43f74366f1e54bde (commit)] * Allow up to 4096 cpus: NR_CPUS to 4096 and MAX_NUMNODES to 512 [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c3ed64295f0fed9131b42122234b1ce4a4a266cf (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1184dc2ffe2c8fb9afb766d870850f2c3165ef25 (commit)] * Config option to disable info from decompression of the kernel [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6bcb13b35a2ea39be6c7cc0292b8ad1191b1a748 (commit)] * clockevents: add C1E aware idle function [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=aa276e1cafb3ce9d01d1e837bcd67e92616013ac (commit)] * SGI UV: TLB shootdown using broadcast assist unit [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1812924bb1823950c1dc95c478b71b037057356e (commit)] * Enable memory tester support on 32-bit [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=caadbdce240c43e3e46c82fce6c00eb7f01e1beb (commit)] * Add performance variants of cpumask operators [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=41df0d61c266998b8049df7fec119cd518a43aa1 (commit)] * Add a list for custom page fault handlers. [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=86069782d62e731b4835a0cf8eb7d1d0e17cf306 (commit)] * mtrr cleanup for converting continuous to discrete layout [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=95ffa2438d0e9c48779f0106b1c0eb36165e759c (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=12031a624af7816ec7660b82be648aa3703b4ebe (commit)] * RDC321x: add to mach-default [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1f972768a1df1518f45adb6b8ffbf04fa1c99737 (commit)] * ARM * kgdb ARCH=arm support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5cbad0ebf45c5417104b383dc0e34f64fa7f2473 (commit)] * Common code for the Motorola EZX GSM phones [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=9ab24e4ef0b4e0a7eb8ea897c6178139aab3b260 (commit)] * Orion: add QNAP TS-409 support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=47e9cffde663eafd5f78987036429fc0994d90e8 (commit)], add 88F5181L (Orion-VoIP) support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d2b2a6bbc020e5a9a244f318d28515081e922882 (commit)], add Linksys WRT350N v2 support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=42452b77a1fba2fee89350be2a9c03b54b27c218 (commit)], add HP Media Vault mv2120 support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b08d5af39616fd32a1fafbcb51c36d4c99c4e02f (commit)], add Technologic Systems TS-78xx support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7171d8672bb0bcb744935bd2c6108378b5c6c6ad (commit)], add Maxtor Shared Storage II support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7ec753ccc10ad552c8ec2d40e0edbe3a9c562f30 (commit)], add Netgear WNR854T support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2f8209788d774c66efb5e2991affc06b1d1c7314 (commit)], add RD88F5181L-FXO support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6b5cdf0f6d4dc3d98de20d6b0abe8500046f1cb1 (commit)], add RD88F5181L-GE support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=70129132322cdbb6683ab9e90419cd5a6f8294d3 (commit)] * Add e350 support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b3d354b8d8d676c97794a5b984613d51ad683f17 (commit)] * E-series UDC support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=32584c86b26e503dcd7228ab1c67a1e4ce9b48c4 (commit)] * AT91: UDPHS driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=53d7168026a440c4cba25468a3d926ddd7ab030a (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7c8cf66529ebf95f1a5f34d1b69504d442b42630 (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ba45ca435060614e595a107ac323a36b52619d7d (commit)], Calao Systems [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ca0a789ab9c83d8fdf28f5c2700b316cd5dec2f0 (commit)] * Initial machine support for Logitech Jive [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=9db829f485c553a0e677a165b37f877bf74f36ff (commit)] * pcm990: Add framebuffer and backlight support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c0f7edb3099d538017c52556aab596b857dc92ee (commit)] * pxa: add pxa3xx NAND device and clock sources [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=9ae819a819b4dfc60ac13dd1f1e1a7eaa3d4a6cb (commit)], add pxa3xx NAND support for zylonite [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=481b55262e396930e6e35b8a6d41e7c146e10241 (commit)], add pxa3xx NAND support for littleton [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=9c1db1a1333197bc04dfd0c71d15f8ed43eb844d (commit)], add base support for PXA930 (aka Tavor-P) [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5d31e43589589e63f5b96abc62372d2ef331c14a (commit)], add base support for PXA930 Evaluation Board (aka TavorEVB) [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=bae033111cda415365ad40e9befb4b332d501c52 (commit)], add base support for PXA930 Handheld Platform (aka SAAR) [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=faf64ed4968e354624f330c6da6c1ce8b05a0713 (commit)], add generic PWM backlight driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=42796d37da6ef4fd851dc6d5d0387baf7e2b0c3c (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=75540c1ac3c7bd72ac8e092058f9714875239995 (commit)], * Better MX2 platform [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=32dc80c9cb13a7ce686bcc26efcf39e35719b466 (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=eea643f7ff04fe17c3ff71d41a9487c0753bd821 (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=fc80a5e3d0480d416e4f53b0680aaf525b5076d8 (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c46f5856517c2d4f438df87dac81f2295931ee93 (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f31405cc4cc568baad28273c7f45b0563b57a17d (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7e5e9f5457f5cd019fd7e2f3da94e9fc72cc9ff6 (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=80eedae6f0322dafc749140b67986b2472473745 (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ff6552e4f3505da9c2886098773146be71c872e3 (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1bd55a436f1f90de0e7f476e514e01bd67497b88 (commit)] * Add basic pcm037 board support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ce8ffef0bfd6e55d5da3923d8e9af27c3b5c4eff (commit)] * Latencytop support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f76e9154736e9ab47b64940d0062f19c80225b7f (commit)] * Add Marvell Loki (88RC8480) SoC support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=777f9bebad3476b7dbf5cd8abbd3414139ca0e48 (commit)], Marvell Kirkwood (88F6000) SoC support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=651c74c74bf84ba966b52588ba3329606f3fd8d4 (commit)], Marvell 78xx0 ARM SoC support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=794d15b25df5dda10efba600d6dd6cd74a7aa9cb (commit)] * Support Toshiba TC6393XB Mobile I/O Controller. [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d6315949ac5527efd00d48283a9e33361c86e8e9 (commit)] * Core MFD support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=aa613de676986f136fa6f48a4d709b5d264f4f38 (commit)] * tc6393xb: tmio-nand support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f024ff10b1ab13da4d626366019fd05c49721af7 (commit)] * Tosa: support TC6393XB device [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=bf0116e54e185fd63025f2b975f0f1616ffe41f1 (commit)], tmio-nand data [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5289fecda021828af85fccc8cc2613a85d0fcf52 (commit)], support built-in bluetooth power-up [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=16b32fd0a35b30cbd67395cfcbd360354db44f39 (commit)] * S3c2440: Add AT2440EVB board support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4ab9897172b7ff3a1a37b65b53f71c5795a577b0 (commit)] * AT2440EVB: Add DM9000A network controller support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=66493c2d88d5086399c5a485d6e41cb76b241a1f (commit)] * Acer n30: Add support for n35 and related devices [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=9579087331ee0cd220d29aa5bda79ff55b33c228 (commit)] * ixp4xx: Add support for the Freecom FSG-3 board [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7e36e2f5355ab87f8946041d044b34cda01e2077 (commit)] * Remove ARCH_CO285 [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e055d5bff318845f99c0fbf93245767fab8dce88 (commit)] * Support for the at91sam9g20 [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=613526677a74c2b3d1b1696ea7334b2cf35155b3 (commit)] * Add support for PalmTX handheld computer [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b5e4ad57eeffef0ac274413f83be4ef903719ea4 (commit)] * PalmTX PCMCIA [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=359784084f3da86e2c7621fd9266e04b50287834 (commit)], battery monitor [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d4b19c42ca558273ab99a1093621f267d9d073fc (commit)] * pxafb: Support for RGB666, RGBT666, RGB888 and RGBT888 [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c1450f156fda8921a55e3f4fe596274278010f31 (commit)] * Support for LCD on e740 e750 e400 and e800 e-series PDAs [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ac2536109849217a71510b6ded813e91629e88f6 (commit)] * SH * Initial ELF FDPIC support. [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3bc24a1a5441ef621daf737ec93b0a10e8999d59 (commit)] * Support variable page sizes on nommu. [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=74fcc77982e703fe85d8bd5437130fd94c61daee (commit)] * Add support for 16kB PAGE_SIZE. [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=66dfe18114839a7297f56f43f03125f4121de79b (commit)] * Add support Renesas Solutions AP-325RXA board [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=04e917b606ffe6ec10fb75c21447162cba31f6b6 (commit)] * Add SCIF2 support for SH7763. [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c63847a3621d2bac054f5709783860ecabd0ee7e (commit)] * RSK+ 7203 board support. [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3787aa112c653b34b6f901b2eaae2b62f9582569 (commit)] * Renesas Solutions SH7763RDP board support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4cec1a37ba7d9dce6ed5d8259b95272100a98b1f (commit)] * Solution Enginge 7710/7712 SH-Ether support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ffb91ad2751723bcc9925cd38e37013e2169e256 (commit)] * Renesas R0P7785LC0011RL board support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=cbe9da029d9cc4fff59d559789885079a84a0af8 (commit)] * Add SuperH Mobile LCDC platform data for Migo-R [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=8b1285f1c192e7e84ba28cc25eb0e9bcf2dadb17 (commit)], add SuperH Mobile CEU platform data for Migo-R [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1765534c23596794385f309609c09642f33846e4 (commit)] * AP325RXA support: [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6968980a1bc0ba56dd8ef21c14577af3f2f9992b (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4875ea224af0215635f18c2c1b060fb023c7602f (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=8b2224dc6a5b46cfa1d54ab1fe82107351c66443 (commit)] * IA64 * Add support for the SGI UV GRU. The GRU is a hardware resource located in the system chipset. The GRU contains memory that is mmaped into the user address space. This memory is used to communicate with the GRU to perform functions such as load/store, scatter/gather, bcopy, AMOs, etc [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=13d19498b0446cad2c394f9fbec8149b44a60c6e (commit 1], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=34d8a380d784d1fbea941a68beebdd7f9a3bebdf 2], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4c921d4d8aa74140597fd8736261837f73ca6e7a 3], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=78cf1de49b11c0e2edb35cce91ac6c279cc852b3 4], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b2fb06fcb6d6c9912b43e61394891e3994d4b613 5], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=0d39741a27d86d305cc75ba626392be410dcbab9 6], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=142586409c8be7dc071bb94d7cd2d69ccfd99b6b 7], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1d09d737ab017ff7a9745962e19909713ac89b37 8], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=28bffaf094a6d0992c85e1b01f04c9b0f56c9d62 9], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3c45f6928322773b1810fbec1ece77056f914114 10], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3d919e5f6b440bb0cc7996eb7628b29be09e6343 11], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=9a0deecc90de62c91d7107611446c0c950091851 12], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ee5b8feca3af01400e26637209a72fbf137c82ff 13)] * Allow ia64 to CONFIG_NR_CPUS up to 4096 [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d1339df1f46d10e0396c1470f371b0d1b23295ba (commit)] * Paravirt_ops support for IA64 [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=90aeb169c03a96e22674741f08054023c33d595b (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3e0879deb700f322f6c81ab34f056fc72d15ec02 (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1ff730b52f0c3e4e3846c3ff345c5526b2633ba9 (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1e39d80a5957eab9dfdd7490d5c5cee272c34aa7 (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e92e8c68a61ae7d845c1be0a58a081e7756b0735 (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=02e32e36f42f8ea7ee6060d02f2d69ad5bad6d50 (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=498c5170472ff0c03a29d22dbd33225a0be038f4 (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4df8d22bbbb16ccfa4e10cc068135183c9e5e006 (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=213060a4d6991a95d0b9344406d195be3464accf (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e51835d58a5abdf82211f36f500f666ca7ef9aee (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=33b39e84209b0308b572dce017df7ee9b63f086c (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=00d21d82b8a9e290286e09d8eedc20bfc33b0eee (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=8a2f2ccc7a6bfbdb8b484198e190d6805d979700 (commit)] * Xen * Allow 64-bit Xen [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=51dd660a2cd6eab4d470cfe1009c7f473832b786 (commit)] * Implement save/restore [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=0e91398f2a5d4eb6b07df8115917d0d1cf3e9b58 (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6b9b732d0e396a3f1a95977162a8624aafce38a1 (commit)] * Add configurable max domain size [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=8006ec3e911f93d702e1d4a4e387e244ab434924 (commit)] * Remove support for non-PAE 32-bit [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3843fc2575e3389f4f0ad0420a720240a5746a5d (commit)] * xen pvfb: Module aliases to support module autoloading [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1e892c959da42278e60b21f5ecfd6fba0efff313 (commit)], Pointer z-axis (mouse wheel) support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6ba0e7b36c7cc1745b3cbeda244d14edae3ad058 (commit)], dynamic mode support (screen resizing) [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e4dcff1f6e7582f76c2c9990b1d9111bbc8e26ef (commit)] * Blackfin * Use the generic platform nand driver to support nand flash on bf53x board which do not have on-chip nand flash controller [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=fc68911ee379bff429c2f8dfc0a4d3277eb193ec (commit)] * Functional power management support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1efc80b53eb54770139219f99657abd92595fc86 (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4a88d0ce494034fbb8dd0076d80e71b38abf5748 (commit)] * Apply Bluetechnix CM-BF527 board support patch [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=9db144fe897bb09838294aab2229cb423ab40988 (commit)] * Add support for the Blackstamp board [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=130de7cebe20a74261a75bb0c6026a3199cdb980 (commit)] * RTC driver: add support for power management framework [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=813006f4bb4a39afdde8ab2e3559971c029d1dc0 (commit)] * Add support for board tcm-bf537 [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b9da3b9240f175a29274abb8a94d962b67bbabf6 (commit)] * S390 * cio: Introduce modalias for css bus. [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7e9db9eaefdb8798730790214ff1b7746006ec98 (commit)] * stp support. [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d2fec595511b5718bdb65645b3d5d99800d97943 (commit)] * cio: Add chsc subchannel driver. [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=9d92a7e1b0d095c8be96ce5e592c6c5541684631 (commit)] * Extra Kernel Parameters via VMPARM [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a0443fbb467af5e5930b9b059b52190605f70059 (commit)] * Add support for memory hot-add and hot-remove [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=421c175c4d609864350df495b34d3e99f9fb1bdd (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e0bc24958e1305efe176adc9d5f23a09e84c0058 (commit)],[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7e9238fbc10373effc2c3b0b516b0bdc8fefc27b (commit)] * Remove P390 support. [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1d030370f09036e8dcb3cc40915f3f9cf92bb54c (commit)] * qdio: new qdio driver. [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=779e6e1c724d30e0fd1baca78b852e41e3a23c1d (commit)] * MIPS * Routerboard 532: Support for base system [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=73b4390fb23456964201abda79f1210fe337d01a (commit)] * TXx9: Add 64-bit support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=94a4c32939dede9328c6e4face335eb8441fc18d (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=255033a9bb900a06c9a7798908ce12557d24fb66 (commit)] * kgdb: Remove existing implementation in favor of the generic kgdb [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=8d60a903d986ffa26c41f0092320a3b9da20bfaf (commit)] * Kill IRIX compatibility [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2957c9e61ee9c37e7ebf2c8acab03e073fe942fd (commit)] * SEAD: Remove support code. [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1398ddb2ebdb41e8efe6ba42505fd452704c8405 (commit)] * Atlas: Remove support code. [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2157bc68711bf0e69f9aca4d310bd863298fbb3f (commit)] * cmbvr4133: Remove support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=efff4ae259b8f750ea426d3084007f85c0a15a85 (commit)] * POWERPC * Remove arch/ppc architecture. arch/powerpc supports everything now [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=917f0af9e5a9ceecf9e72537fabb501254ba321d (commit)] * powerpc kgdb support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=17ce452f7ea3df760b7f9f42453b6f6acd765217 (commit)] * Enable tracehook for the architecture [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=dec2b0d0cc64e495a3c9c5700fa7a3b397b5e855 (commit)] * Support multiple hugepage sizes [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=0d9ea75443dc7e37843e656b8ebc947a6d16d618 (commit)], define support for 16G hugepages [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=91224346aa8c1cdaa660300a98e0b074a3a95030 (commit)] * POWER7 support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e952e6c4d6635b36c212c056a9427bd93460178c (commit)],[http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=635f5a6354eaf2cf7d72116086175b82b12ac80a (commit)] * Vector Scaler extensions (Power 7 processors) [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c6e6771b87d4e339d27f1383c8a808ae9b4ee5b8 (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b962ce9d26fd6677e6720949642420ceb029a102 (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=72ffff5b1792b0fa4d40a8e2f3276fff999820ec (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ce48b2100785e5ca629fb3aa8e3b50aca808f692 (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=96d5b52c8473ae6ee63d592474bcc1255df06102 (commit)] * Add Strong Access Ordering support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=379070491e1e744a59e69e5bcf3765012d15ecb4 (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=aba46c5027cb59d98052231b36efcbbde9c77a1d (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ef3d3246a0d06be622867d21af25f997aeeb105f (commit)] * mpc5121: Add clock driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=137e95906e294913fab02162e8a1948ade49acb5 (commit)], Update device tree for MPC5121ADS evaluation board [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4df64c3e58d28ffc5c61bdbdd733c5d0303b9f3c (commit)], add generic board support for MPC5121 platforms [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=fb1803224ea145e3424d6295d4aaa8e9fef70642 (commit)], add support for CPLD on MPC5121ADS board [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1879f711d8c3960e0fd927f38ff885017a77291b (commit)] * 85xx: add board support for the TQM8548 modules [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6dd1b64a26d9209c09488e9fa257e7744823bf29 (commit)], add DOZE/NAP support for e500 core [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=fc4033b2f8b1482022bff3d05505a1b1631bb6de (commit)], enable MSI support for 85xxds board [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=741edc494978bc2770e891b8cfadbca3246a3d1a (commit)], add support for MPC8536DS [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2f3804edf971d2080243d2b4552bfd61ddfbf969 (commit)] * 83xx: new board support: MPC8360E-RDK [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b13e930906b313d787f4dd07fe78b74a3a8c22c4 (commit)], add support for Analogue & Micro ASP837E board [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=59d13f9dba56c444e5356b42d3d57b46e44ef975 (commit)], Power Management support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d49747bdfb2ddebea24d1580da55b79d093d48a9 (commit)] * 86xx: Enable MSI support for MPC8610HPCD board [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=0023352f56f90d01de67f995e248fe4c5308a497 (commit)] * virtex: add Xilinx 440 cpu to the cputable [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=23e7237e096aa69e1061294c8af2b592f7802808 (commit)], add Xilinx Virtex 5 ppc440 platform support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=39fd0e92b3dc864f36c1253006b8b831844d36f1 (commit)] * 4xx: Sam440ep support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b6014e15bc38a33cf9591d33674dd870027cb623 (commit)] * C2K board driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=46388c0d88add1c39926cd415039fe931edd5829 (commit)] * ibmveth: enable driver for CMO [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1096d63d8e7d226630706e15648705d0187787e4 (commit)] * ibmvscsi: driver enablement for CMO [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7912a0ac5907df1f8b214b3ca15ccf96129daae0 (commit)] * ibmvfc: Add support for collaborative memory overcommit [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=39c1ffecc6aabcc8105602a95ce769f27bcf6048 (commit)] * Implement FSL GTM support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=83ff9dcf375c418ca3b98eb950711525ca1269e2 (commit)] * powerpc/QE: add support for QE USB clocks routing [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5e41486c408eb4206aee09303631427f57771691 (commit)] * booke: Add kprobes support for booke style processors [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f82796214a95b1ec00c2f121c1080d10f2b099a1 (commit)], BookE hardware watchpoint support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d6a61bfc06d6f2248f3e75f208d64e794082013c (commit)], add support for new e500mc core [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3dfa8773674e16f95f70a0e631e80c69390d04d7 (commit)] * fsl: PCIe MSI support for 83xx/85xx/86xx processors. [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=34e36c1541fe70e5b3842a3278c0e7631d31f4cb (commit)] * pseries: Add collaborative memory manager [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=84af458bb23bf5f0ba1af4320dd2a57f7c4363e5 (commit)], add CMO paging statistics [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ffa5abbd0c399b32fc13a1b4718d87ee7a716999 (commit)], iommu enablement for CMO [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6490c4903d12f242bec4454301f76f6a7520e399 (commit)], vio bus support for CMO [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a90ab95a9576d35de0d05f9f4fc435edcccafaa9 (commit)] * Add driver for Barrier Synchronization Register [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=fe9e8d53772b5ea9ccf8ea4e8f0f009a6885eb70 (commit)] * Support for latencytop [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=01f4b8b8b8db09b88be7df7e51192e4e678b69d3 (commit)] * cell: Add spu aware cpufreq governor [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=880e710580c09bf86cddac687fc492a8318934fe (commit)]. add support for power button of future IBM cell blades [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4795b7801b07e1b7286edb0d9321433fc0eac6cc (commit)] * Delete unused fec_8xx net driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=54ef0ec22a39071a4e7fbedd201cecac9ac6e8a7 (commit)] * AVR32 * Add support for ATSTK1006 [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e150d6e725c014d72106a8610be40b7b08beb77a (commit)] * Power Management support ("standby" and "mem" modes) [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=02a00cf672a37292c31bbdde191712bfa40a4f1d (commit)] * SPARC * Implement IRQ stacks. [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4f70f7a91bffdcc39f088748dc678953eb9a3fbd (commit)] * Add Niagara2 RNG driver. [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ce087150211412afd901a3fa16b1aab5b54d1bcb (commit)] * Add ftrace support. [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d05f5f9906740474eb768823004ffcd775b12ca6 (commit)] * v850 * Remove v850 port [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f606ddf42fd4edc558eeb48bfee66d2c591571d2 (commit)] = Core = * sched * Add new API sched_setscheduler_nocheck: add a flag to control access checks [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=961ccddd59d627b89bd3dc284b6517833bbdf25d (commit)] * sched: revert revert of: fair-group: SMP-nice for group scheduling [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c09595f63bb1909c5dc4dca288f4fe818561b5f3 (commit)] * Power Management: * Recommended LWN article: [http://lwn.net/Articles/274008/ "A new suspend/hibernate infrastructure"] * New suspend/hibernate infrastructure [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1eede070a59e1cc73da51e1aaa00d9ab86572cfc (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=25e18499e08cb097cbbfeab5de25d094d5312ee5 (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=bbb44d9f23d868a2837c6b22b8dfb123d8e7800c (commit)] * Boot time suspend selftest [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=77437fd4e61f87cc94d9314baa5cbf50e3ccdf54 (commit)] * ACPI PCI slot detection driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=8344b568f5bdc7ee1bba909de3294c6348c36056 (commit)] * rcu: make rcutorture more vicious: add stutter feature [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d120f65f3aaf306c957bc4c82e510f5b0f1e9b27 (commit)], reinstate boot-time testing [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=31a72bce0bd6f3e0114009288bccbc96376eeeca (commit)], make quiescent rcutorture less power-hungry [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e3d7be270c5b1be07ffadcc8b56599ad8e975c1d (commit)], make quiescent rcutorture less power-hungry [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3ccf79f4570acacfefc51772e8f9207895b35ad7 (commit)], invoke RCU readers from irq handlers (timers) [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=0729fbf3bc70870370b4f43d652f05a468dc68b8 (commit)] * cfq-iosched: add message logging through blktrace [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7b679138b3237a9a3d45a4fda23a58ac79cd279c (commit)] * ramfs: enable splice write [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=8b3d3567f72aa61d5d6f4ce89d289b154e1ea866 (commit)] * sysfs: add /sys/dev/{char,block} to lookup sysfs path by major:minor [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e105b8bfc769b0545b6f0f395179d1e43cbee822 (commit)], add /sys/firmware/memmap [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=69ac9cd629ca96e59f34eb4ccd12d00b2c8276a7 (commit)] * remove CONFIG_KMOD from core kernel code [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a1ef5adb4cad43460ebba23c5a78cf4a55bb6a5b (commit)] * Add a basic debugging framework for memory initialisation [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6b74ab97bc12ce74acec900f1d89a4aee2e4d70d (commit)], add bootmem debugging framework [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2e5237daf0cc3c8d87762f53f704dc54fa91dcf6 (commit)] * Allow to debug the X server: access_process_vm device memory infrastructure [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=28b2ee20c7cba812b6f2ccf6d722cf86d00a84dc (commit)], use generic_access_phys for /dev/mem mappings [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7ae8ed5053a39082d224a3f48409e016baca9c16 (commit)] * tmpfs: support aio [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=bcd78e49613c41b5bed96fa288e983876f286a59 (commit)] * hugetlbfs: per mount huge page sizes [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a137e1cc6d6e7d315fef03962a2a5a113348b13b (commit)], new sysfs interface [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a3437870160cf2caaac6bdd76c7377a5a4145a8c (commit)], modular state for hugetlb page size [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a5516438959d90b071ff0a484ce4f3f523dc3152 (commit)], multiple hstates for multiple page sizes [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e5ff215941d59f8ae6bf58f6428dc5c26745a612 (commit)], support boot allocate different sizes [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=8faa8b077b2cdc4e4646842fe50b07840955a013 (commit)], override default huge page size [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e11bfbfcb08ef4223b863799897c19cdf7c5bc00 (commit)] * vmallocinfo: add NUMA information [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a47a126ad5ea072aca3e611ed8f8dc6adad24bab (commit)] * memory-hotplug: add sysfs removable attribute for hotplug memory remove [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5c755e9fd813810680abd56ec09a5f90143e815b (commit)] * UBI: implement multiple volumes rename [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f40ac9cdf6991287f19bdafe9b0752ee40137908 (commit)], remove pre-sqnum images support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=9869cd801c107bbae91663c3f4edbb6b5715919f (commit)], allow UBI root device name [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2d62f488585405bc9108c47cb06957397cfd1059 (commit)] * kprobes: improve kretprobe scalability with hashed locking [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ef53d9c5e4da147ecaa43c44c5e5945eb83970a2 (commit)] * per-task-delay-accounting: update taskstats for memory reclaim delay [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=016ae219b920c4e606088761d3d6070cdf8ba706 (commit)] * task IO accounting: provide distinct tgid/tid I/O statistics [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=297c5d92634c809cef23d73e7b2556f2528ff7e2 (commit)] * per-task-delay-accounting: add memory reclaim delay [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=873b47717732c2f33a4b14de02571a4295a02f0c (commit)] * per-task-delay-accounting: update document and getdelays.c for memory reclaim [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=9b0975a20af1ff2f367e3b6b7c150eb114c6b500 (commit)] * fuse: nfs export special lookups [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=33670fa296860283f04a7975b8c790f101e43a6e (commit)], lockd support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=48e90761b570ff57f58b726229d229729949c5bb (commit)], add export operations [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=dbd561d236ff16f8143bc727d91758ddd190e8cb (commit)] * relay: add buffer-only channels; useful for early logging [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=20d8b67c06fa5e74f44e80b0a0fd68c8327f7c6a (commit)] * lguest: Support assigning a MAC address [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=dec6a2be085f046d42eb0bdce95ecb73de526429 (commit)], virtio-rng support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=28fd6d7f953711fbf67496701be05513052d967d (commit)] * KVM * IOAPIC/LAPIC: Enable NMI support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3419ffc8e45a5344abc87684cbca6cdc5c9c8a01 (commit)] * MTRR support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=9ba075a664dff836fd6fb93f90fcc827f7683d91 (commit)] * VMX: Enable NMI with in-kernel irqchip [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f08864b42a45581a64558aa5b6b673c77b97ee5d (commit)] * Add coalesced MMIO support (x86 part) [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=542472b53ea9e0add0ba23976018210191d84754 (commit)], (powerpc part) [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=588968b6b7d34e6a88f538d1db9aca47b203623e (commit)], (common part) [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5f94c1741bdc7a336553122036e8a779e616ccbf (commit)], (ia64 part) [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7f39f8ac177db258200053074aa7a3d98656b1cf (commit)] * Support adding a spare to a live md array with external metadata. [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6c2fce2ef6b4821c21b5c42c7207cb9cf8c87eda (commit)] * Support changing rdev size on running arrays. [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=0cd17fec983b6bca505eecee1af33138687220b6 (commit)] * CPUFREQ: S3C24XX NAND driver frequency scaling support. [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=30821fee4f0cb3e6d241d9f7ddc37742212e3eb7 (commit)] = Crypto = * Add support for RIPEMD hash algorithms: RIPEMD-128,256 and 320 [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c6580eb8b17d64f0d6ad25c86a034adbda5ab4e1 (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=82798f90fb13fd934a15ed56fee227fe808dcbe8 (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2998db37b5c62890ff1a0d48abd76ada13ebc554 (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=534fe2c1c3ffbbc3db66dba0783c82d3b345fd33 (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c555c28d9da517579085a00fc80e725b0b5d9fce (commit)] * hash: Add asynchronous hash support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=004a403c2e954734090a69aedc7f4f822bdcc142 (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b8a28251c2066a2ac6481fc49ced5eb7f078e49b (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=cde0e2c819aad91ed1e1c2e8aa64c16e7774c769 (commit)] * ixp4xx - Hardware crypto support for IXP4xx CPUs [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=81bef0150074d677d8cbd4e971a8ce6c9746a1fc (commit)] * crc32c - Add ahash implementation [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5773a3e6e396d5fd9de58372abe6a86b7e258e3e (commit)] * talitos: Freescale integrated security engine (SEC) driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=9c4a79653b35efc9d6790c295e22f79f4b361125 (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=70bcaca75389a6c011ddc866eb1743b070a838b0 (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3952f17ed63434cc2154c3765ff97e1d4adab042 (commit)] = Security = * Protect legacy applications from executing with insufficient privilege [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5459c164f0591ee75ed0203bb8f3817f25948e2f (commit)] * Filesystem capabilities refactor kernel code [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ab763c7112ce0e2559c73f921617c81dc7287ca6 (commit)] * LSM: show LSM mount options in /proc/mounts [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2069f457848f846cb31149c9aa29b330a6b66d1b (commit)] * Selinux: * Support deferred mapping of contexts [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=12b29f34558b9b45a2c6eabd4f3c6be939a3980f (commit)] * Enable processes with mac_admin to get the raw inode contexts [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=abc69bb633931bf54c6db798bcdc6fd1e0284742 (commit)] = Networking = * WEXT: Add support for passing PMK and capability flags to WEXT [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ba569b4c68f11906da2996ee252bcff0df61cb90 (commit)] * Add layer1 over IP support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3712b42d4b1bec29a4232a6673bf2e6dcc5faa68 (commit)] * Add STP demux layer [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a19800d704177caaa5874baf5819307c5b7d5e4f (commit)] * bridge: Use STP demux [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7c85fbf0657f216557b0c9c4a2e4e07f37d8bb8c (commit)] * Add GARP applicant-only participant [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=eca9ebac651f774d8b10fce7c5d173c3c3d3394f (commit)] * virtio net: Add ethtool ops for SG/GSO [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a9ea3fc6f2654a7407864fec983d1671d775b5ee (commit)] * loopback: Enable TSO [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f22f8567cb0a530d8958d177e0f268783bd0d894 (commit)] * netfilter * ebtables: add IPv6 support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=93f65158723ceb7078ee9a0fd4830c0de00f4b9e (commit)], * ctnetlink: add full support for SCTP to ctnetlink [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a258860e01b80e8f554a4ab1a6c95e6042eb8b73 (commit)] * ip_tables: add iptables security table for mandatory access control rules [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=560ee653b67074b805f1b661988a72a0e58811a5 (commit)] * ip6_tables: add ip6tables security table [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=17e6e59f0a1d7188d783c15dc3ccebd95a0840cd (commit)] * accounting rework: ct_extend + 64bit counters [http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=584015727a3b88b46602b20077b46cd04f8b4ab3 (commit)] * mac80211: add spectrum capabilities [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=06ff47bc9595848b818ac79e7d8069337c6e58b1 (commit)] * build algorithms into the mac80211 module [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e5f5e7339cd95d07937e6f8081b46fba86c742a7 (commit)] * hostap: add radiotap support in monitor mode [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=573b933f8f20ce298f6ff83d5ecc7b99ff3abb12 (commit)] * iwlwifi : Patch adds rfkill subsystem for 3945 [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ebef2008082f579d8a40cc92e868fe8bf1296a60 (commit)] * netdev: Add support for rx flow hash configuration, using ethtool. [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=0853ad66b14feb12acde7ac13b7c3b75770a0adc (commit)] * iwlwifi: enable packet injection for iwl3945 [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=914233d68f07d5d9c22630cd5a84fdfd98f39da2 (commit)] * tun: Interface to query tun/tap features. [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=07240fd0902c872f044f523893364a1a24c9f278 (commit)], TUNSETFEATURES to set gso features. [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5228ddc98fa49b3cedab4024e269d62410a0d806 (commit)] * vlan: Add GVRP support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=70c03b49b80ba3634958acc31853771019c0ebd3 (commit)] * vlan: Add ethtool support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=75b8846acd11ad3fc736d4df3413fe946bbf367c (commit)] * netdev: Create netdev_queue abstraction. [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=bb949fbd1878973c3539d9aecff52f284482a937 (commit)] * mac80211: power management wext hooks [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=49292d56352a6ab90d04c3448dd8b6106dfef2d6 (commit)] = Filesystems = * fatfs: add UTC timestamp option [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b271e067c896ad4082b15e96077675d08db40625 (commit)] * XFS: ASCII case-insensitive support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=189f4bf22bdc3c2402b038016d11fd3cb1c89f07 (commit)] = Drivers = == Graphics == * fbdev: add the carmine FB driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2ece5f43b041b96fa2a05107a10a6b0ea0c03a3b (commit)], SuperH Mobile LCDC Driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=cfb4f5d1750e05f43902197713c50c29e7dfbc99 (commit)], LCD backlight driver using Atmel PWM driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3e074058d72486676f6fdf6fe803200c62dcb403 (commit)], add new Cobalt LCD framebuffer driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5abe3b4063f16245b8fafbff37bd93814eb8e363 (commit)], add support for the ILI9320 video display controller [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=cccb6d3c149603b9c15d3c460dff317455df1766 (commit)], SH7760/SH7763 LCDC framebuffer driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4a25e41831ee851c1365d8b41decc22493b18e6d (commit)] * tridentfb: add TGUI 9440 support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a0d922562d56073f147a4de2983bee499dd2a10e (commit)], add imageblit acceleration for Blade3D family [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=0292be4a382957016e8b574dc292779cfb49e029 (commit)], add acceleration for TGUI families [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=bcac2d5fe36238dcfc955b49f9db10ad3ae3e53c (commit)] * Add platform_lcd driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c25826a7cf1c61b5c6e6db8365172eb97ef39ef3 (commit)] * Remove old broken Cobalt LCD driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=18b095d4b847bb08bf8a1bace7711a93d27732c0 (commit)] == IDE/SATA == * SATA * AHCI: speed up resume [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=24920c8a6358bf5532f1336b990b1c0fe2b599ee (commit)], enclosure management support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=18f7ba4c2f4be6b37d925931f04d6cc28d88d1ee (commit)] * Add support for VPD page b1 [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1e9dbc9291738149577cc488fd441f061815e02e (commit)] * ide * Remove obsoleted "hdx=" kernel parameters [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=232595eaff951e96cabe5e85fed35f66b72ff51e (commit)], remove obsoleted "idebus=" kernel parameter [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=30e5ee4d1a651a0c66e86c6612c003034bd20ba2 (commit)], remove obsoleted "ide=" kernel parameters [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=931ee0dc5c69e8113233d21942681ab8fecde7f9 (commit)] * Remove mpc8xx-ide driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ba1d0de70d64e68f0e035f00dbb041c1e05b49c9 (commit)] * palm_bk3710: add UltraDMA/100 support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a0f403bc58dcaa118f02ec70c3ecfec1bc26e445 (commit)] * BAST: Remove old IDE driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=96b1dfe8fe02e35f017c885b11f0beb10ff4f316 (commit)] == Network == * Add ath9k: Atheros IEEE 802.11n driver for AR5008 and AR9001 family of chipsets [http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f078f209704849c86bd43c0beccfc1f410ed1c66 (commit)] * Add atl1e: Atheros L1E Gigabit Ethernet driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a6a5325239c20202e18e21e94291bccc659fbf9e (commit)] * sh_eth: add support for Renesas SuperH Ethernet [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=86a74ff21a7ac4bc06b18076ddb0347712b46cfd (commit)] * Add option hso driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=72dc1c096c7051a48ab1dbb12f71976656b55eb5 (commit)] * iwlwifi: Support for the Intel Wireless WiFi Link 5000AGN Family devices [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5a6a256e195380c062100dffad15f984656772c2 (commit)], set monitor mode for 4965 [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4419e39b6041b213e49bb13fd40fb267de0eb568 (commit)] and 3945 [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5ec0397679f1c1606199cfd6f3e24351891c60c3 (commit)], remove IWL4965_HT config [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4f85f5b39208e755a93f63296ec1224d14121b6c (commit)], enable IBSS (Ad-Hoc) mode [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c46fbefa32c3c314884d3d3be27d0e1839de2c24 (commit)], add remove station functionality [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7a999bf0c5eb19b20ac6ab0f21f6e5013400fa51 (commit)], add power level support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5da4b55f78fb2ed40926b775d4f7c791594ecbd7 (commit)], HW dependent run time calibration [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f0832f137c21d130998a0f97f97ac01a2d97210b (commit)] * rtl8187: Add support of RTL8187B-based cards [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c44ac0b9855c62b5ec8af5935124cfbe6654a32d (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d1e11af51657d18222bef9cc15591f8c0f289186 (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e7d414ff21a7e0b00295e838c004ff1de5fba6ce (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=0e25b4ef220f6ef4eed120543182385b13005db9 (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5c036b217a1fe3ae0616e9c43c6bcd13b3c134b6 (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6f7853f3cbe457067e9fe05461f56c7ea4ac488c (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f8a08c34265b59710a8fc049911f487477c19fab (commit)] * libertas: sysfs interface for accessing non-volatile configuration [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=15dbaac03e862ee746310832c8d8d694dc0427ee (commit)], extend MESH_CONFIG command to access non-volatile configuration [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=edaea5ce05ca804cc55438c586ca2f947d49f56f (commit)], sysfs interface for accessing default mesh channel [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b679aeb304e3070626750c15e043a40da0e942fc (commit)], rate adaptation configuration via iwconfig. [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=85319f933a703a92652a8f23339f1ec1694cd594 (commit)] * igb: Introduce multiple TX queues with infrastructure [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=661086df6cf35f62d0aec09ccb9164eb2baaaecd (commit)], add DCA support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=fe4506b6a2f9716ef62583020581ae2032573fed (commit)], add 82576 MAC support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2d064c06fecadadcb81a452acd373af00dfb1fec (commit)], add support for quad port WOL and feature flags [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7dfc16fab1186769d7d0086830ab3fbc8fddfcba (commit)], add support for in kernel LRO [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d3352520273426e4c16e91d189aa8aa7ee5e96c5 (commit)], improve multiqueue AIM support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6eb5a7f1dbd56883680290f6a0bd2d8d15f8ff58 (commit)] * Add mISDN driver. mISDN is a new modular ISDN driver, in the long term it should replace the old I4L driver architecture for passiv ISDN cards [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e4ac9bc1f6686dcb8c34e2756aa93cc9546fa6ae (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1b2b03f8e514e4f68e293846ba511a948b80243c (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=960366cf8dbb3359afaca30cf7fdbf69a6d6dda7 (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1700fe1a10dc0eaac0ef60a8093eaeafa9bff9ae (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=af69fb3a8ffa37e986db00ed93099dc44babeef4 (commit)] * netxen: add support for new chip/boards [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e4c93c817ce650401db42db6c869cf7688217ff4 (commit)], add 2MB PCI memory support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3ce06a320f8d5a3f16960e63021cc372283efffb (commit)], firmware 4.0.0 support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a97342f9790f14ac20bd5f8b16ed661411fa2e3e (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=48bfd1e0fc66b27254ec742b014e689ef218e76c (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c9fc891f86c062449116fde8826a0ead650e17ac (commit)], enable tso6, intr coalescing. [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=cd1f8160e015cd1538701b7de216cbeaefc6b0a8 (commit)] * myri10ge: add multislices support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=0dcffac1a329be69bab0ac604bf7283737108e68 (commit)], add Direct Cache Access support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=981813d8e0a16946f511f4eda17bb4ee4fa2769c (commit)] * niu: Add TX multiqueue support. [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b4c21639ab0f6df07ab7624a8c2f974936708ae5 (commit)] * SH7619 add ethernet controler support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d88a3ea6fa4c98d482240a6a85945ed448b7671d (commit)] * sh_eth: Add SH7619 support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=71557a37adb5df17631c493b3b7d912938c720b2 (commit)] * bnx2x: Multi Queue [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=231fd58a4d21aa633db734274a27a67395155e51 (commit)], add TX multiqueue support. [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=706bf24038ba88ec77503b4829b16da712a32f04 (commit)] * ipg: add NAPI Rx queue support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=844290e56067aed0a54142d756565abb9614136c (commit)], always compile in jumbo frame support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=024f4d88b45003710e8e2ee937b0c56aaf2dff2d (commit)], run-time configurable jumbo frame support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=532f4aee934cf26f1905fae101ac9f0ba3087f21 (commit)] * ixgbe: add LRO support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=177db6ffd0599430a2ab63045e88fc4031f42420 (commit)] * mv643xx_eth: allow multiple RX queues [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=64da80a29c7455321a7df7b47e27d639e3944c1a (commit)], allow multiple TX queues [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3d6b35bc5090cf8d8b7e62eca1f9c21ca56fc6c7 (commit)] * cxgb3 - Add LRO support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b47385bd4f67481a7dbfcf1b4b82e9a67ecb846c (commit)], add iscsi support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=9439f749441f3a7c2c8ef9e32b698cfe9ed60f48 (commit)] * Add support for DM9000A and DM9000B chips [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6d406b3c76b369a7b043470719761aa6ee1a38d1 (commit)] * gianfar: Add magic packet and suspend/resume support. [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d87eb12785c14de1586e3bad86ca2c0991300339 (commit)] * tg3: Add 5785 ASIC revision [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=57e6983cbde91b4569b4014b933f3a16e12b99fd (commit)] * sky2: 88E8057 chip support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=0ce8b98d55861d5d86ef9bd8df69282b8c5f0b70 (commit)] * b43: Add firmware markers support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=53c068566dde708cb28a4dfc06ae3d7fd7434397 (commit)], enable mesh [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=04dea136b06ddd58879c9272b9f66ff060962317 (commit)] * bnx2x: add support for BCM57711 HW [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=34f80b04f325078ff21123579343d99756ad8d0e (commit)], add PCIE EEH support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=493adb1fee89eaad4f6cb1018ef4c48fccd79ab5 (commit)], add EEH PCI recovery [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6ff2da49c8a68320c2564006c94a492db58de5cd (commit)] * zd1211rw: initial IBSS support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=84e6dc9acf6825f508feae9db6b7d695e64894e0 (commit)] * macb: Basic suspend/resume support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c1f598fd71db6a971ee88311167c8003243ebff2 (commit)] * gelic: Add support for ESSID scan [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7fd871edf437362b62ddd807542638cbda8d8a39 (commit)] * sfc: Use kernel I2C system and i2c-algo-bit driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=37b5a60335305e46be93c2eb904c8b5be7aba5f6 (commit)] * OpenFirmware GPIO based MDIO bitbang driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a5edeccb1a8432ae5d9fb9bccea5a4b64c565017 (commit)] * rt2x00: Add support for CTS protection in rt2x00lib [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e360c4cb2bc2fb2a37981809685984efe8433c52 (commit)] * 802.11 radio simulator for mac80211 [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=acc1e7a3007ec1940374206a84465c1e0cfcda09 (commit)] * Remove the ibm_emac driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=84aee4889ee843f4cde1c3fb1acfd116733660ef (commit)] * Remove the strip driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=94d9842403f770239a656586442454b7a8f2df29 (commit)] * Remove the SAA9730 driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=67fbbe1551b24d1bcab8478407f9b8c713d5596e (commit)] == SCSI == * scsi_dh: add infrastructure for SCSI Device Handlers [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a6a8d9f87eb8510a8f53672ea87703f62185d75f (commit)] * scsi_dh: Remove hardware handlers from dm [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=cb520223d7f22c5386aff27a5856a66e2c32aaac (commit)] * scsi_dh: Use SCSI device handler in dm-multipath [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=cfae5c9bb66325cd32d5f2ee41f14749f062a53c (commit)] * scsi_dh: Remove hardware handler infrastructure from dm [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=688864e29869a71a8183e4e2f96ccf9f2de1375f (commit)] * zfcp: sysfs attributes for fabric and channel latencies [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3a0d9e92356feb60ee4e978355f712366a93f4ef (commit)] * scsi_debug: Runtime-configurable sector size [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=597136ab70a6dccba5c40ee6eed88e881412429b (commit)] add support for rotation speed [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=eac6e8e449647cbb9efee53977c8bfee0aa7d69e (commit)] * ibmvfc: IBM Power Virtual Fibre Channel Adapter Client Driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=072b91f9c6510d0ec4a49d07dbc318760c7da7b3 (commit)] * sg: Add target reset support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=39120e11705782c77d3a47d7d2927676fd8e3aaa (commit)] == Sound == * Remove the OSS trident driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7102ed519a08b70eadc8fea9d8765d2d990241d1 (commit)] * Add EM-X270 ASoC driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=142054a389ebf7972b4eee822ad7c55ff852b649 (commit)] * hda: Add ALC663 support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6dda9f4a95905f2b38e79e3737da5e25397e6acb (commit)], add ICH9 controller support (8086:2911) [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=abbc9d1b25637b1948a4718fa8f7b257233136bc (commit)], add support of Teradici controller [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f269002e61446ed3410d8ca5f06ebca1e2760cb5 (commit)], add support for 92HD73xxx codecs [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=aafc4412be31306e5c38bd4e4581066507503adc (commit)], add Macbook 3.1 support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c7e0757a461db87157bbf92c4f5afda87cbe05f6 (commit)], add missing Thinkpad Z60m support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=470eaf6be78424fc499a5039e5d5fe58bace2bc3 (commit)], add support for Lenovo 3000 N200 [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=be321a890c25272965129ffe4b3b59a519fcf583 (commit)], add support of ASUS Eeepc P90 [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f53281e62a41ac176f050307c0d746a1183a68e8 (commit)], support new AMD HDMI Audio (1002:970f) [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=9e6dd47bf365f8f7bccea10f22fbbdbecce429e8 (commit)], added support for Asus V1Sn [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2522d7359301efadfb5744ebd3c623c3af4a7b30 (commit)], support intel DG33 motherboards [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=17bba1b72d190742c99a140154f0abac9c1996c3 (commit)], add Toshiba dynabook SS RX1 support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=36ca6e133ae3a57318a3ad8a41b2f005e3934c29 (commit)] * ASoC drivers: Add AK4535 driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=796d2ca84859d1fdb11ff06cd9707ffab5642fca (commit)], AC97 codec PM [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3f775987030cf7ff922765c18ddd0d311b4b46ef (commit)], add Digital Audio Interface (DAI) control functions. [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=8c6529dbf881303920a415c2d14a500218661949 (commit)], add Digital Audio Interface (DAI) control functions. [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=64105cfd65df74fdf82c1d053b2c9953304a94ea (commit)], Au12x0/Au1550 PSC Audio support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4a161d235b68eb7234f40106560c488a1bdb3851 (commit)], AT32 ASoC [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=9aaca9683b014c4d718f32cbddb42e5b36ea3c0f (commit)], UDA1380 driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b7482f52789266e2548be5d0f6420c9fc12428d8 (commit)], WM8510 driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5d421516670e8009436e299bd25cff1a6d3a4707 (commit)], WM8990 driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f10485e79882bf09cf442a673511154987b43e3b (commit)] * Driver for SGI HAL2 audio device [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=787dba37a6ff5c80c67f37c081712a6e4af92e25 (commit)] and SGI O2 audio board [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=862c2c0a61c515f2e9f63f689215bcf99a607eaf (commit)] * virtuoso: add Xonar D1 support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5430c72b14a06b12e8fe46bca18ca0d7095fb717 (commit)] * oxygen: add PM support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4a4bc53bc52978dd6c918531921da925fd047d95 (commit)] * opti93x: add support for Opti93x codec in cs4231-lib [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=abf1f5aafc1939db1f252e33914a3689e0f5830f (commit)] * ca0106 - Add entry for another MSI K8N Diamond MB [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f52845ad771a2b62bc06bc940f16c8f6296654ec (commit)] == V4L/DVB == * DVB-PLL: add Samsung DTOS403IH102A tuner [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=139dfeb2611ce92dec4c6b77297d209748340a21 (commit)] * Anysee: driver for Anysee DVB-T/C receiver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a51e34dd6080d8d5c9e95a4e0292cd4cb889a61b (commit)], support for Anysee E30C Plus rev 0.4 [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5ae2fcaee4b0d6bf0fa5d9bd71e1291c9a9a6e60 (commit)] * ivtv: add support for the Buffalo PC-MV5L/PCI card. [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d56eebfbdc11d1a3809d8bd793a118da5058ffa8 (commit)] * Add support for Pinnacle PCTV HD Pro stick (the older variant 2304:0227) [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4fd305b2a2c4d16e8d4ebc95c84f946edd3385c5 (commit)] * budget-ci: Add support for Technotrend budget C-1501 dvb-c card [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=11417daab6d596f8d4851476777ca49fb3b12a87 (commit)] * cx2341x: add TS capability [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e0e31cdb91cddc4cfbf6d5ffa8212f694723269b (commit)] * Add support for em2860 based PointNix Intra-Oral Camera [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a9fc52bcbeb5245b58d23c558f3e3e8f18bebbc3 (commit)] * Add LifeVideo To-Go Cardbus PCI ID [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=bfda3a0b3276cda7f2da1dcd98bd060b60954cbb (commit)] * This driver adds support for the Sensoray 2255 devices. [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=38f993ad8b1fe4caf9e989caf6e2a25aff3bbaf7 (commit)] * cxusb: add initial support for AVerTVHD Volar [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f5376adacc693155c24e4e7be3777bdd0eeb99f7 (commit)] * Avermedia E506 composite [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e5e4cd8df61e602202f588dd545364dba37b4cc7 (commit)] * Subdriver pac207 added and minor changes. [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e2997a72ddfafc25bd0c8f1f52bcf41979d5a559 (commit)] * Many bug fixes, zc3xx added. [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d43fa32fec442571f10f5d0c3b553413288728de (commit)] * cx18: enable TS support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e8b934de12989d1704e7df7ebb408a6021f08442 (commit)], add support for Conexant Raptor PAL/SECAM card [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=03c2808503b102971226007070c57410267d0b9d (commit)] * spca508: Add Clone Digital Webcam 11043 [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=69b28b110975abcfac3f7345494e74a771e9b724 (commit)] * dib0700: add support for Hauppauge Nova-TD Stick 52009 [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d01eb2dc7d5265ec3bee9ec1b8ab79155e1310d6 (commit)] * cx23885: add initial support for DViCO FusionHDTV7 Dual Express [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=335377b73dd0b0af1fbd283ceae6fcb87a747885 (commit)], add support for new revision of FusionHDTV7 Dual Express [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=52b5045078b76ee86e210210601d45670eab22f1 (commit)], add DViCO HDTV7 Dual Express tuner callback support. [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6df516905b5c53b306d90be33f9c56434e8db053 (commit)] * uvcvideo : Add support for Medion Akoya Mini E1210 integrated webcam [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=bdf2fe4a0b9d23e69c77eaec76212216c9a957ef (commit)] * uvcvideo : Add support for Asus F9GS integrated webcam [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=25e69850d1bb315f251c91183b89da44d4f9be23 (commit)] * add support for SMS1010 and SMS1150 based digital television devices [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2e5c1ec8865abd81e24a394918c7ba315e0b7b70 (commit)] * sms1xxx: add support for Hauppauge WinTV-Nova-T-MiniStick [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=44f71c3fcefbfea3628cca52c0a177252cf83b60 (commit)] * saa7134: Add support for analog only ASUSTeK P7131 [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=0b17d0edbc22eda3d0407f98ce4f16ceefb9a97f (commit)], add support for AVerMedia M103 [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e2fc00c21124d9d9a8d4f396e5498ea27ddfc8fd (commit)] * sh_mobile_ceu_camera: Add SuperH Mobile CEU driver V3 [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=0d3244d6439c8c31d2a29efd587c7aca9042c8aa (commit)] * soc_camera_platform: Add SoC Camera Platform driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=326c986207cb2065b9819107caa31efd2bbc48db (commit)] * v4l-dvb: remove broken PlanB driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=58cfdf9acffb0c61feb0e2bceacd557a2e0b0328 (commit)] * Add dvb-t support for terratec cinergy hybrid T usb xs [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=655b8408557d586212d0797d423babdc464c587f (commit)] * Add support for the ATI TV Wonder HD 600 [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e14b3658a7651ffd9b1f407eaf07f4dde17ef1e7 (commit)] * This patch adds support for the Micronas DRX3975D/DRX3977D DVB-T demodulator [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=89f9257c06cb635ef140bd1acf21fb067ed4ed34 (commit)] * Adds support for Dvbworld DVB-S 2102 USB card [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7fd4828f6cc5bd4339ff58e372ccb5f528548b30 (commit)] * add support for MaxLinear MxL5007T silicon tuner [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2a83e4d5e40fd8eda3c04a5847f0876a4be9d45b (commit)] * au0828: add support for new revision of HVR950Q [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=59d27521c0f50fadf3382e2b325a7e8a04d9a770 (commit)] * em28xx-cards: Add GrabBeeX+ USB2800 model [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=59d07f1b705c466ea4eaca9c43d46be6d6a065a4 (commit)], new supported IDs for analog models [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=95b86a9a9020da22e7c25abc77aae4dc8f02ab55 (commit)], add Compro Videomate Foryou/Stereo model [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d3603341e2f3c39f017f8df4b1cd734aeb0d453b (commit)] == Input == * Add HTC Shift Touchscreen Driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5a18c343a6bee4b38965f14a40ccb95306641f87 (commit)] * New driver for SGI O2 volume buttons [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3bee2a04cf14f599e094a37445f2eb4e6bb316bc (commit)] * Add driver for Tabletkiosk Sahara TouchIT-213 touchscreen [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=73422392734bb68c8ff8bc74ce1bbdc32f1b639a (commit)] * Add new serio driver for Xilinx XPS PS2 IP [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1191828f8e6454ebb51da3e1da21912f1783e469 (commit)] * Add driver for Atmel integrated touchscreen controller [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=72d18a7b9e1a3a9511bae78fc7f0932ae01d5d73 (commit)] * bcm5974 - add driver for Macbook Air and Pro Penryn touchpads [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f89bd95c5c946776f116ffeb997653d4193d6a35 (commit)] * bcm5974 - implement autosuspend support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=88da765f4d5f59f67a7a51c8f5d608a836b32133 (commit)] * Add support for SuperH MigoR touchscreen [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=885c316d776b64728b4ed30e3af60d23c9e46825 (commit)] * Add driver for iNexio serial touchscreen. [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3cadd2d98972f806165c634553ac4918b2b7920c (commit)] == USB == * Add MUSB and TUSB support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=550a7375fe720924241f0eb76e4a5c1a3eb8c32f (commit)] * usb gadget: new "CDC Composite" gadget driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=19e2068015d4a66f62a0a19be2130d2948ba8024 (commit)] * Autosuspend for cdc-wdm [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=17d80d562fd78a035e994afde88f354973e76236 (commit)] * Au1xxx-usb: suspend/resume support. [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=42bfc7b44f724fb5ce838fc2f552a3eb8cd768ec (commit)] * Delete airprime driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=640c1bce86d1e11ee6a1263fdf6170d3210b1684 (commit)] == FireWire == * [http://ieee1394.wiki.kernel.org/index.php/Release_Notes#Linux_2.6.27 release notes] == MTD == * NOR: Support for M50FLW080A and M50FLW080B [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=deb1a5f1134e7da0e3dacd37b5d32b7fe0600a7f (commit)] * NOR: Add support for AMD AM29SL800D[BT] NOR flash chips [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=8fd310a1cc3aadb7a17d844beeefae66b1a169c6 (commit)] * NOR: Add support for Eon EN29SL800B[BT] NOR flash chips [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1b0b30acf3fc76e5d4d278fa5a8c9c6ac9898745 (commit)] * NOR: Add support for flash chips with ID in bank other than 0 [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5c9c11e1c47c2101253a95c54ef72e13edcc728a (commit)] * MAP: Blackfin Async Flash Maps [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2e3c22f57029ce04d55c07b8332ae405005456d9 (commit)] * MAPS: Remove the bast-flash driver. [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6f40470e745693ee4ad85edb441b0aad5cae3f00 (commit)] == RTC == * rtc-pl030: add driver, remove old non-rtc lib driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a190901c6b5f1f4a31681e8c69d811a4f9426e2b (commit)] * Add ds1305/ds1306 driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=53e84b672c1a8190af2b376c35c7a39cf1214f59 (commit)] * Add support for ST M41T94 SPI RTC [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=8fc2c767b06067b417c565c4e75731e68ed41fd8 (commit)] == WATCHDOG == * delete unused driver mpc8xx_wdt.c [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=eaa95eb6ea43e6de8bea702c13556de9a1a1195a (commit)] * Add support for the built-int RDC R-321x SoC watchdog [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b3e8f2c13ae964a8889fe96a2f3f7fd7e0cfae76 (commit)] * Add support for the IDT RC32434 watchdog [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=03ec58568a3c66cac4b23ff74db95c966a1521de (commit)] * mpc83xx_wdt: add support for MPC86xx CPUs [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=500c919e3d699644cc9d6c1e93022481baafd8e1 (commit)] == Bluetooth == * Track status of Simple Pairing mode [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=333140b57fa7867bc92e5ee879b6ac4ef5e1d867 (commit)] * Track status of remote Simple Pairing mode [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=41a96212b3b7b3cd59e8e8d33e6dabf0e21d9778 (commit)] * Export remote Simple Pairing mode via sysfs [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a8bd28baf21b9ee6b8486666b771283e566c0d31 (commit)] * Add SCO support to btusb driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=9bfa35fe422c74882e27cc54450a5f76c96aad68 (commit)] == I2C == * Add Intel SCH SMBus support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5bc1200852c3dfc312481f57622f48b289ac802e (commit)] * Add support for I2C bus on Freescale CPM1/CPM2 controllers [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=61045dbe9d8d81b1bae4dc1e9482d389ca99edc1 (commit)] * i2c-ocores: basic PM support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2373c1801afd06d3a206376902b39a98458c9cfb (commit)] * Remove 3 deprecated bus drivers [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=20a9b6e7c303f2a6f9afe17c0997bc9a3c734442 (commit)] * Blackfin I2C Driver: Functional power management support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=958585f58f675a3c2855c7d91b6fdd2875552d0b (commit)] == Infiniband/RDMA == * RDMA: Add memory management extensions support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=00f7ec36c9324928e4cd23f02e6d8550f30c32ca (commit)] * RDMA/cxgb3: MEM_MGT_EXTENSIONS support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e7e55829999deaab3f43e201a087731c02c54cf9 (commit)], Add support for protocol statistics [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=14cc180f7b032f8484c1a3d0533b1129ffe307fd (commit)] * Add support for multicast loopback blocking [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=47ee1b9f2e7bf73950602efe0b74fa1a8481f222 (commit)] * mlx4: Add support for blocking multicast loopback packets [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=521e575b9a7324a0bca762622139f69582a042bf (commit)] * RDMA: Add iWARP protocol statistics attributes in sysfs [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7f624d023b5fb150831e02c1e4c0f2619ade72c2 (commit)] * IPoIB: add LRO support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=af40da894e96d5c826d38be3ea53ee00d9de0367 (commit)] == MMC == * Add S3C24XX MMC/SD driver. [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=be518018c6b9224c02284fb243207ef741c31ec6 (commit)], [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=edb5a98e43682d66c98ddd1dee863d867807546e (commit)] * Add host driver for Ricoh Bay1controllers [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6a36913a33cf3d366e124f25c486a71212d02bce (commit)] * Add support for card-detection polling [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=28f52482b41edc88cdf575aa6ed414c6e116ce10 (commit)] * Remove multiwrite capability [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=23af60398af2f5033e2f53665538a09f498dbc03 (commit)] * sdhci: handle hot-remove [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1e72859e3ae16346d4007024b20d2d4ef387dcc3 (commit)], support JMicron secondary interface [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4489428ab5a49a6f443d9aa17f1d891417787d7b (commit)], scatter-gather (ADMA) support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2134a922c6e75c779983cad5d8aae832275f5a0d (commit)] * au1xmmc: suspend/resume implementation [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=dd8572af68229a65b6716b286395ad7f5e2ecc48 (commit)], SDIO IRQ support. [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=20f522ff5583a818922b3f650f6f7ef0e3e1aa68 (commit)] * mmc_block: bounce buffer highmem support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2ff1fa679115e3c8c78ad74ad8fd2d7fd87ae4e7 (commit)] * mmc_spi: add support for card-detection polling [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=619ef4b42128709de4d89d209b2c874f560deecd (commit)] * at91_mci: support for block size not modulo 4 [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=80f9254668c63ae73c1359d8de50ad94aa1aa94a (commit)] * atmel-mci: Driver for Atmel on-chip MMC controllers [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7d2be0749a59096a334c94dc48f43294193cb8ed (commit)] == HWMON == * Add support for the SMSC SCH5027 [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=549edb83327f2a5027a22d65b10603b01dc40175 (commit)] * ad7414 driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6c633c3025c75f5fcf3a76d375faff34e3be021b (commit)] * lm75: Drop legacy i2c driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=8ff69eebf5bf8a123a117b78412d5efb85765d8b (commit)] * ADC124S501 generic driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d42139a3fbd9793cf3747287e8f5c1ae06e06942 (commit)] == ACPI == * Create "idle=halt" bootparam [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c1e3b377ad48febba6f91b8ae42c44ee4d4ab45e (commit)] * Create "idle=nomwait" bootparam [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=da5e09a1b3e5a9fc0b15a3feb64e921ccc55ba74 (commit)] * compal Laptop Extras [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5411552c707f4b7387ad63141ef3a559e7488091 (commit)] * Revert "remove the strip driver" [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a60f28fa934ccadbf526f4dab8d73079480002a4 (commit)] * thinkpad-acpi: add bluetooth and WWAN rfkill support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=0e74dc2646db04b644faa8ea10ff4f408d55cf90 (commit)] * misc: add HP WMI laptop extras driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=62ec30d45ecbb85b5991474c8f04192697687495 (commit)] == Various == * mfd * Driver for the T7L66XB TMIO SoC [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1f192015ca5b2f4d0a79c191f03f64e72fd8fc29 (commit)] * Driver for the TC6387XB TMIO controller. [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=cbdfb426392557d49b1a0e7cb59b16c20dc42955 (commit)] * Driver for the TMIO NAND controller [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ec43b8161bd82535fa8099ee6e98cc554de48614 (commit)] * TMIO MMC driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4a48998fa16121d0fe3436cce43afd6f47424103 (commit)] * gpio * max732x driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=bbcd6d543de335bf81e96477f46a60a8bf51039c (commit)] * sysfs interface [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d8f388d8dc8d4f36539dd37c1fff62cc404ea0fc (commit)] * Add bt8xxgpio driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ff1d5c2f0268f4e32103536e2e65480b5b7b6530 (commit)] * Add gpio driver for max7301 SPI GPIO expander [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=0c36ec31473593aa937ff04f3b3b630e81512734 (commit)] * Add new orion_spi driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=60cadec9da7b6c91aca51f408c828f7e74a68379 (commit)] * Add OF binding support for SPI busses [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=284b01897340974000bcc84de87a4e1becc8a83d (commit)] * UIO: add generic UIO platform driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4d80d59437247075029534adec8d69fce2cfb87a (commit)] * HP iLO driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=89bcb05d9bbf8bd559988bca4f2579defd28d008 (commit)] * Char: mxser, add CP-102UF support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e129deff3d979df1ad3d0a6756c90932c0a0a102 (commit)] * I/OAT version 3.0 support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7f1b358a236ee9c19657a619ac6f2dcabcaa0924 (commit)] * leds * Add pca9532 led driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e14fa82439d33cef67eaafc1a48960bbfa610c8e (commit)] * Add support for Philips PCA955x I2C LED drivers [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f46e9203d9a100bae216cc06e17f2e77351aa8d8 (commit)] * backlight: Add Nvidia-based Apple Macbook Pro backlight driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7be35c72e6454059a33ad844153349973d22fcb7 (commit)] * pcmcia: add support Compactflash PCMCIA support for Blackfin. [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=785e821eb679c171f453722f15c6791de0c1abe1 (commit)] * power_supply: Sharp SL-6000 (tosa) batteries support [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=fece418418f51e92dd7e67e17c5e3fe5a28d3279 (commit)] * dmaengine: DMA engine driver for Marvell XOR engine [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ff7b04796d9866327ea76e1393f1e902ef032f84 (commit)], driver for the Synopsys Designware DMA controller [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3bfb1d20b547a5071d01344581eac5846ea84491 (commit)] * rfkill: add the WWAN radio type [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=477576a073699783abb53ae14993d5d41c66301d (commit)] * edac: i5100 new intel chipset driver [http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=8f421c595a9145959d8aab09172743132abdffdb (commit)] ---- CategoryReleases