1 2 List of maintainers and how to submit kernel changes 3 4Please try to follow the guidelines below. This will make things 5easier on the maintainers. Not all of these guidelines matter for every 6trivial patch so apply some common sense. 7 81. Always _test_ your changes, however small, on at least 4 or 9 5 people, preferably many more. 10 112. Try to release a few ALPHA test versions to the net. Announce 12 them onto the kernel channel and await results. This is especially 13 important for device drivers, because often that's the only way 14 you will find things like the fact version 3 firmware needs 15 a magic fix you didn't know about, or some clown changed the 16 chips on a board and not its name. (Don't laugh! Look at the 17 SMC etherpower for that.) 18 193. Make sure your changes compile correctly in multiple 20 configurations. In particular check that changes work both as a 21 module and built into the kernel. 22 234. When you are happy with a change make it generally available for 24 testing and await feedback. 25 265. Make a patch available to the relevant maintainer in the list. Use 27 'diff -u' to make the patch easy to merge. Be prepared to get your 28 changes sent back with seemingly silly requests about formatting 29 and variable names. These aren't as silly as they seem. One 30 job the maintainers (and especially Linus) do is to keep things 31 looking the same. Sometimes this means that the clever hack in 32 your driver to get around a problem actually needs to become a 33 generalized kernel feature ready for next time. 34 35 PLEASE check your patch with the automated style checker 36 (scripts/checkpatch.pl) to catch trival style violations. 37 See Documentation/CodingStyle for guidance here. 38 39 PLEASE CC: the maintainers and mailing lists that are generated 40 by scripts/get_maintainer.pl. The results returned by the 41 script will be best if you have git installed and are making 42 your changes in a branch derived from Linus' latest git tree. 43 See Documentation/SubmittingPatches for details. 44 45 PLEASE try to include any credit lines you want added with the 46 patch. It avoids people being missed off by mistake and makes 47 it easier to know who wants adding and who doesn't. 48 49 PLEASE document known bugs. If it doesn't work for everything 50 or does something very odd once a month document it. 51 52 PLEASE remember that submissions must be made under the terms 53 of the OSDL certificate of contribution and should include a 54 Signed-off-by: line. The current version of this "Developer's 55 Certificate of Origin" (DCO) is listed in the file 56 Documentation/SubmittingPatches. 57 586. Make sure you have the right to send any changes you make. If you 59 do changes at work you may find your employer owns the patch 60 not you. 61 627. When sending security related changes or reports to a maintainer 63 please Cc: security@kernel.org, especially if the maintainer 64 does not respond. 65 668. Happy hacking. 67 68Descriptions of section entries: 69 70 P: Person (obsolete) 71 M: Mail patches to: FullName <address@domain> 72 L: Mailing list that is relevant to this area 73 W: Web-page with status/info 74 T: SCM tree type and location. Type is one of: git, hg, quilt, stgit. 75 S: Status, one of the following: 76 Supported: Someone is actually paid to look after this. 77 Maintained: Someone actually looks after it. 78 Odd Fixes: It has a maintainer but they don't have time to do 79 much other than throw the odd patch in. See below.. 80 Orphan: No current maintainer [but maybe you could take the 81 role as you write your new code]. 82 Obsolete: Old code. Something tagged obsolete generally means 83 it has been replaced by a better system and you 84 should be using that. 85 F: Files and directories with wildcard patterns. 86 A trailing slash includes all files and subdirectory files. 87 F: drivers/net/ all files in and below drivers/net 88 F: drivers/net/* all files in drivers/net, but not below 89 F: */net/* all files in "any top level directory"/net 90 One pattern per line. Multiple F: lines acceptable. 91 X: Files and directories that are NOT maintained, same rules as F: 92 Files exclusions are tested before file matches. 93 Can be useful for excluding a specific subdirectory, for instance: 94 F: net/ 95 X: net/ipv6/ 96 matches all files in and below net excluding net/ipv6/ 97 K: Keyword perl extended regex pattern to match content in a 98 patch or file. For instance: 99 K: of_get_profile 100 matches patches or files that contain "of_get_profile" 101 K: \b(printk|pr_(info|err))\b 102 matches patches or files that contain one or more of the words 103 printk, pr_info or pr_err 104 One regex pattern per line. Multiple K: lines acceptable. 105 106Note: For the hard of thinking, this list is meant to remain in alphabetical 107order. If you could add yourselves to it in alphabetical order that would be 108so much easier [Ed] 109 110Maintainers List (try to look for most precise areas first) 111 112 ----------------------------------- 113 1143C505 NETWORK DRIVER 115M: Philip Blundell <philb@gnu.org> 116L: netdev@vger.kernel.org 117S: Maintained 118F: drivers/net/3c505* 119 1203C59X NETWORK DRIVER 121M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de> 122L: netdev@vger.kernel.org 123S: Maintained 124F: Documentation/networking/vortex.txt 125F: drivers/net/3c59x.c 126 1273CR990 NETWORK DRIVER 128M: David Dillow <dave@thedillows.org> 129L: netdev@vger.kernel.org 130S: Maintained 131F: drivers/net/typhoon* 132 1333W-9XXX SATA-RAID CONTROLLER DRIVER 134M: Adam Radford <linuxraid@amcc.com> 135L: linux-scsi@vger.kernel.org 136W: http://www.amcc.com 137S: Supported 138F: drivers/scsi/3w-9xxx* 139 1403W-XXXX ATA-RAID CONTROLLER DRIVER 141M: Adam Radford <linuxraid@amcc.com> 142L: linux-scsi@vger.kernel.org 143W: http://www.amcc.com 144S: Supported 145F: drivers/scsi/3w-xxxx* 146 14753C700 AND 53C700-66 SCSI DRIVER 148M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> 149L: linux-scsi@vger.kernel.org 150S: Maintained 151F: drivers/scsi/53c700* 152 1536PACK NETWORK DRIVER FOR AX.25 154M: Andreas Koensgen <ajk@comnets.uni-bremen.de> 155L: linux-hams@vger.kernel.org 156S: Maintained 157F: drivers/net/hamradio/6pack.c 158 1598169 10/100/1000 GIGABIT ETHERNET DRIVER 160M: Francois Romieu <romieu@fr.zoreil.com> 161L: netdev@vger.kernel.org 162S: Maintained 163F: drivers/net/r8169.c 164 1658250/16?50 (AND CLONE UARTS) SERIAL DRIVER 166L: linux-serial@vger.kernel.org 167W: http://serial.sourceforge.net 168S: Orphan 169F: drivers/serial/8250* 170F: include/linux/serial_8250.h 171 1728390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.] 173M: Paul Gortmaker <p_gortmaker@yahoo.com> 174L: netdev@vger.kernel.org 175S: Maintained 176F: drivers/net/*8390* 177F: drivers/net/ax88796.c 178 1799P FILE SYSTEM 180M: Eric Van Hensbergen <ericvh@gmail.com> 181M: Ron Minnich <rminnich@sandia.gov> 182M: Latchesar Ionkov <lucho@ionkov.net> 183L: v9fs-developer@lists.sourceforge.net 184W: http://swik.net/v9fs 185T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git 186S: Maintained 187F: Documentation/filesystems/9p.txt 188F: fs/9p/ 189 190A2232 SERIAL BOARD DRIVER 191M: Enver Haase <A2232@gmx.net> 192L: linux-m68k@lists.linux-m68k.org 193S: Maintained 194F: drivers/char/ser_a2232* 195 196AACRAID SCSI RAID DRIVER 197M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> 198L: linux-scsi@vger.kernel.org 199W: http://www.adaptec.com/ 200S: Supported 201F: Documentation/scsi/aacraid.txt 202F: drivers/scsi/aacraid/ 203 204ABIT UGURU 1,2 HARDWARE MONITOR DRIVER 205M: Hans de Goede <j.w.r.degoede@hhs.nl> 206L: lm-sensors@lm-sensors.org 207S: Maintained 208F: drivers/hwmon/abituguru.c 209 210ABIT UGURU 3 HARDWARE MONITOR DRIVER 211M: Alistair John Strachan <alistair@devzero.co.uk> 212L: lm-sensors@lm-sensors.org 213S: Maintained 214F: drivers/hwmon/abituguru3.c 215 216ACENIC DRIVER 217M: Jes Sorensen <jes@trained-monkey.org> 218L: linux-acenic@sunsite.dk 219S: Maintained 220F: drivers/net/acenic* 221 222ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER 223M: Peter Feuerer <peter@piie.net> 224L: platform-driver-x86@vger.kernel.org 225W: http://piie.net/?section=acerhdf 226S: Maintained 227F: drivers/platform/x86/acerhdf.c 228 229ACER WMI LAPTOP EXTRAS 230M: Carlos Corbacho <carlos@strangeworlds.co.uk> 231L: aceracpi@googlegroups.com (subscribers-only) 232L: platform-driver-x86@vger.kernel.org 233W: http://code.google.com/p/aceracpi 234S: Maintained 235F: drivers/platform/x86/acer-wmi.c 236 237ACPI 238M: Len Brown <lenb@kernel.org> 239L: linux-acpi@vger.kernel.org 240W: http://www.lesswatts.org/projects/acpi/ 241T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6.git 242S: Supported 243F: drivers/acpi/ 244F: drivers/pnp/pnpacpi/ 245F: include/linux/acpi.h 246F: include/acpi/ 247 248ACPI BATTERY DRIVERS 249M: Alexey Starikovskiy <astarikovskiy@suse.de> 250L: linux-acpi@vger.kernel.org 251W: http://www.lesswatts.org/projects/acpi/ 252S: Supported 253F: drivers/acpi/battery.c 254F: drivers/acpi/*sbs* 255 256ACPI EC DRIVER 257M: Alexey Starikovskiy <astarikovskiy@suse.de> 258L: linux-acpi@vger.kernel.org 259W: http://www.lesswatts.org/projects/acpi/ 260S: Supported 261F: drivers/acpi/ec.c 262 263ACPI FAN DRIVER 264M: Zhang Rui <rui.zhang@intel.com> 265L: linux-acpi@vger.kernel.org 266W: http://www.lesswatts.org/projects/acpi/ 267S: Supported 268F: drivers/acpi/fan.c 269 270ACPI PROCESSOR AGGREGATOR DRIVER 271M: Shaohua Li <shaohua.li@intel.com> 272L: linux-acpi@vger.kernel.org 273W: http://www.lesswatts.org/projects/acpi/ 274S: Supported 275F: drivers/acpi/acpi_pad.c 276 277ACPI THERMAL DRIVER 278M: Zhang Rui <rui.zhang@intel.com> 279L: linux-acpi@vger.kernel.org 280W: http://www.lesswatts.org/projects/acpi/ 281S: Supported 282F: drivers/acpi/*thermal* 283 284ACPI VIDEO DRIVER 285M: Zhang Rui <rui.zhang@intel.com> 286L: linux-acpi@vger.kernel.org 287W: http://www.lesswatts.org/projects/acpi/ 288S: Supported 289F: drivers/acpi/video.c 290 291ACPI WMI DRIVER 292M: Carlos Corbacho <carlos@strangeworlds.co.uk> 293L: platform-driver-x86@vger.kernel.org 294W: http://www.lesswatts.org/projects/acpi/ 295S: Maintained 296F: drivers/platform/x86/wmi.c 297 298AD1889 ALSA SOUND DRIVER 299M: Kyle McMartin <kyle@mcmartin.ca> 300M: Thibaut Varene <T-Bone@parisc-linux.org> 301W: http://wiki.parisc-linux.org/AD1889 302L: linux-parisc@vger.kernel.org 303S: Maintained 304F: sound/pci/ad1889.* 305 306ADM1025 HARDWARE MONITOR DRIVER 307M: Jean Delvare <khali@linux-fr.org> 308L: lm-sensors@lm-sensors.org 309S: Maintained 310F: Documentation/hwmon/adm1025 311F: drivers/hwmon/adm1025.c 312 313ADM1029 HARDWARE MONITOR DRIVER 314M: Corentin Labbe <corentin.labbe@geomatys.fr> 315L: lm-sensors@lm-sensors.org 316S: Maintained 317F: drivers/hwmon/adm1029.c 318 319ADM8211 WIRELESS DRIVER 320M: Michael Wu <flamingice@sourmilk.net> 321L: linux-wireless@vger.kernel.org 322W: http://linuxwireless.org/ 323T: git git://git.kernel.org/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git 324S: Maintained 325F: drivers/net/wireless/adm8211.* 326 327ADT746X FAN DRIVER 328M: Colin Leroy <colin@colino.net> 329S: Maintained 330F: drivers/macintosh/therm_adt746x.c 331 332ADT7475 HARDWARE MONITOR DRIVER 333M: Jean Delvare <khali@linux-fr.org> 334L: lm-sensors@lm-sensors.org 335S: Maintained 336F: Documentation/hwmon/adt7475 337F: drivers/hwmon/adt7475.c 338 339ADVANSYS SCSI DRIVER 340M: Matthew Wilcox <matthew@wil.cx> 341L: linux-scsi@vger.kernel.org 342S: Maintained 343F: Documentation/scsi/advansys.txt 344F: drivers/scsi/advansys.c 345 346AEDSP16 DRIVER 347M: Riccardo Facchetti <fizban@tin.it> 348S: Maintained 349F: sound/oss/aedsp16.c 350 351AFFS FILE SYSTEM 352M: Roman Zippel <zippel@linux-m68k.org> 353S: Maintained 354F: Documentation/filesystems/affs.txt 355F: fs/affs/ 356 357AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN 358M: David Howells <dhowells@redhat.com> 359L: linux-afs@lists.infradead.org 360S: Supported 361F: fs/afs/ 362F: include/net/af_rxrpc.h 363F: net/rxrpc/af_rxrpc.c 364 365AGPGART DRIVER 366M: David Airlie <airlied@linux.ie> 367T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git 368S: Maintained 369F: drivers/char/agp/ 370F: include/linux/agp* 371 372AHA152X SCSI DRIVER 373M: "Juergen E. Fischer" <fischer@norbit.de> 374L: linux-scsi@vger.kernel.org 375S: Maintained 376F: drivers/scsi/aha152x* 377F: drivers/scsi/pcmcia/aha152x* 378 379AIC7XXX / AIC79XX SCSI DRIVER 380M: Hannes Reinecke <hare@suse.de> 381L: linux-scsi@vger.kernel.org 382S: Maintained 383F: drivers/scsi/aic7xxx/ 384F: drivers/scsi/aic7xxx_old/ 385 386AIO 387M: Benjamin LaHaise <bcrl@kvack.org> 388L: linux-aio@kvack.org 389S: Supported 390F: fs/aio.c 391F: include/linux/*aio*.h 392 393ALCATEL SPEEDTOUCH USB DRIVER 394M: Duncan Sands <duncan.sands@free.fr> 395L: linux-usb@vger.kernel.org 396W: http://www.linux-usb.org/SpeedTouch/ 397S: Maintained 398F: drivers/usb/atm/speedtch.c 399F: drivers/usb/atm/usbatm.c 400 401ALCHEMY AU1XX0 MMC DRIVER 402M: Manuel Lauss <manuel.lauss@gmail.com> 403S: Maintained 404F: drivers/mmc/host/au1xmmc.c 405 406ALI1563 I2C DRIVER 407M: Rudolf Marek <r.marek@assembler.cz> 408L: linux-i2c@vger.kernel.org 409S: Maintained 410F: Documentation/i2c/busses/i2c-ali1563 411F: drivers/i2c/busses/i2c-ali1563.c 412 413ALPHA PORT 414M: Richard Henderson <rth@twiddle.net> 415M: Ivan Kokshaysky <ink@jurassic.park.msu.ru> 416M: Matt Turner <mattst88@gmail.com> 417L: linux-alpha@vger.kernel.org 418F: arch/alpha/ 419 420AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER 421M: Thomas Dahlmann <dahlmann.thomas@arcor.de> 422L: linux-geode@lists.infradead.org (moderated for non-subscribers) 423S: Supported 424F: drivers/usb/gadget/amd5536udc.* 425 426AMD GEODE PROCESSOR/CHIPSET SUPPORT 427P: Jordan Crouse 428L: linux-geode@lists.infradead.org (moderated for non-subscribers) 429W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html 430S: Supported 431F: arch/x86/kernel/geode_32.c 432F: drivers/char/hw_random/geode-rng.c 433F: drivers/crypto/geode* 434F: drivers/video/geode/ 435F: arch/x86/include/asm/geode.h 436 437AMD IOMMU (AMD-VI) 438M: Joerg Roedel <joerg.roedel@amd.com> 439L: iommu@lists.linux-foundation.org 440T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/linux-2.6-iommu.git 441S: Supported 442F: arch/x86/kernel/amd_iommu*.c 443F: arch/x86/include/asm/amd_iommu*.h 444 445AMD MICROCODE UPDATE SUPPORT 446M: Andreas Herrmann <andreas.herrmann3@amd.com> 447L: amd64-microcode@amd64.org 448S: Supported 449F: arch/x86/kernel/microcode_amd.c 450 451AMS (Apple Motion Sensor) DRIVER 452M: Stelian Pop <stelian@popies.net> 453M: Michael Hanselmann <linux-kernel@hansmi.ch> 454S: Supported 455F: drivers/hwmon/ams/ 456 457AMSO1100 RNIC DRIVER 458M: Tom Tucker <tom@opengridcomputing.com> 459M: Steve Wise <swise@opengridcomputing.com> 460L: linux-rdma@vger.kernel.org 461S: Maintained 462F: drivers/infiniband/hw/amso1100/ 463 464AOA (Apple Onboard Audio) ALSA DRIVER 465M: Johannes Berg <johannes@sipsolutions.net> 466L: linuxppc-dev@ozlabs.org 467L: alsa-devel@alsa-project.org (moderated for non-subscribers) 468S: Maintained 469F: sound/aoa/ 470 471APM DRIVER 472M: Stephen Rothwell <sfr@canb.auug.org.au> 473L: linux-laptop@vger.kernel.org 474W: http://www.canb.auug.org.au/~sfr/ 475S: Supported 476F: arch/x86/kernel/apm_32.c 477F: include/linux/apm_bios.h 478 479APPLE BCM5974 MULTITOUCH DRIVER 480M: Henrik Rydberg <rydberg@euromail.se> 481L: linux-input@vger.kernel.org 482S: Maintained 483F: drivers/input/mouse/bcm5974.c 484 485APPLE SMC DRIVER 486M: Nicolas Boichat <nicolas@boichat.ch> 487L: mactel-linux-devel@lists.sourceforge.net 488S: Maintained 489F: drivers/hwmon/applesmc.c 490 491APPLETALK NETWORK LAYER 492M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> 493S: Maintained 494F: drivers/net/appletalk/ 495F: net/appletalk/ 496 497ARC FRAMEBUFFER DRIVER 498M: Jaya Kumar <jayalk@intworks.biz> 499S: Maintained 500F: drivers/video/arcfb.c 501F: drivers/video/fb_defio.c 502 503ARM MFM AND FLOPPY DRIVERS 504M: Ian Molton <spyro@f2s.com> 505S: Maintained 506F: arch/arm/lib/floppydma.S 507F: arch/arm/include/asm/floppy.h 508 509ARM PORT 510M: Russell King <linux@arm.linux.org.uk> 511L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 512W: http://www.arm.linux.org.uk/ 513S: Maintained 514F: arch/arm/ 515 516ARM PRIMECELL AACI PL041 DRIVER 517M: Russell King <linux@arm.linux.org.uk> 518S: Maintained 519F: sound/arm/aaci.* 520 521ARM PRIMECELL CLCD PL110 DRIVER 522M: Russell King <linux@arm.linux.org.uk> 523S: Maintained 524F: drivers/video/amba-clcd.* 525 526ARM PRIMECELL KMI PL050 DRIVER 527M: Russell King <linux@arm.linux.org.uk> 528S: Maintained 529F: drivers/input/serio/ambakmi.* 530F: include/linux/amba/kmi.h 531 532ARM PRIMECELL MMCI PL180/1 DRIVER 533S: Orphan 534F: drivers/mmc/host/mmci.* 535 536ARM PRIMECELL BUS SUPPORT 537M: Russell King <linux@arm.linux.org.uk> 538S: Maintained 539F: drivers/amba/ 540F: include/linux/amba/bus.h 541 542ARM/ADI ROADRUNNER MACHINE SUPPORT 543M: Lennert Buytenhek <kernel@wantstofly.org> 544L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 545S: Maintained 546F: arch/arm/mach-ixp23xx/ 547F: arch/arm/mach-ixp23xx/include/mach/ 548 549ARM/ADS SPHERE MACHINE SUPPORT 550M: Lennert Buytenhek <kernel@wantstofly.org> 551L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 552S: Maintained 553 554ARM/AFEB9260 MACHINE SUPPORT 555M: Sergey Lapin <slapin@ossfans.org> 556L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 557S: Maintained 558 559ARM/AJECO 1ARM MACHINE SUPPORT 560M: Lennert Buytenhek <kernel@wantstofly.org> 561L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 562S: Maintained 563 564ARM/ATMEL AT91RM9200 ARM ARCHITECTURE 565M: Andrew Victor <linux@maxim.org.za> 566L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 567W: http://maxim.org.za/at91_26.html 568S: Maintained 569 570ARM/BCMRING ARM ARCHITECTURE 571M: Leo Chen <leochen@broadcom.com> 572M: Scott Branden <sbranden@broadcom.com> 573L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 574S: Maintained 575F: arch/arm/mach-bcmring 576 577ARM/BCMRING MTD NAND DRIVER 578M: Leo Chen <leochen@broadcom.com> 579M: Scott Branden <sbranden@broadcom.com> 580L: linux-mtd@lists.infradead.org 581S: Maintained 582F: drivers/mtd/nand/bcm_umi_nand.c 583F: drivers/mtd/nand/bcm_umi_bch.c 584F: drivers/mtd/nand/bcm_umi_hamming.c 585F: drivers/mtd/nand/nand_bcm_umi.h 586 587ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE 588M: Hartley Sweeten <hsweeten@visionengravers.com> 589M: Ryan Mallon <ryan@bluewatersys.com> 590L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 591S: Maintained 592F: arch/arm/mach-ep93xx/ 593F: arch/arm/mach-ep93xx/include/mach/ 594 595ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT 596M: Lennert Buytenhek <kernel@wantstofly.org> 597L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 598S: Maintained 599 600ARM/CLKDEV SUPPORT 601M: Russell King <linux@arm.linux.org.uk> 602L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 603F: arch/arm/common/clkdev.c 604F: arch/arm/include/asm/clkdev.h 605 606ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT 607M: Mike Rapoport <mike@compulab.co.il> 608L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 609S: Maintained 610 611ARM/CONTEC MICRO9 MACHINE SUPPORT 612M: Hubert Feurstein <hubert.feurstein@contec.at> 613S: Maintained 614F: arch/arm/mach-ep93xx/micro9.c 615 616ARM/CORGI MACHINE SUPPORT 617M: Richard Purdie <rpurdie@rpsys.net> 618S: Maintained 619 620ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE 621M: Paulius Zaleckas <paulius.zaleckas@gmail.com> 622L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 623T: git git://gitorious.org/linux-gemini/mainline.git 624S: Odd Fixes 625F: arch/arm/mach-gemini/ 626 627ARM/EBSA110 MACHINE SUPPORT 628M: Russell King <linux@arm.linux.org.uk> 629L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 630W: http://www.arm.linux.org.uk/ 631S: Maintained 632F: arch/arm/mach-ebsa110/ 633F: drivers/net/arm/am79c961a.* 634 635ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6) 636M: Daniel Ribeiro <drwyrm@gmail.com> 637M: Stefan Schmidt <stefan@openezx.org> 638M: Harald Welte <laforge@openezx.org> 639L: openezx-devel@lists.openezx.org (subscribers-only) 640W: http://www.openezx.org/ 641S: Maintained 642T: topgit git://git.openezx.org/openezx.git 643F: arch/arm/mach-pxa/ezx.c 644 645ARM/FARADAY FA526 PORT 646M: Paulius Zaleckas <paulius.zaleckas@gmail.com> 647L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 648S: Odd Fixes 649F: arch/arm/mm/*-fa* 650 651ARM/FOOTBRIDGE ARCHITECTURE 652M: Russell King <linux@arm.linux.org.uk> 653L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 654W: http://www.arm.linux.org.uk/ 655S: Maintained 656F: arch/arm/include/asm/hardware/dec21285.h 657F: arch/arm/mach-footbridge/ 658 659ARM/FREESCALE IMX / MXC ARM ARCHITECTURE 660M: Sascha Hauer <kernel@pengutronix.de> 661L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 662S: Maintained 663T: git://git.pengutronix.de/git/imx/linux-2.6.git 664F: arch/arm/mach-mx*/ 665F: arch/arm/plat-mxc/ 666 667ARM/GLOMATION GESBC9312SX MACHINE SUPPORT 668M: Lennert Buytenhek <kernel@wantstofly.org> 669L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 670S: Maintained 671 672ARM/GUMSTIX MACHINE SUPPORT 673M: Steve Sakoman <sakoman@gmail.com> 674L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 675S: Maintained 676 677ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT 678M: Philipp Zabel <philipp.zabel@gmail.com> 679S: Maintained 680F: arch/arm/mach-pxa/hx4700.c 681F: arch/arm/mach-pxa/include/mach/hx4700.h 682 683ARM/HP JORNADA 7XX MACHINE SUPPORT 684M: Kristoffer Ericson <kristoffer.ericson@gmail.com> 685W: www.jlime.com 686S: Maintained 687T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git 688F: arch/arm/mach-sa1100/jornada720.c 689F: arch/arm/mach-sa1100/include/mach/jornada720.h 690 691ARM/INTEL IOP32X ARM ARCHITECTURE 692M: Lennert Buytenhek <kernel@wantstofly.org> 693M: Dan Williams <dan.j.williams@intel.com> 694L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 695S: Maintained 696 697ARM/INTEL IOP33X ARM ARCHITECTURE 698M: Dan Williams <dan.j.williams@intel.com> 699L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 700S: Maintained 701 702ARM/INTEL IOP13XX ARM ARCHITECTURE 703M: Lennert Buytenhek <kernel@wantstofly.org> 704M: Dan Williams <dan.j.williams@intel.com> 705L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 706S: Maintained 707 708ARM/INTEL IQ81342EX MACHINE SUPPORT 709M: Lennert Buytenhek <kernel@wantstofly.org> 710M: Dan Williams <dan.j.williams@intel.com> 711L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 712S: Maintained 713 714ARM/INTEL IXP2000 ARM ARCHITECTURE 715M: Lennert Buytenhek <kernel@wantstofly.org> 716L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 717S: Maintained 718 719ARM/INTEL IXDP2850 MACHINE SUPPORT 720M: Lennert Buytenhek <kernel@wantstofly.org> 721L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 722S: Maintained 723 724ARM/INTEL IXP23XX ARM ARCHITECTURE 725M: Lennert Buytenhek <kernel@wantstofly.org> 726L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 727S: Maintained 728 729ARM/INTEL IXP4XX ARM ARCHITECTURE 730M: Imre Kaloz <kaloz@openwrt.org> 731M: Krzysztof Halasa <khc@pm.waw.pl> 732L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 733S: Maintained 734F: arch/arm/mach-ixp4xx/ 735 736ARM/INTEL RESEARCH IMOTE 2 MACHINE SUPPORT 737M: Jonathan Cameron <jic23@cam.ac.uk> 738L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 739S: Maintained 740F: arch/arm/mach-pxa/imote2.c 741 742ARM/INTEL RESEARCH STARGATE 2 MACHINE SUPPORT 743M: Jonathan Cameron <jic23@cam.ac.uk> 744L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 745S: Maintained 746F: arch/arm/mach-pxa/stargate2.c 747F: drivers/pcmcia/pxa2xx_stargate2.c 748 749ARM/INTEL XSC3 (MANZANO) ARM CORE 750M: Lennert Buytenhek <kernel@wantstofly.org> 751M: Dan Williams <dan.j.williams@intel.com> 752L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 753S: Maintained 754 755ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT 756M: Lennert Buytenhek <kernel@wantstofly.org> 757L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 758S: Maintained 759 760ARM/LOGICPD PXA270 MACHINE SUPPORT 761M: Lennert Buytenhek <kernel@wantstofly.org> 762L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 763S: Maintained 764 765ARM/MAGICIAN MACHINE SUPPORT 766M: Philipp Zabel <philipp.zabel@gmail.com> 767S: Maintained 768 769ARM/Marvell Loki/Kirkwood/MV78xx0/Orion SOC support 770M: Lennert Buytenhek <buytenh@marvell.com> 771M: Nicolas Pitre <nico@marvell.com> 772L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 773T: git git://git.marvell.com/orion 774S: Maintained 775F: arch/arm/mach-loki/ 776F: arch/arm/mach-kirkwood/ 777F: arch/arm/mach-mv78xx0/ 778F: arch/arm/mach-orion5x/ 779F: arch/arm/plat-orion/ 780 781ARM/MIOA701 MACHINE SUPPORT 782M: Robert Jarzmik <robert.jarzmik@free.fr> 783L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 784F: arch/arm/mach-pxa/mioa701.c 785S: Maintained 786 787ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT 788M: Michael Petchkovsky <mkpetch@internode.on.net> 789S: Maintained 790 791ARM/NOMADIK ARCHITECTURE 792M: Alessandro Rubini <rubini@unipv.it> 793M: STEricsson <STEricsson_nomadik_linux@list.st.com> 794L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 795S: Maintained 796F: arch/arm/mach-nomadik/ 797F: arch/arm/plat-nomadik/ 798 799ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT 800M: Nelson Castillo <arhuaco@freaks-unidos.net> 801L: openmoko-kernel@lists.openmoko.org (subscribers-only) 802W: http://wiki.openmoko.org/wiki/Neo_FreeRunner 803S: Supported 804 805ARM/QUALCOMM MSM MACHINE SUPPORT 806M: David Brown <davidb@codeaurora.org> 807M: Daniel Walker <dwalker@codeaurora.org> 808M: Bryan Huntsman <bryanh@codeaurora.org> 809F: arch/arm/mach-msm/ 810F: drivers/video/msm/ 811F: drivers/mmc/host/msm_sdcc.c 812F: drivers/mmc/host/msm_sdcc.h 813F: drivers/serial/msm_serial.h 814F: drivers/serial/msm_serial.c 815T: git git://codeaurora.org/quic/kernel/dwalker/linux-msm.git 816S: Maintained 817 818ARM/TOSA MACHINE SUPPORT 819M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> 820M: Dirk Opfer <dirk@opfer-online.de> 821S: Maintained 822 823ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT 824M: Marek Vasut <marek.vasut@gmail.com> 825L: linux-arm-kernel@lists.infradead.org 826W: http://hackndev.com 827S: Maintained 828F: arch/arm/mach-pxa/include/mach/palmtx.h 829F: arch/arm/mach-pxa/palmtx.c 830F: arch/arm/mach-pxa/include/mach/palmt5.h 831F: arch/arm/mach-pxa/palmt5.c 832F: arch/arm/mach-pxa/include/mach/palmld.h 833F: arch/arm/mach-pxa/palmld.c 834F: arch/arm/mach-pxa/include/mach/palmte2.h 835F: arch/arm/mach-pxa/palmte2.c 836F: arch/arm/mach-pxa/include/mach/palmtc.h 837F: arch/arm/mach-pxa/palmtc.c 838 839ARM/PALM TREO SUPPORT 840M: Tomas Cech <sleep_walker@suse.cz> 841L: linux-arm-kernel@lists.infradead.org 842W: http://hackndev.com 843S: Maintained 844F: arch/arm/mach-pxa/include/mach/palmtreo.h 845F: arch/arm/mach-pxa/palmtreo.c 846 847ARM/PALMZ72 SUPPORT 848M: Sergey Lapin <slapin@ossfans.org> 849L: linux-arm-kernel@lists.infradead.org 850W: http://hackndev.com 851S: Maintained 852F: arch/arm/mach-pxa/include/mach/palmz72.h 853F: arch/arm/mach-pxa/palmz72.c 854 855ARM/PLEB SUPPORT 856M: Peter Chubb <pleb@gelato.unsw.edu.au> 857W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB 858S: Maintained 859 860ARM/PT DIGITAL BOARD PORT 861M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de> 862L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 863W: http://www.arm.linux.org.uk/ 864S: Maintained 865 866ARM/RADISYS ENP2611 MACHINE SUPPORT 867M: Lennert Buytenhek <kernel@wantstofly.org> 868L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 869S: Maintained 870 871ARM/RISCPC ARCHITECTURE 872M: Russell King <linux@arm.linux.org.uk> 873L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 874W: http://www.arm.linux.org.uk/ 875S: Maintained 876F: arch/arm/common/time-acorn.c 877F: arch/arm/include/asm/hardware/entry-macro-iomd.S 878F: arch/arm/include/asm/hardware/ioc.h 879F: arch/arm/include/asm/hardware/iomd.h 880F: arch/arm/include/asm/hardware/memc.h 881F: arch/arm/mach-rpc/ 882F: drivers/net/arm/ether* 883F: drivers/scsi/arm/ 884 885ARM/SHARK MACHINE SUPPORT 886M: Alexander Schulz <alex@shark-linux.de> 887W: http://www.shark-linux.de/shark.html 888S: Maintained 889 890ARM/SAMSUNG ARM ARCHITECTURES 891M: Ben Dooks <ben-linux@fluff.org> 892L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 893W: http://www.fluff.org/ben/linux/ 894S: Maintained 895F: arch/arm/plat-s3c/ 896F: arch/arm/plat-s3c24xx/ 897 898ARM/S3C2410 ARM ARCHITECTURE 899M: Ben Dooks <ben-linux@fluff.org> 900L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 901W: http://www.fluff.org/ben/linux/ 902S: Maintained 903F: arch/arm/mach-s3c2410/ 904 905ARM/S3C2440 ARM ARCHITECTURE 906M: Ben Dooks <ben-linux@fluff.org> 907L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 908W: http://www.fluff.org/ben/linux/ 909S: Maintained 910F: arch/arm/mach-s3c2440/ 911 912ARM/S3C2442 ARM ARCHITECTURE 913M: Ben Dooks <ben-linux@fluff.org> 914L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 915W: http://www.fluff.org/ben/linux/ 916S: Maintained 917F: arch/arm/mach-s3c2442/ 918 919ARM/S3C2443 ARM ARCHITECTURE 920M: Ben Dooks <ben-linux@fluff.org> 921L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 922W: http://www.fluff.org/ben/linux/ 923S: Maintained 924F: arch/arm/mach-s3c2443/ 925 926ARM/S3C6400 ARM ARCHITECTURE 927M: Ben Dooks <ben-linux@fluff.org> 928L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 929W: http://www.fluff.org/ben/linux/ 930S: Maintained 931F: arch/arm/mach-s3c6400/ 932 933ARM/S3C6410 ARM ARCHITECTURE 934M: Ben Dooks <ben-linux@fluff.org> 935L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 936W: http://www.fluff.org/ben/linux/ 937S: Maintained 938F: arch/arm/mach-s3c6410/ 939 940ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT 941M: Lennert Buytenhek <kernel@wantstofly.org> 942L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 943S: Maintained 944 945ARM/THECUS N2100 MACHINE SUPPORT 946M: Lennert Buytenhek <kernel@wantstofly.org> 947L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 948S: Maintained 949 950ARM/NUVOTON W90X900 ARM ARCHITECTURE 951M: Wan ZongShun <mcuos.com@gmail.com> 952L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 953W: http://www.mcuos.com 954S: Maintained 955 956ARM/U8500 ARM ARCHITECTURE 957M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com> 958L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 959S: Maintained 960F: arch/arm/mach-ux500/ 961 962ARM/VFP SUPPORT 963M: Russell King <linux@arm.linux.org.uk> 964L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 965W: http://www.arm.linux.org.uk/ 966S: Maintained 967F: arch/arm/vfp/ 968 969ASC7621 HARDWARE MONITOR DRIVER 970M: George Joseph <george.joseph@fairview5.com> 971L: lm-sensors@lm-sensors.org 972S: Maintained 973F: Documentation/hwmon/asc7621 974F: drivers/hwmon/asc7621.c 975 976ASUS ACPI EXTRAS DRIVER 977M: Corentin Chary <corentincj@iksaif.net> 978M: Karol Kozimor <sziwan@users.sourceforge.net> 979L: acpi4asus-user@lists.sourceforge.net 980L: platform-driver-x86@vger.kernel.org 981W: http://acpi4asus.sf.net 982S: Maintained 983F: drivers/platform/x86/asus_acpi.c 984 985ASUS ASB100 HARDWARE MONITOR DRIVER 986M: "Mark M. Hoffman" <mhoffman@lightlink.com> 987L: lm-sensors@lm-sensors.org 988S: Maintained 989F: drivers/hwmon/asb100.c 990 991ASUS LAPTOP EXTRAS DRIVER 992M: Corentin Chary <corentincj@iksaif.net> 993L: acpi4asus-user@lists.sourceforge.net 994L: platform-driver-x86@vger.kernel.org 995W: http://acpi4asus.sf.net 996S: Maintained 997F: drivers/platform/x86/asus-laptop.c 998 999ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API 1000M: Dan Williams <dan.j.williams@intel.com> 1001W: http://sourceforge.net/projects/xscaleiop 1002S: Supported 1003F: Documentation/crypto/async-tx-api.txt 1004F: crypto/async_tx/ 1005F: drivers/dma/ 1006F: include/linux/dmaengine.h 1007F: include/linux/async_tx.h 1008 1009AT24 EEPROM DRIVER 1010M: Wolfram Sang <w.sang@pengutronix.de> 1011L: linux-i2c@vger.kernel.org 1012S: Maintained 1013F: drivers/misc/eeprom/at24.c 1014F: include/linux/i2c/at24.h 1015 1016ATA OVER ETHERNET (AOE) DRIVER 1017M: "Ed L. Cashin" <ecashin@coraid.com> 1018W: http://www.coraid.com/support/linux 1019S: Supported 1020F: Documentation/aoe/ 1021F: drivers/block/aoe/ 1022 1023ATHEROS ATH5K WIRELESS DRIVER 1024M: Jiri Slaby <jirislaby@gmail.com> 1025M: Nick Kossifidis <mickflemm@gmail.com> 1026M: "Luis R. Rodriguez" <lrodriguez@atheros.com> 1027M: Bob Copeland <me@bobcopeland.com> 1028L: linux-wireless@vger.kernel.org 1029L: ath5k-devel@lists.ath5k.org 1030W: http://wireless.kernel.org/en/users/Drivers/ath5k 1031S: Maintained 1032F: drivers/net/wireless/ath/ath5k/ 1033 1034ATHEROS ATH9K WIRELESS DRIVER 1035M: "Luis R. Rodriguez" <lrodriguez@atheros.com> 1036M: Jouni Malinen <jmalinen@atheros.com> 1037M: Sujith Manoharan <Sujith.Manoharan@atheros.com> 1038M: Vasanthakumar Thiagarajan <vasanth@atheros.com> 1039M: Senthil Balasubramanian <senthilkumar@atheros.com> 1040L: linux-wireless@vger.kernel.org 1041L: ath9k-devel@lists.ath9k.org 1042W: http://wireless.kernel.org/en/users/Drivers/ath9k 1043S: Supported 1044F: drivers/net/wireless/ath/ath9k/ 1045 1046ATHEROS AR9170 WIRELESS DRIVER 1047M: Christian Lamparter <chunkeey@web.de> 1048L: linux-wireless@vger.kernel.org 1049W: http://wireless.kernel.org/en/users/Drivers/ar9170 1050S: Maintained 1051F: drivers/net/wireless/ath/ar9170/ 1052 1053ATK0110 HWMON DRIVER 1054M: Luca Tettamanti <kronos.it@gmail.com> 1055L: lm-sensors@lm-sensors.org 1056S: Maintained 1057F: drivers/hwmon/asus_atk0110.c 1058 1059ATI_REMOTE2 DRIVER 1060M: Ville Syrjala <syrjala@sci.fi> 1061S: Maintained 1062F: drivers/input/misc/ati_remote2.c 1063 1064ATLX ETHERNET DRIVERS 1065M: Jay Cliburn <jcliburn@gmail.com> 1066M: Chris Snook <chris.snook@gmail.com> 1067M: Jie Yang <jie.yang@atheros.com> 1068L: atl1-devel@lists.sourceforge.net 1069W: http://sourceforge.net/projects/atl1 1070W: http://atl1.sourceforge.net 1071S: Maintained 1072F: drivers/net/atlx/ 1073 1074ATM 1075M: Chas Williams <chas@cmf.nrl.navy.mil> 1076L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers) 1077L: netdev@vger.kernel.org 1078W: http://linux-atm.sourceforge.net 1079S: Maintained 1080F: drivers/atm/ 1081F: include/linux/atm* 1082 1083ATMEL AT91 MCI DRIVER 1084M: Nicolas Ferre <nicolas.ferre@atmel.com> 1085L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 1086W: http://www.atmel.com/products/AT91/ 1087W: http://www.at91.com/ 1088S: Maintained 1089F: drivers/mmc/host/at91_mci.c 1090 1091ATMEL AT91 / AT32 MCI DRIVER 1092M: Nicolas Ferre <nicolas.ferre@atmel.com> 1093S: Maintained 1094F: drivers/mmc/host/atmel-mci.c 1095F: drivers/mmc/host/atmel-mci-regs.h 1096 1097ATMEL AT91 / AT32 SERIAL DRIVER 1098M: Haavard Skinnemoen <hskinnemoen@atmel.com> 1099S: Supported 1100F: drivers/serial/atmel_serial.c 1101 1102ATMEL LCDFB DRIVER 1103M: Nicolas Ferre <nicolas.ferre@atmel.com> 1104L: linux-fbdev@vger.kernel.org 1105S: Maintained 1106F: drivers/video/atmel_lcdfb.c 1107F: include/video/atmel_lcdc.h 1108 1109ATMEL MACB ETHERNET DRIVER 1110M: Haavard Skinnemoen <hskinnemoen@atmel.com> 1111S: Supported 1112F: drivers/net/macb.* 1113 1114ATMEL SPI DRIVER 1115M: Haavard Skinnemoen <hskinnemoen@atmel.com> 1116S: Supported 1117F: drivers/spi/atmel_spi.* 1118 1119ATMEL USBA UDC DRIVER 1120M: Haavard Skinnemoen <hskinnemoen@atmel.com> 1121L: kernel@avr32linux.org 1122W: http://avr32linux.org/twiki/bin/view/Main/AtmelUsbDeviceDriver 1123S: Supported 1124F: drivers/usb/gadget/atmel_usba_udc.* 1125 1126ATMEL WIRELESS DRIVER 1127M: Simon Kelley <simon@thekelleys.org.uk> 1128L: linux-wireless@vger.kernel.org 1129W: http://www.thekelleys.org.uk/atmel 1130W: http://atmelwlandriver.sourceforge.net/ 1131S: Maintained 1132F: drivers/net/wireless/atmel* 1133 1134AUDIT SUBSYSTEM 1135M: Al Viro <viro@zeniv.linux.org.uk> 1136M: Eric Paris <eparis@redhat.com> 1137L: linux-audit@redhat.com (subscribers-only) 1138W: http://people.redhat.com/sgrubb/audit/ 1139T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git 1140S: Maintained 1141F: include/linux/audit.h 1142F: kernel/audit* 1143 1144AUXILIARY DISPLAY DRIVERS 1145M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> 1146W: http://miguelojeda.es/auxdisplay.htm 1147W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm 1148S: Maintained 1149F: drivers/auxdisplay/ 1150F: include/linux/cfag12864b.h 1151 1152AVR32 ARCHITECTURE 1153M: Haavard Skinnemoen <hskinnemoen@atmel.com> 1154W: http://www.atmel.com/products/AVR32/ 1155W: http://avr32linux.org/ 1156W: http://avrfreaks.net/ 1157S: Supported 1158F: arch/avr32/ 1159 1160AVR32/AT32AP MACHINE SUPPORT 1161M: Haavard Skinnemoen <hskinnemoen@atmel.com> 1162S: Supported 1163F: arch/avr32/mach-at32ap/ 1164 1165AX.25 NETWORK LAYER 1166M: Ralf Baechle <ralf@linux-mips.org> 1167L: linux-hams@vger.kernel.org 1168W: http://www.linux-ax25.org/ 1169S: Maintained 1170F: include/linux/ax25.h 1171F: include/net/ax25.h 1172F: net/ax25/ 1173 1174B43 WIRELESS DRIVER 1175M: Stefano Brivio <stefano.brivio@polimi.it> 1176L: linux-wireless@vger.kernel.org 1177W: http://linuxwireless.org/en/users/Drivers/b43 1178S: Maintained 1179F: drivers/net/wireless/b43/ 1180 1181B43LEGACY WIRELESS DRIVER 1182M: Larry Finger <Larry.Finger@lwfinger.net> 1183M: Stefano Brivio <stefano.brivio@polimi.it> 1184L: linux-wireless@vger.kernel.org 1185W: http://linuxwireless.org/en/users/Drivers/b43 1186S: Maintained 1187F: drivers/net/wireless/b43legacy/ 1188 1189BACKLIGHT CLASS/SUBSYSTEM 1190M: Richard Purdie <rpurdie@rpsys.net> 1191S: Maintained 1192F: drivers/video/backlight/ 1193F: include/linux/backlight.h 1194 1195BAYCOM/HDLCDRV DRIVERS FOR AX.25 1196M: Thomas Sailer <t.sailer@alumni.ethz.ch> 1197L: linux-hams@vger.kernel.org 1198W: http://www.baycom.org/~tom/ham/ham.html 1199S: Maintained 1200F: drivers/net/hamradio/baycom* 1201 1202BEFS FILE SYSTEM 1203M: "Sergey S. Kostyliov" <rathamahata@php4.ru> 1204S: Maintained 1205F: Documentation/filesystems/befs.txt 1206F: fs/befs/ 1207 1208BFS FILE SYSTEM 1209M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk> 1210S: Maintained 1211F: Documentation/filesystems/bfs.txt 1212F: fs/bfs/ 1213F: include/linux/bfs_fs.h 1214 1215BLACKFIN ARCHITECTURE 1216M: Mike Frysinger <vapier@gentoo.org> 1217L: uclinux-dist-devel@blackfin.uclinux.org 1218W: http://blackfin.uclinux.org 1219S: Supported 1220F: arch/blackfin/ 1221 1222BLACKFIN EMAC DRIVER 1223M: Michael Hennerich <michael.hennerich@analog.com> 1224L: uclinux-dist-devel@blackfin.uclinux.org 1225W: http://blackfin.uclinux.org 1226S: Supported 1227F: drivers/net/bfin_mac.* 1228 1229BLACKFIN RTC DRIVER 1230M: Mike Frysinger <vapier.adi@gmail.com> 1231L: uclinux-dist-devel@blackfin.uclinux.org 1232W: http://blackfin.uclinux.org 1233S: Supported 1234F: drivers/rtc/rtc-bfin.c 1235 1236BLACKFIN SERIAL DRIVER 1237M: Sonic Zhang <sonic.zhang@analog.com> 1238L: uclinux-dist-devel@blackfin.uclinux.org 1239W: http://blackfin.uclinux.org 1240S: Supported 1241F: drivers/serial/bfin_5xx.c 1242 1243BLACKFIN WATCHDOG DRIVER 1244M: Mike Frysinger <vapier.adi@gmail.com> 1245L: uclinux-dist-devel@blackfin.uclinux.org 1246W: http://blackfin.uclinux.org 1247S: Supported 1248F: drivers/watchdog/bfin_wdt.c 1249 1250BLACKFIN I2C TWI DRIVER 1251M: Sonic Zhang <sonic.zhang@analog.com> 1252L: uclinux-dist-devel@blackfin.uclinux.org 1253W: http://blackfin.uclinux.org/ 1254S: Supported 1255F: drivers/i2c/busses/i2c-bfin-twi.c 1256 1257BLOCK LAYER 1258M: Jens Axboe <axboe@kernel.dk> 1259T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git 1260S: Maintained 1261F: block/ 1262 1263BLOCK2MTD DRIVER 1264M: Joern Engel <joern@lazybastard.org> 1265L: linux-mtd@lists.infradead.org 1266S: Maintained 1267F: drivers/mtd/devices/block2mtd.c 1268 1269BLUETOOTH DRIVERS 1270M: Marcel Holtmann <marcel@holtmann.org> 1271L: linux-bluetooth@vger.kernel.org 1272W: http://www.bluez.org/ 1273S: Maintained 1274F: drivers/bluetooth/ 1275 1276BLUETOOTH SUBSYSTEM 1277M: Marcel Holtmann <marcel@holtmann.org> 1278L: linux-bluetooth@vger.kernel.org 1279W: http://www.bluez.org/ 1280T: git git://git.kernel.org/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git 1281S: Maintained 1282F: net/bluetooth/ 1283F: include/net/bluetooth/ 1284 1285BONDING DRIVER 1286M: Jay Vosburgh <fubar@us.ibm.com> 1287L: bonding-devel@lists.sourceforge.net 1288W: http://sourceforge.net/projects/bonding/ 1289S: Supported 1290F: drivers/net/bonding/ 1291F: include/linux/if_bonding.h 1292 1293BROADCOM B44 10/100 ETHERNET DRIVER 1294M: Gary Zambrano <zambrano@broadcom.com> 1295L: netdev@vger.kernel.org 1296S: Supported 1297F: drivers/net/b44.* 1298 1299BROADCOM BNX2 GIGABIT ETHERNET DRIVER 1300M: Michael Chan <mchan@broadcom.com> 1301L: netdev@vger.kernel.org 1302S: Supported 1303F: drivers/net/bnx2.* 1304F: drivers/net/bnx2_* 1305 1306BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER 1307M: Eilon Greenstein <eilong@broadcom.com> 1308L: netdev@vger.kernel.org 1309S: Supported 1310F: drivers/net/bnx2x* 1311 1312BROADCOM TG3 GIGABIT ETHERNET DRIVER 1313M: Matt Carlson <mcarlson@broadcom.com> 1314M: Michael Chan <mchan@broadcom.com> 1315L: netdev@vger.kernel.org 1316S: Supported 1317F: drivers/net/tg3.* 1318 1319BROCADE BFA FC SCSI DRIVER 1320M: Jing Huang <huangj@brocade.com> 1321L: linux-scsi@vger.kernel.org 1322S: Supported 1323F: drivers/scsi/bfa/ 1324 1325BSG (block layer generic sg v4 driver) 1326M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> 1327L: linux-scsi@vger.kernel.org 1328S: Supported 1329F: block/bsg.c 1330F: include/linux/bsg.h 1331 1332BT8XXGPIO DRIVER 1333M: Michael Buesch <mb@bu3sch.de> 1334W: http://bu3sch.de/btgpio.php 1335S: Maintained 1336F: drivers/gpio/bt8xxgpio.c 1337 1338BTRFS FILE SYSTEM 1339M: Chris Mason <chris.mason@oracle.com> 1340L: linux-btrfs@vger.kernel.org 1341W: http://btrfs.wiki.kernel.org/ 1342T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-unstable.git 1343S: Maintained 1344F: Documentation/filesystems/btrfs.txt 1345F: fs/btrfs/ 1346 1347BTTV VIDEO4LINUX DRIVER 1348M: Mauro Carvalho Chehab <mchehab@infradead.org> 1349L: linux-media@vger.kernel.org 1350W: http://linuxtv.org 1351T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git 1352S: Maintained 1353F: Documentation/video4linux/bttv/ 1354F: drivers/media/video/bt8xx/bttv* 1355 1356CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS 1357M: David Howells <dhowells@redhat.com> 1358L: linux-cachefs@redhat.com 1359S: Supported 1360F: Documentation/filesystems/caching/cachefiles.txt 1361F: fs/cachefiles/ 1362 1363CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER 1364M: Jonathan Corbet <corbet@lwn.net> 1365L: linux-media@vger.kernel.org 1366T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git 1367S: Maintained 1368F: Documentation/video4linux/cafe_ccic 1369F: drivers/media/video/cafe_ccic* 1370 1371CALGARY x86-64 IOMMU 1372M: Muli Ben-Yehuda <muli@il.ibm.com> 1373M: "Jon D. Mason" <jdmason@kudzu.us> 1374L: discuss@x86-64.org 1375S: Maintained 1376F: arch/x86/kernel/pci-calgary_64.c 1377F: arch/x86/kernel/tce_64.c 1378F: arch/x86/include/asm/calgary.h 1379F: arch/x86/include/asm/tce.h 1380 1381CAN NETWORK LAYER 1382M: Urs Thuermann <urs.thuermann@volkswagen.de> 1383M: Oliver Hartkopp <oliver.hartkopp@volkswagen.de> 1384L: socketcan-core@lists.berlios.de (subscribers-only) 1385W: http://developer.berlios.de/projects/socketcan/ 1386S: Maintained 1387F: drivers/net/can/ 1388F: include/linux/can/ 1389F: include/linux/can.h 1390 1391CAN NETWORK DRIVERS 1392M: Wolfgang Grandegger <wg@grandegger.com> 1393L: socketcan-core@lists.berlios.de (subscribers-only) 1394W: http://developer.berlios.de/projects/socketcan/ 1395S: Maintained 1396 1397CELL BROADBAND ENGINE ARCHITECTURE 1398M: Arnd Bergmann <arnd@arndb.de> 1399L: linuxppc-dev@ozlabs.org 1400L: cbe-oss-dev@ozlabs.org 1401W: http://www.ibm.com/developerworks/power/cell/ 1402S: Supported 1403F: arch/powerpc/include/asm/cell*.h 1404F: arch/powerpc/include/asm/spu*.h 1405F: arch/powerpc/oprofile/*cell* 1406F: arch/powerpc/platforms/cell/ 1407 1408CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM: 1409M: David Vrabel <david.vrabel@csr.com> 1410L: linux-usb@vger.kernel.org 1411S: Supported 1412F: Documentation/usb/WUSB-Design-overview.txt 1413F: Documentation/usb/wusb-cbaf 1414F: drivers/usb/host/hwa-hc.c 1415F: drivers/usb/host/whci/ 1416F: drivers/usb/wusbcore/ 1417F: include/linux/usb/wusb* 1418 1419CFAG12864B LCD DRIVER 1420M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> 1421W: http://miguelojeda.es/auxdisplay.htm 1422W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm 1423S: Maintained 1424F: drivers/auxdisplay/cfag12864b.c 1425F: include/linux/cfag12864b.h 1426 1427CFAG12864BFB LCD FRAMEBUFFER DRIVER 1428M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> 1429W: http://miguelojeda.es/auxdisplay.htm 1430W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm 1431S: Maintained 1432F: drivers/auxdisplay/cfag12864bfb.c 1433F: include/linux/cfag12864b.h 1434 1435CFG80211 and NL80211 1436M: Johannes Berg <johannes@sipsolutions.net> 1437L: linux-wireless@vger.kernel.org 1438S: Maintained 1439F: include/linux/nl80211.h 1440F: include/net/cfg80211.h 1441F: net/wireless/* 1442X: net/wireless/wext* 1443 1444CHECKPATCH 1445M: Andy Whitcroft <apw@canonical.com> 1446S: Supported 1447F: scripts/checkpatch.pl 1448 1449CISCO 10G ETHERNET DRIVER 1450M: Scott Feldman <scofeldm@cisco.com> 1451M: Joe Eykholt <jeykholt@cisco.com> 1452S: Supported 1453F: drivers/net/enic/ 1454 1455CIRRUS LOGIC EP93XX ETHERNET DRIVER 1456M: Lennert Buytenhek <kernel@wantstofly.org> 1457L: netdev@vger.kernel.org 1458S: Maintained 1459F: drivers/net/arm/ep93xx_eth.c 1460 1461CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER 1462M: Lennert Buytenhek <kernel@wantstofly.org> 1463L: linux-usb@vger.kernel.org 1464S: Maintained 1465F: drivers/usb/host/ohci-ep93xx.c 1466 1467CIRRUS LOGIC CS4270 SOUND DRIVER 1468M: Timur Tabi <timur@freescale.com> 1469L: alsa-devel@alsa-project.org (moderated for non-subscribers) 1470S: Supported 1471F: sound/soc/codecs/cs4270* 1472 1473CLK API 1474M: Russell King <linux@arm.linux.org.uk> 1475F: include/linux/clk.h 1476 1477CISCO FCOE HBA DRIVER 1478M: Abhijeet Joglekar <abjoglek@cisco.com> 1479M: Joe Eykholt <jeykholt@cisco.com> 1480L: linux-scsi@vger.kernel.org 1481S: Supported 1482F: drivers/scsi/fnic/ 1483 1484CMPC ACPI DRIVER 1485M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com> 1486M: Daniel Oliveira Nascimento <don@syst.com.br> 1487L: platform-driver-x86@vger.kernel.org 1488S: Supported 1489F: drivers/platform/x86/classmate-laptop.c 1490 1491CODA FILE SYSTEM 1492M: Jan Harkes <jaharkes@cs.cmu.edu> 1493M: coda@cs.cmu.edu 1494L: codalist@coda.cs.cmu.edu 1495W: http://www.coda.cs.cmu.edu/ 1496S: Maintained 1497F: Documentation/filesystems/coda.txt 1498F: fs/coda/ 1499F: include/linux/coda*.h 1500 1501COMMON INTERNET FILE SYSTEM (CIFS) 1502M: Steve French <sfrench@samba.org> 1503L: linux-cifs-client@lists.samba.org (moderated for non-subscribers) 1504L: samba-technical@lists.samba.org (moderated for non-subscribers) 1505W: http://linux-cifs.samba.org/ 1506T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git 1507S: Supported 1508F: Documentation/filesystems/cifs.txt 1509F: fs/cifs/ 1510 1511COMPACTPCI HOTPLUG CORE 1512M: Scott Murray <scott@spiteful.org> 1513L: linux-pci@vger.kernel.org 1514S: Maintained 1515F: drivers/pci/hotplug/cpci_hotplug* 1516 1517COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER 1518M: Scott Murray <scott@spiteful.org> 1519L: linux-pci@vger.kernel.org 1520S: Maintained 1521F: drivers/pci/hotplug/cpcihp_zt5550.* 1522 1523COMPACTPCI HOTPLUG GENERIC DRIVER 1524M: Scott Murray <scott@spiteful.org> 1525L: linux-pci@vger.kernel.org 1526S: Maintained 1527F: drivers/pci/hotplug/cpcihp_generic.c 1528 1529COMPAL LAPTOP SUPPORT 1530M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com> 1531L: platform-driver-x86@vger.kernel.org 1532S: Maintained 1533F: drivers/platform/x86/compal-laptop.c 1534 1535COMPUTONE INTELLIPORT MULTIPORT CARD 1536M: "Michael H. Warfield" <mhw@wittsend.com> 1537W: http://www.wittsend.com/computone.html 1538S: Maintained 1539F: Documentation/serial/computone.txt 1540F: drivers/char/ip2/ 1541 1542CONEXANT ACCESSRUNNER USB DRIVER 1543M: Simon Arlott <cxacru@fire.lp0.eu> 1544L: accessrunner-general@lists.sourceforge.net 1545W: http://accessrunner.sourceforge.net/ 1546S: Maintained 1547F: drivers/usb/atm/cxacru.c 1548 1549CONFIGFS 1550M: Joel Becker <joel.becker@oracle.com> 1551S: Supported 1552F: fs/configfs/ 1553F: include/linux/configfs.h 1554 1555CONNECTOR 1556M: Evgeniy Polyakov <zbr@ioremap.net> 1557L: netdev@vger.kernel.org 1558S: Maintained 1559F: drivers/connector/ 1560 1561CONTROL GROUPS (CGROUPS) 1562M: Paul Menage <menage@google.com> 1563M: Li Zefan <lizf@cn.fujitsu.com> 1564L: containers@lists.linux-foundation.org 1565S: Maintained 1566F: include/linux/cgroup* 1567F: kernel/cgroup* 1568F: mm/*cgroup* 1569 1570CORETEMP HARDWARE MONITORING DRIVER 1571M: Rudolf Marek <r.marek@assembler.cz> 1572M: Huaxu Wan <huaxu.wan@intel.com> 1573L: lm-sensors@lm-sensors.org 1574S: Maintained 1575F: Documentation/hwmon/coretemp 1576F: drivers/hwmon/coretemp.c 1577 1578COSA/SRP SYNC SERIAL DRIVER 1579M: Jan "Yenya" Kasprzak <kas@fi.muni.cz> 1580W: http://www.fi.muni.cz/~kas/cosa/ 1581S: Maintained 1582F: drivers/net/wan/cosa* 1583 1584CPMAC ETHERNET DRIVER 1585M: Florian Fainelli <florian@openwrt.org> 1586L: netdev@vger.kernel.org 1587S: Maintained 1588F: drivers/net/cpmac.c 1589 1590CPU FREQUENCY DRIVERS 1591M: Dave Jones <davej@redhat.com> 1592L: cpufreq@vger.kernel.org 1593W: http://www.codemonkey.org.uk/projects/cpufreq/ 1594T: git git://git.kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git 1595S: Maintained 1596F: arch/x86/kernel/cpu/cpufreq/ 1597F: drivers/cpufreq/ 1598F: include/linux/cpufreq.h 1599 1600CPUID/MSR DRIVER 1601M: "H. Peter Anvin" <hpa@zytor.com> 1602S: Maintained 1603F: arch/x86/kernel/cpuid.c 1604F: arch/x86/kernel/msr.c 1605 1606CPUSETS 1607M: Paul Menage <menage@google.com> 1608W: http://www.bullopensource.org/cpuset/ 1609W: http://oss.sgi.com/projects/cpusets/ 1610S: Supported 1611F: Documentation/cgroups/cpusets.txt 1612F: include/linux/cpuset.h 1613F: kernel/cpuset.c 1614 1615CRAMFS FILESYSTEM 1616W: http://sourceforge.net/projects/cramfs/ 1617S: Orphan 1618F: Documentation/filesystems/cramfs.txt 1619F: fs/cramfs/ 1620 1621CRIS PORT 1622M: Mikael Starvik <starvik@axis.com> 1623M: Jesper Nilsson <jesper.nilsson@axis.com> 1624L: linux-cris-kernel@axis.com 1625W: http://developer.axis.com 1626S: Maintained 1627F: arch/cris/ 1628 1629CRYPTO API 1630M: Herbert Xu <herbert@gondor.apana.org.au> 1631M: "David S. Miller" <davem@davemloft.net> 1632L: linux-crypto@vger.kernel.org 1633T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git 1634S: Maintained 1635F: Documentation/crypto/ 1636F: arch/*/crypto/ 1637F: crypto/ 1638F: drivers/crypto/ 1639F: include/crypto/ 1640 1641CRYPTOGRAPHIC RANDOM NUMBER GENERATOR 1642M: Neil Horman <nhorman@tuxdriver.com> 1643L: linux-crypto@vger.kernel.org 1644S: Maintained 1645 1646CS5535 Audio ALSA driver 1647M: Jaya Kumar <jayakumar.alsa@gmail.com> 1648S: Maintained 1649F: sound/pci/cs5535audio/ 1650 1651CX18 VIDEO4LINUX DRIVER 1652M: Andy Walls <awalls@radix.net> 1653L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers) 1654L: linux-media@vger.kernel.org 1655T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git 1656W: http://linuxtv.org 1657W: http://www.ivtvdriver.org/index.php/Cx18 1658S: Maintained 1659F: Documentation/video4linux/cx18.txt 1660F: drivers/media/video/cx18/ 1661 1662CXGB3 ETHERNET DRIVER (CXGB3) 1663M: Divy Le Ray <divy@chelsio.com> 1664L: netdev@vger.kernel.org 1665W: http://www.chelsio.com 1666S: Supported 1667F: drivers/net/cxgb3/ 1668 1669CXGB3 IWARP RNIC DRIVER (IW_CXGB3) 1670M: Steve Wise <swise@chelsio.com> 1671L: linux-rdma@vger.kernel.org 1672W: http://www.openfabrics.org 1673S: Supported 1674F: drivers/infiniband/hw/cxgb3/ 1675 1676CYBERPRO FB DRIVER 1677M: Russell King <linux@arm.linux.org.uk> 1678L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 1679W: http://www.arm.linux.org.uk/ 1680S: Maintained 1681F: drivers/video/cyber2000fb.* 1682 1683CYCLADES 2X SYNC CARD DRIVER 1684M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> 1685W: http://oops.ghostprotocols.net:81/blog 1686S: Maintained 1687F: drivers/net/wan/cycx* 1688 1689CYCLADES ASYNC MUX DRIVER 1690W: http://www.cyclades.com/ 1691S: Orphan 1692F: drivers/char/cyclades.c 1693F: include/linux/cyclades.h 1694 1695CYCLADES PC300 DRIVER 1696W: http://www.cyclades.com/ 1697S: Orphan 1698F: drivers/net/wan/pc300* 1699 1700DAMA SLAVE for AX.25 1701M: Joerg Reuter <jreuter@yaina.de> 1702W: http://yaina.de/jreuter/ 1703W: http://www.qsl.net/dl1bke/ 1704L: linux-hams@vger.kernel.org 1705S: Maintained 1706F: net/ax25/af_ax25.c 1707F: net/ax25/ax25_dev.c 1708F: net/ax25/ax25_ds_* 1709F: net/ax25/ax25_in.c 1710F: net/ax25/ax25_out.c 1711F: net/ax25/ax25_timer.c 1712F: net/ax25/sysctl_net_ax25.c 1713 1714DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER 1715M: Tobias Ringstrom <tori@unhappy.mine.nu> 1716L: netdev@vger.kernel.org 1717S: Maintained 1718F: Documentation/networking/dmfe.txt 1719F: drivers/net/tulip/dmfe.c 1720 1721DC390/AM53C974 SCSI driver 1722M: Kurt Garloff <garloff@suse.de> 1723W: http://www.garloff.de/kurt/linux/dc390/ 1724M: Guennadi Liakhovetski <g.liakhovetski@gmx.de> 1725S: Maintained 1726F: drivers/scsi/tmscsim.* 1727 1728DC395x SCSI driver 1729M: Oliver Neukum <oliver@neukum.name> 1730M: Ali Akcaagac <aliakc@web.de> 1731M: Jamie Lenehan <lenehan@twibble.org> 1732W: http://twibble.org/dist/dc395x/ 1733L: dc395x@twibble.org 1734L: http://lists.twibble.org/mailman/listinfo/dc395x/ 1735S: Maintained 1736F: Documentation/scsi/dc395x.txt 1737F: drivers/scsi/dc395x.* 1738 1739DCCP PROTOCOL 1740M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> 1741L: dccp@vger.kernel.org 1742W: http://linux-net.osdl.org/index.php/DCCP 1743S: Maintained 1744F: include/linux/dccp.h 1745F: include/linux/tfrc.h 1746F: net/dccp/ 1747 1748DECnet NETWORK LAYER 1749W: http://linux-decnet.sourceforge.net 1750L: linux-decnet-user@lists.sourceforge.net 1751S: Orphan 1752F: Documentation/networking/decnet.txt 1753F: net/decnet/ 1754 1755DEFXX FDDI NETWORK DRIVER 1756M: "Maciej W. Rozycki" <macro@linux-mips.org> 1757S: Maintained 1758F: drivers/net/defxx.* 1759 1760DELL LAPTOP DRIVER 1761M: Matthew Garrett <mjg59@srcf.ucam.org> 1762L: platform-driver-x86@vger.kernel.org 1763S: Maintained 1764F: drivers/platform/x86/dell-laptop.c 1765 1766DELL LAPTOP SMM DRIVER 1767M: Massimo Dal Zotto <dz@debian.org> 1768W: http://www.debian.org/~dz/i8k/ 1769S: Maintained 1770F: drivers/char/i8k.c 1771F: include/linux/i8k.h 1772 1773DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas) 1774M: Doug Warzecha <Douglas_Warzecha@dell.com> 1775S: Maintained 1776F: Documentation/dcdbas.txt 1777F: drivers/firmware/dcdbas.* 1778 1779DELL WMI EXTRAS DRIVER 1780M: Matthew Garrett <mjg59@srcf.ucam.org> 1781S: Maintained 1782 1783DEVICE NUMBER REGISTRY 1784M: Torben Mathiasen <device@lanana.org> 1785W: http://lanana.org/docs/device-list/index.html 1786S: Maintained 1787 1788DEVICE-MAPPER (LVM) 1789P: Alasdair Kergon 1790L: dm-devel@redhat.com 1791W: http://sources.redhat.com/dm 1792S: Maintained 1793F: Documentation/device-mapper/ 1794F: drivers/md/dm* 1795F: include/linux/device-mapper.h 1796F: include/linux/dm-*.h 1797 1798DIGI INTL. EPCA DRIVER 1799M: "Digi International, Inc" <Eng.Linux@digi.com> 1800L: Eng.Linux@digi.com 1801W: http://www.digi.com 1802S: Orphan 1803F: Documentation/serial/digiepca.txt 1804F: drivers/char/epca* 1805F: drivers/char/digi* 1806 1807DIRECTORY NOTIFICATION (DNOTIFY) 1808M: Eric Paris <eparis@parisplace.org> 1809S: Maintained 1810F: Documentation/filesystems/dnotify.txt 1811F: fs/notify/dnotify/ 1812F: include/linux/dnotify.h 1813 1814DISK GEOMETRY AND PARTITION HANDLING 1815M: Andries Brouwer <aeb@cwi.nl> 1816W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html 1817W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html 1818W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html 1819S: Maintained 1820 1821DISKQUOTA 1822M: Jan Kara <jack@suse.cz> 1823S: Maintained 1824F: Documentation/filesystems/quota.txt 1825F: fs/quota/ 1826F: include/linux/quota*.h 1827 1828DISTRIBUTED LOCK MANAGER (DLM) 1829M: Christine Caulfield <ccaulfie@redhat.com> 1830M: David Teigland <teigland@redhat.com> 1831L: cluster-devel@redhat.com 1832W: http://sources.redhat.com/cluster/ 1833T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git 1834S: Supported 1835F: fs/dlm/ 1836 1837DMA GENERIC OFFLOAD ENGINE SUBSYSTEM 1838M: Dan Williams <dan.j.williams@intel.com> 1839S: Supported 1840F: drivers/dma/ 1841F: include/linux/dma* 1842 1843DME1737 HARDWARE MONITOR DRIVER 1844M: Juerg Haefliger <juergh@gmail.com> 1845L: lm-sensors@lm-sensors.org 1846S: Maintained 1847F: Documentation/hwmon/dme1737 1848F: drivers/hwmon/dme1737.c 1849 1850DOCBOOK FOR DOCUMENTATION 1851M: Randy Dunlap <rdunlap@xenotime.net> 1852S: Maintained 1853 1854DOCKING STATION DRIVER 1855M: Shaohua Li <shaohua.li@intel.com> 1856L: linux-acpi@vger.kernel.org 1857S: Supported 1858F: drivers/acpi/dock.c 1859 1860DOCUMENTATION 1861M: Randy Dunlap <rdunlap@xenotime.net> 1862L: linux-doc@vger.kernel.org 1863S: Maintained 1864F: Documentation/ 1865 1866DOUBLETALK DRIVER 1867M: "James R. Van Zandt" <jrv@vanzandt.mv.com> 1868L: blinux-list@redhat.com 1869S: Maintained 1870F: drivers/char/dtlk.c 1871F: include/linux/dtlk.h 1872 1873DPT_I2O SCSI RAID DRIVER 1874M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> 1875L: linux-scsi@vger.kernel.org 1876W: http://www.adaptec.com/ 1877S: Maintained 1878F: drivers/scsi/dpt* 1879F: drivers/scsi/dpt/ 1880 1881DRBD DRIVER 1882P: Philipp Reisner 1883P: Lars Ellenberg 1884M: drbd-dev@lists.linbit.com 1885L: drbd-user@lists.linbit.com 1886W: http://www.drbd.org 1887T: git git://git.drbd.org/linux-2.6-drbd.git drbd 1888T: git git://git.drbd.org/drbd-8.3.git 1889S: Supported 1890F: drivers/block/drbd/ 1891F: lib/lru_cache.c 1892F: Documentation/blockdev/drbd/ 1893 1894DRIVER CORE, KOBJECTS, AND SYSFS 1895M: Greg Kroah-Hartman <gregkh@suse.de> 1896T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/ 1897S: Supported 1898F: Documentation/kobject.txt 1899F: drivers/base/ 1900F: fs/sysfs/ 1901F: include/linux/kobj* 1902F: lib/kobj* 1903 1904DRM DRIVERS 1905M: David Airlie <airlied@linux.ie> 1906L: dri-devel@lists.sourceforge.net 1907T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git 1908S: Maintained 1909F: drivers/gpu/drm/ 1910 1911DSCC4 DRIVER 1912M: Francois Romieu <romieu@fr.zoreil.com> 1913L: netdev@vger.kernel.org 1914S: Maintained 1915F: drivers/net/wan/dscc4.c 1916 1917DZ DECSTATION DZ11 SERIAL DRIVER 1918M: "Maciej W. Rozycki" <macro@linux-mips.org> 1919S: Maintained 1920F: drivers/serial/dz.* 1921 1922EATA-DMA SCSI DRIVER 1923M: Michael Neuffer <mike@i-Connect.Net> 1924L: linux-eata@i-connect.net 1925L: linux-scsi@vger.kernel.org 1926S: Maintained 1927F: drivers/scsi/eata* 1928 1929EATA ISA/EISA/PCI SCSI DRIVER 1930M: Dario Ballabio <ballabio_dario@emc.com> 1931L: linux-scsi@vger.kernel.org 1932S: Maintained 1933F: drivers/scsi/eata.c 1934 1935EATA-PIO SCSI DRIVER 1936M: Michael Neuffer <mike@i-Connect.Net> 1937L: linux-eata@i-connect.net 1938L: linux-scsi@vger.kernel.org 1939S: Maintained 1940F: drivers/scsi/eata_pio.* 1941 1942EBTABLES 1943M: Bart De Schuymer <bart.de.schuymer@pandora.be> 1944L: ebtables-user@lists.sourceforge.net 1945L: ebtables-devel@lists.sourceforge.net 1946W: http://ebtables.sourceforge.net/ 1947S: Maintained 1948F: include/linux/netfilter_bridge/ebt_*.h 1949F: net/bridge/netfilter/ebt*.c 1950 1951ECRYPT FILE SYSTEM 1952M: Tyler Hicks <tyhicks@linux.vnet.ibm.com> 1953M: Dustin Kirkland <kirkland@canonical.com> 1954L: ecryptfs-devel@lists.launchpad.net 1955W: https://launchpad.net/ecryptfs 1956S: Supported 1957F: Documentation/filesystems/ecryptfs.txt 1958F: fs/ecryptfs/ 1959 1960EDAC-CORE 1961M: Doug Thompson <dougthompson@xmission.com> 1962L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) 1963W: bluesmoke.sourceforge.net 1964S: Supported 1965F: Documentation/edac.txt 1966F: drivers/edac/edac_* 1967F: include/linux/edac.h 1968 1969EDAC-AMD64 1970M: Doug Thompson <dougthompson@xmission.com> 1971M: Borislav Petkov <borislav.petkov@amd.com> 1972L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) 1973W: bluesmoke.sourceforge.net 1974S: Supported 1975F: drivers/edac/amd64_edac* 1976 1977EDAC-E752X 1978M: Mark Gross <mark.gross@intel.com> 1979M: Doug Thompson <dougthompson@xmission.com> 1980L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) 1981W: bluesmoke.sourceforge.net 1982S: Maintained 1983F: drivers/edac/e752x_edac.c 1984 1985EDAC-E7XXX 1986M: Doug Thompson <dougthompson@xmission.com> 1987L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) 1988W: bluesmoke.sourceforge.net 1989S: Maintained 1990F: drivers/edac/e7xxx_edac.c 1991 1992EDAC-I82443BXGX 1993M: Tim Small <tim@buttersideup.com> 1994L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) 1995W: bluesmoke.sourceforge.net 1996S: Maintained 1997F: drivers/edac/i82443bxgx_edac.c 1998 1999EDAC-I3000 2000M: Jason Uhlenkott <juhlenko@akamai.com> 2001L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) 2002W: bluesmoke.sourceforge.net 2003S: Maintained 2004F: drivers/edac/i3000_edac.c 2005 2006EDAC-I5000 2007M: Doug Thompson <dougthompson@xmission.com> 2008L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) 2009W: bluesmoke.sourceforge.net 2010S: Maintained 2011F: drivers/edac/i5000_edac.c 2012 2013EDAC-I5400 2014M: Mauro Carvalho Chehab <mchehab@redhat.com> 2015L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) 2016W: bluesmoke.sourceforge.net 2017S: Maintained 2018F: drivers/edac/i5400_edac.c 2019 2020EDAC-I82975X 2021M: Ranganathan Desikan <ravi@jetztechnologies.com> 2022M: "Arvind R." <arvind@jetztechnologies.com> 2023L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) 2024W: bluesmoke.sourceforge.net 2025S: Maintained 2026F: drivers/edac/i82975x_edac.c 2027 2028EDAC-PASEMI 2029M: Egor Martovetsky <egor@pasemi.com> 2030L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) 2031W: bluesmoke.sourceforge.net 2032S: Maintained 2033F: drivers/edac/pasemi_edac.c 2034 2035EDAC-R82600 2036M: Tim Small <tim@buttersideup.com> 2037L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) 2038W: bluesmoke.sourceforge.net 2039S: Maintained 2040F: drivers/edac/r82600_edac.c 2041 2042EEEPC LAPTOP EXTRAS DRIVER 2043M: Corentin Chary <corentincj@iksaif.net> 2044L: acpi4asus-user@lists.sourceforge.net 2045L: platform-driver-x86@vger.kernel.org 2046W: http://acpi4asus.sf.net 2047S: Maintained 2048F: drivers/platform/x86/eeepc-laptop.c 2049 2050EFS FILESYSTEM 2051W: http://aeschi.ch.eu.org/efs/ 2052S: Orphan 2053F: fs/efs/ 2054 2055EHCA (IBM GX bus InfiniBand adapter) DRIVER 2056M: Hoang-Nam Nguyen <hnguyen@de.ibm.com> 2057M: Christoph Raisch <raisch@de.ibm.com> 2058L: linux-rdma@vger.kernel.org 2059S: Supported 2060F: drivers/infiniband/hw/ehca/ 2061 2062EMBEDDED LINUX 2063M: Paul Gortmaker <paul.gortmaker@windriver.com> 2064M: Matt Mackall <mpm@selenic.com> 2065M: David Woodhouse <dwmw2@infradead.org> 2066L: linux-embedded@vger.kernel.org 2067S: Maintained 2068 2069EMULEX LPFC FC SCSI DRIVER 2070M: James Smart <james.smart@emulex.com> 2071L: linux-scsi@vger.kernel.org 2072W: http://sourceforge.net/projects/lpfcxxxx 2073S: Supported 2074F: drivers/scsi/lpfc/ 2075 2076ENE CB710 FLASH CARD READER DRIVER 2077M: Michał Mirosław <mirq-linux@rere.qmqm.pl> 2078S: Maintained 2079F: drivers/misc/cb710/ 2080F: drivers/mmc/host/cb710-mmc.* 2081F: include/linux/cb710.h 2082 2083EPSON 1355 FRAMEBUFFER DRIVER 2084M: Christopher Hoover <ch@murgatroid.com> 2085M: Christopher Hoover <ch@hpl.hp.com> 2086S: Maintained 2087F: drivers/video/epson1355fb.c 2088 2089EPSON S1D13XXX FRAMEBUFFER DRIVER 2090M: Kristoffer Ericson <kristoffer.ericson@gmail.com> 2091S: Maintained 2092T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git 2093F: drivers/video/s1d13xxxfb.c 2094F: include/video/s1d13xxxfb.h 2095 2096ETHEREXPRESS-16 NETWORK DRIVER 2097M: Philip Blundell <philb@gnu.org> 2098L: netdev@vger.kernel.org 2099S: Maintained 2100F: drivers/net/eexpress.* 2101 2102ETHERNET BRIDGE 2103M: Stephen Hemminger <shemminger@linux-foundation.org> 2104L: bridge@lists.linux-foundation.org 2105W: http://www.linux-foundation.org/en/Net:Bridge 2106S: Maintained 2107F: include/linux/netfilter_bridge/ 2108F: net/bridge/ 2109 2110ETHERTEAM 16I DRIVER 2111M: Mika Kuoppala <miku@iki.fi> 2112S: Maintained 2113F: drivers/net/eth16i.c 2114 2115EXT2 FILE SYSTEM 2116L: linux-ext4@vger.kernel.org 2117S: Maintained 2118F: Documentation/filesystems/ext2.txt 2119F: fs/ext2/ 2120F: include/linux/ext2* 2121 2122EXT3 FILE SYSTEM 2123M: Andrew Morton <akpm@linux-foundation.org> 2124M: Andreas Dilger <adilger@sun.com> 2125L: linux-ext4@vger.kernel.org 2126S: Maintained 2127F: Documentation/filesystems/ext3.txt 2128F: fs/ext3/ 2129F: include/linux/ext3* 2130 2131EXT4 FILE SYSTEM 2132M: "Theodore Ts'o" <tytso@mit.edu> 2133M: Andreas Dilger <adilger@sun.com> 2134L: linux-ext4@vger.kernel.org 2135W: http://ext4.wiki.kernel.org 2136S: Maintained 2137F: Documentation/filesystems/ext4.txt 2138F: fs/ext4/ 2139 2140F71805F HARDWARE MONITORING DRIVER 2141M: Jean Delvare <khali@linux-fr.org> 2142L: lm-sensors@lm-sensors.org 2143S: Maintained 2144F: Documentation/hwmon/f71805f 2145F: drivers/hwmon/f71805f.c 2146 2147FARSYNC SYNCHRONOUS DRIVER 2148M: Kevin Curtis <kevin.curtis@farsite.co.uk> 2149W: http://www.farsite.co.uk/ 2150S: Supported 2151F: drivers/net/wan/farsync.* 2152 2153FAULT INJECTION SUPPORT 2154M: Akinobu Mita <akinobu.mita@gmail.com> 2155S: Supported 2156F: Documentation/fault-injection/ 2157F: lib/fault-inject.c 2158 2159FCOE SUBSYSTEM (libfc, libfcoe, fcoe) 2160M: Robert Love <robert.w.love@intel.com> 2161L: devel@open-fcoe.org 2162W: www.Open-FCoE.org 2163S: Supported 2164F: drivers/scsi/libfc/ 2165F: drivers/scsi/fcoe/ 2166F: include/scsi/fc/ 2167F: include/scsi/libfc.h 2168F: include/scsi/libfcoe.h 2169 2170FILE LOCKING (flock() and fcntl()/lockf()) 2171M: Matthew Wilcox <matthew@wil.cx> 2172L: linux-fsdevel@vger.kernel.org 2173S: Maintained 2174F: include/linux/fcntl.h 2175F: include/linux/fs.h 2176F: fs/fcntl.c 2177F: fs/locks.c 2178 2179FILESYSTEMS (VFS and infrastructure) 2180M: Alexander Viro <viro@zeniv.linux.org.uk> 2181L: linux-fsdevel@vger.kernel.org 2182S: Maintained 2183F: fs/* 2184 2185FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER 2186M: Riku Voipio <riku.voipio@iki.fi> 2187L: lm-sensors@lm-sensors.org 2188S: Maintained 2189F: drivers/hwmon/f75375s.c 2190F: include/linux/f75375s.h 2191 2192FIREWIRE SUBSYSTEM 2193M: Stefan Richter <stefanr@s5r6.in-berlin.de> 2194L: linux1394-devel@lists.sourceforge.net 2195W: http://ieee1394.wiki.kernel.org/ 2196T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git 2197S: Maintained 2198F: drivers/firewire/ 2199F: include/linux/firewire*.h 2200 2201FIRMWARE LOADER (request_firmware) 2202S: Orphan 2203F: Documentation/firmware_class/ 2204F: drivers/base/firmware*.c 2205F: include/linux/firmware.h 2206 2207FPU EMULATOR 2208M: Bill Metzenthen <billm@melbpc.org.au> 2209W: http://floatingpoint.sourceforge.net/emulator/index.html 2210S: Maintained 2211F: arch/x86/math-emu/ 2212 2213FRAME RELAY DLCI/FRAD (Sangoma drivers too) 2214M: Mike McLagan <mike.mclagan@linux.org> 2215L: netdev@vger.kernel.org 2216S: Maintained 2217F: drivers/net/wan/dlci.c 2218F: drivers/net/wan/sdla.c 2219 2220FRAMEBUFFER LAYER 2221L: linux-fbdev@vger.kernel.org 2222W: http://linux-fbdev.sourceforge.net/ 2223S: Orphan 2224F: Documentation/fb/ 2225F: drivers/video/fb* 2226F: include/linux/fb.h 2227 2228FREESCALE DMA DRIVER 2229M: Li Yang <leoli@freescale.com> 2230M: Zhang Wei <zw@zh-kernel.org> 2231L: linuxppc-dev@ozlabs.org 2232S: Maintained 2233F: drivers/dma/fsldma.* 2234 2235FREESCALE I2C CPM DRIVER 2236M: Jochen Friedrich <jochen@scram.de> 2237L: linuxppc-dev@ozlabs.org 2238L: linux-i2c@vger.kernel.org 2239S: Maintained 2240F: drivers/i2c/busses/i2c-cpm.c 2241 2242FREESCALE IMX / MXC FRAMEBUFFER DRIVER 2243M: Sascha Hauer <kernel@pengutronix.de> 2244L: linux-fbdev@vger.kernel.org 2245L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 2246S: Maintained 2247F: arch/arm/plat-mxc/include/mach/imxfb.h 2248F: drivers/video/imxfb.c 2249 2250FREESCALE SOC FS_ENET DRIVER 2251M: Pantelis Antoniou <pantelis.antoniou@gmail.com> 2252M: Vitaly Bordug <vbordug@ru.mvista.com> 2253L: linuxppc-dev@ozlabs.org 2254L: netdev@vger.kernel.org 2255S: Maintained 2256F: drivers/net/fs_enet/ 2257F: include/linux/fs_enet_pd.h 2258 2259FREESCALE QUICC ENGINE LIBRARY 2260M: Timur Tabi <timur@freescale.com> 2261L: linuxppc-dev@ozlabs.org 2262S: Supported 2263F: arch/powerpc/sysdev/qe_lib/ 2264F: arch/powerpc/include/asm/*qe.h 2265 2266FREESCALE USB PERIPHERAL DRIVERS 2267M: Li Yang <leoli@freescale.com> 2268L: linux-usb@vger.kernel.org 2269L: linuxppc-dev@ozlabs.org 2270S: Maintained 2271F: drivers/usb/gadget/fsl* 2272 2273FREESCALE QUICC ENGINE UCC ETHERNET DRIVER 2274M: Li Yang <leoli@freescale.com> 2275L: netdev@vger.kernel.org 2276L: linuxppc-dev@ozlabs.org 2277S: Maintained 2278F: drivers/net/ucc_geth* 2279 2280FREESCALE QUICC ENGINE UCC UART DRIVER 2281M: Timur Tabi <timur@freescale.com> 2282L: linuxppc-dev@ozlabs.org 2283S: Supported 2284F: drivers/serial/ucc_uart.c 2285 2286FREESCALE SOC SOUND DRIVERS 2287M: Timur Tabi <timur@freescale.com> 2288L: alsa-devel@alsa-project.org (moderated for non-subscribers) 2289L: linuxppc-dev@ozlabs.org 2290S: Supported 2291F: sound/soc/fsl/fsl* 2292F: sound/soc/fsl/mpc8610_hpcd.c 2293 2294FREEVXFS FILESYSTEM 2295M: Christoph Hellwig <hch@infradead.org> 2296W: ftp://ftp.openlinux.org/pub/people/hch/vxfs 2297S: Maintained 2298F: fs/freevxfs/ 2299 2300FREEZER 2301M: Pavel Machek <pavel@ucw.cz> 2302M: "Rafael J. Wysocki" <rjw@sisk.pl> 2303L: linux-pm@lists.linux-foundation.org 2304S: Supported 2305F: Documentation/power/freezing-of-tasks.txt 2306F: include/linux/freezer.h 2307F: kernel/freezer.c 2308 2309FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS 2310M: David Howells <dhowells@redhat.com> 2311L: linux-cachefs@redhat.com 2312S: Supported 2313F: Documentation/filesystems/caching/ 2314F: fs/fscache/ 2315F: include/linux/fscache*.h 2316 2317FUJITSU FR-V (FRV) PORT 2318M: David Howells <dhowells@redhat.com> 2319S: Maintained 2320F: arch/frv/ 2321 2322FUJITSU LAPTOP EXTRAS 2323M: Jonathan Woithe <jwoithe@physics.adelaide.edu.au> 2324L: platform-driver-x86@vger.kernel.org 2325S: Maintained 2326F: drivers/platform/x86/fujitsu-laptop.c 2327 2328FUSE: FILESYSTEM IN USERSPACE 2329M: Miklos Szeredi <miklos@szeredi.hu> 2330L: fuse-devel@lists.sourceforge.net 2331W: http://fuse.sourceforge.net/ 2332S: Maintained 2333F: fs/fuse/ 2334F: include/linux/fuse.h 2335 2336FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit) 2337M: Rik Faith <faith@cs.unc.edu> 2338L: linux-scsi@vger.kernel.org 2339S: Odd Fixes (e.g., new signatures) 2340F: drivers/scsi/fdomain.* 2341 2342GDT SCSI DISK ARRAY CONTROLLER DRIVER 2343M: Achim Leubner <achim_leubner@adaptec.com> 2344L: linux-scsi@vger.kernel.org 2345W: http://www.icp-vortex.com/ 2346S: Supported 2347F: drivers/scsi/gdt* 2348 2349GENERIC GPIO I2C DRIVER 2350M: Haavard Skinnemoen <hskinnemoen@atmel.com> 2351S: Supported 2352F: drivers/i2c/busses/i2c-gpio.c 2353F: include/linux/i2c-gpio.h 2354 2355GENERIC HDLC (WAN) DRIVERS 2356M: Krzysztof Halasa <khc@pm.waw.pl> 2357W: http://www.kernel.org/pub/linux/utils/net/hdlc/ 2358S: Maintained 2359F: drivers/net/wan/c101.c 2360F: drivers/net/wan/hd6457* 2361F: drivers/net/wan/hdlc* 2362F: drivers/net/wan/n2.c 2363F: drivers/net/wan/pc300too.c 2364F: drivers/net/wan/pci200syn.c 2365F: drivers/net/wan/wanxl* 2366 2367GENERIC INCLUDE/ASM HEADER FILES 2368M: Arnd Bergmann <arnd@arndb.de> 2369L: linux-arch@vger.kernel.org 2370T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git 2371S: Maintained 2372F: include/asm-generic 2373 2374GENERIC UIO DRIVER FOR PCI DEVICES 2375M: "Michael S. Tsirkin" <mst@redhat.com> 2376L: kvm@vger.kernel.org 2377S: Supported 2378F: drivers/uio/uio_pci_generic.c 2379 2380GFS2 FILE SYSTEM 2381M: Steven Whitehouse <swhiteho@redhat.com> 2382L: cluster-devel@redhat.com 2383W: http://sources.redhat.com/cluster/ 2384T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git 2385T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git 2386S: Supported 2387F: Documentation/filesystems/gfs2*.txt 2388F: fs/gfs2/ 2389F: include/linux/gfs2_ondisk.h 2390 2391GIGASET ISDN DRIVERS 2392M: Hansjoerg Lipp <hjlipp@web.de> 2393M: Tilman Schmidt <tilman@imap.cc> 2394L: gigaset307x-common@lists.sourceforge.net 2395W: http://gigaset307x.sourceforge.net/ 2396S: Maintained 2397F: Documentation/isdn/README.gigaset 2398F: drivers/isdn/gigaset/ 2399F: include/linux/gigaset_dev.h 2400 2401GRETH 10/100/1G Ethernet MAC device driver 2402M: Kristoffer Glembo <kristoffer@gaisler.com> 2403L: netdev@vger.kernel.org 2404S: Maintained 2405F: drivers/net/greth* 2406 2407HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER 2408M: Frank Seidel <frank@f-seidel.de> 2409L: lm-sensors@lm-sensors.org 2410W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/ 2411S: Maintained 2412F: drivers/hwmon/hdaps.c 2413 2414HWPOISON MEMORY FAILURE HANDLING 2415M: Andi Kleen <andi@firstfloor.org> 2416L: linux-mm@kvack.org 2417L: linux-kernel@vger.kernel.org 2418T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison 2419S: Maintained 2420F: mm/memory-failure.c 2421F: mm/hwpoison-inject.c 2422 2423HYPERVISOR VIRTUAL CONSOLE DRIVER 2424L: linuxppc-dev@ozlabs.org 2425S: Odd Fixes 2426F: drivers/char/hvc_* 2427 2428VIRTIO CONSOLE DRIVER 2429M: Amit Shah <amit.shah@redhat.com> 2430L: virtualization@lists.linux-foundation.org 2431S: Maintained 2432F: drivers/char/virtio_console.c 2433 2434iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER 2435M: Peter Jones <pjones@redhat.com> 2436M: Konrad Rzeszutek Wilk <konrad@kernel.org> 2437S: Maintained 2438F: drivers/firmware/iscsi_ibft* 2439 2440GSPCA FINEPIX SUBDRIVER 2441M: Frank Zago <frank@zago.net> 2442L: linux-media@vger.kernel.org 2443T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git 2444S: Maintained 2445F: drivers/media/video/gspca/finepix.c 2446 2447GSPCA GL860 SUBDRIVER 2448M: Olivier Lorin <o.lorin@laposte.net> 2449L: linux-media@vger.kernel.org 2450T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git 2451S: Maintained 2452F: drivers/media/video/gspca/gl860/ 2453 2454GSPCA M5602 SUBDRIVER 2455M: Erik Andren <erik.andren@gmail.com> 2456L: linux-media@vger.kernel.org 2457T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git 2458S: Maintained 2459F: drivers/media/video/gspca/m5602/ 2460 2461GSPCA PAC207 SONIXB SUBDRIVER 2462M: Hans de Goede <hdegoede@redhat.com> 2463L: linux-media@vger.kernel.org 2464T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git 2465S: Maintained 2466F: drivers/media/video/gspca/pac207.c 2467 2468GSPCA SN9C20X SUBDRIVER 2469M: Brian Johnson <brijohn@gmail.com> 2470L: linux-media@vger.kernel.org 2471T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git 2472S: Maintained 2473F: drivers/media/video/gspca/sn9c20x.c 2474 2475GSPCA T613 SUBDRIVER 2476M: Leandro Costantino <lcostantino@gmail.com> 2477L: linux-media@vger.kernel.org 2478T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git 2479S: Maintained 2480F: drivers/media/video/gspca/t613.c 2481 2482GSPCA USB WEBCAM DRIVER 2483M: Jean-Francois Moine <moinejf@free.fr> 2484W: http://moinejf.free.fr 2485L: linux-media@vger.kernel.org 2486T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git 2487S: Maintained 2488F: drivers/media/video/gspca/ 2489 2490HARDWARE MONITORING 2491L: lm-sensors@lm-sensors.org 2492W: http://www.lm-sensors.org/ 2493S: Orphan 2494F: Documentation/hwmon/ 2495F: drivers/hwmon/ 2496F: include/linux/hwmon*.h 2497 2498HARDWARE RANDOM NUMBER GENERATOR CORE 2499M: Matt Mackall <mpm@selenic.com> 2500M: Herbert Xu <herbert@gondor.apana.org.au> 2501S: Odd fixes 2502F: Documentation/hw_random.txt 2503F: drivers/char/hw_random/ 2504F: include/linux/hw_random.h 2505 2506HARMONY SOUND DRIVER 2507M: Kyle McMartin <kyle@mcmartin.ca> 2508L: linux-parisc@vger.kernel.org 2509S: Maintained 2510F: sound/parisc/harmony.* 2511 2512HAYES ESP SERIAL DRIVER 2513M: "Andrew J. Robinson" <arobinso@nyx.net> 2514W: http://www.nyx.net/~arobinso 2515S: Maintained 2516F: Documentation/serial/hayes-esp.txt 2517F: drivers/char/esp.c 2518 2519HEWLETT-PACKARD SMART2 RAID DRIVER 2520M: Chirag Kantharia <chirag.kantharia@hp.com> 2521L: iss_storagedev@hp.com 2522S: Maintained 2523F: Documentation/blockdev/cpqarray.txt 2524F: drivers/block/cpqarray.* 2525 2526HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss) 2527M: Mike Miller <mike.miller@hp.com> 2528L: iss_storagedev@hp.com 2529S: Supported 2530F: Documentation/blockdev/cciss.txt 2531F: drivers/block/cciss* 2532F: include/linux/cciss_ioctl.h 2533 2534HFS FILESYSTEM 2535M: Roman Zippel <zippel@linux-m68k.org> 2536S: Maintained 2537F: Documentation/filesystems/hfs.txt 2538F: fs/hfs/ 2539 2540HGA FRAMEBUFFER DRIVER 2541M: Ferenc Bakonyi <fero@drama.obuda.kando.hu> 2542L: linux-nvidia@lists.surfsouth.com 2543W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml 2544S: Maintained 2545F: drivers/video/hgafb.c 2546 2547HIBERNATION (aka Software Suspend, aka swsusp) 2548M: Pavel Machek <pavel@ucw.cz> 2549M: "Rafael J. Wysocki" <rjw@sisk.pl> 2550L: linux-pm@lists.linux-foundation.org 2551S: Supported 2552F: arch/x86/power/ 2553F: drivers/base/power/ 2554F: kernel/power/ 2555F: include/linux/suspend.h 2556F: include/linux/freezer.h 2557F: include/linux/pm.h 2558F: arch/*/include/asm/suspend*.h 2559 2560HID CORE LAYER 2561M: Jiri Kosina <jkosina@suse.cz> 2562L: linux-input@vger.kernel.org 2563T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git 2564S: Maintained 2565F: drivers/hid/ 2566F: include/linux/hid* 2567 2568HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS 2569M: Thomas Gleixner <tglx@linutronix.de> 2570S: Maintained 2571F: Documentation/timers/ 2572F: kernel/hrtimer.c 2573F: include/linux/hrtimer.h 2574 2575HIGH-SPEED SCC DRIVER FOR AX.25 2576M: Klaus Kudielka <klaus.kudielka@ieee.org> 2577L: linux-hams@vger.kernel.org 2578W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/ 2579S: Maintained 2580F: drivers/net/hamradio/dmascc.c 2581F: drivers/net/hamradio/scc.c 2582 2583HIGHPOINT ROCKETRAID 3xxx RAID DRIVER 2584M: HighPoint Linux Team <linux@highpoint-tech.com> 2585W: http://www.highpoint-tech.com 2586S: Supported 2587F: Documentation/scsi/hptiop.txt 2588F: drivers/scsi/hptiop.c 2589 2590HIPPI 2591M: Jes Sorensen <jes@trained-monkey.org> 2592L: linux-hippi@sunsite.dk 2593S: Maintained 2594F: include/linux/hippidevice.h 2595F: include/linux/if_hippi.h 2596F: net/802/hippi.c 2597 2598HOST AP DRIVER 2599M: Jouni Malinen <j@w1.fi> 2600L: hostap@shmoo.com (subscribers-only) 2601L: linux-wireless@vger.kernel.org 2602W: http://hostap.epitest.fi/ 2603S: Maintained 2604F: drivers/net/wireless/hostap/ 2605 2606HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER 2607M: Carlos Corbacho <carlos@strangeworlds.co.uk> 2608L: platform-driver-x86@vger.kernel.org 2609S: Odd Fixes 2610F: drivers/platform/x86/tc1100-wmi.c 2611 2612HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series 2613M: Jaroslav Kysela <perex@perex.cz> 2614S: Maintained 2615F: drivers/net/hp100.* 2616 2617HPET: High Precision Event Timers driver 2618M: Clemens Ladisch <clemens@ladisch.de> 2619S: Maintained 2620F: Documentation/timers/hpet.txt 2621F: drivers/char/hpet.c 2622F: include/linux/hpet.h 2623 2624HPET: i386 2625M: "Venkatesh Pallipadi (Venki)" <venkatesh.pallipadi@intel.com> 2626S: Maintained 2627F: arch/x86/kernel/hpet.c 2628F: arch/x86/include/asm/hpet.h 2629 2630HPET: x86_64 2631M: Vojtech Pavlik <vojtech@suse.cz> 2632S: Maintained 2633 2634HPET: ACPI 2635M: Bob Picco <bob.picco@hp.com> 2636S: Maintained 2637F: drivers/char/hpet.c 2638 2639HPFS FILESYSTEM 2640M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz> 2641W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi 2642S: Maintained 2643F: fs/hpfs/ 2644 2645HSO 3G MODEM DRIVER 2646M: Jan Dumon <j.dumon@option.com> 2647W: http://www.pharscape.org 2648S: Maintained 2649F: drivers/net/usb/hso.c 2650 2651HTCPEN TOUCHSCREEN DRIVER 2652M: Pau Oliva Fora <pof@eslack.org> 2653L: linux-input@vger.kernel.org 2654S: Maintained 2655F: drivers/input/touchscreen/htcpen.c 2656 2657HUGETLB FILESYSTEM 2658M: William Irwin <wli@holomorphy.com> 2659S: Maintained 2660F: fs/hugetlbfs/ 2661 2662I2C/SMBUS STUB DRIVER 2663M: "Mark M. Hoffman" <mhoffman@lightlink.com> 2664L: linux-i2c@vger.kernel.org 2665S: Maintained 2666F: drivers/i2c/busses/i2c-stub.c 2667 2668I2C SUBSYSTEM 2669M: "Jean Delvare (PC drivers, core)" <khali@linux-fr.org> 2670M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org> 2671L: linux-i2c@vger.kernel.org 2672W: http://i2c.wiki.kernel.org/ 2673T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/ 2674S: Maintained 2675F: Documentation/i2c/ 2676F: drivers/i2c/ 2677F: include/linux/i2c.h 2678F: include/linux/i2c-*.h 2679 2680I2C-TINY-USB DRIVER 2681M: Till Harbaum <till@harbaum.org> 2682L: linux-i2c@vger.kernel.org 2683W: http://www.harbaum.org/till/i2c_tiny_usb 2684S: Maintained 2685F: drivers/i2c/busses/i2c-tiny-usb.c 2686 2687i386 BOOT CODE 2688M: "H. Peter Anvin" <hpa@zytor.com> 2689S: Maintained 2690F: arch/x86/boot/ 2691 2692i386 SETUP CODE / CPU ERRATA WORKAROUNDS 2693M: "H. Peter Anvin" <hpa@zytor.com> 2694T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git 2695S: Maintained 2696 2697IA64 (Itanium) PLATFORM 2698M: Tony Luck <tony.luck@intel.com> 2699M: Fenghua Yu <fenghua.yu@intel.com> 2700L: linux-ia64@vger.kernel.org 2701W: http://www.ia64-linux.org/ 2702T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6.git 2703S: Maintained 2704F: arch/ia64/ 2705 2706IBM MCA SCSI SUBSYSTEM DRIVER 2707M: Michael Lang <langa2@kph.uni-mainz.de> 2708W: http://www.uni-mainz.de/~langm000/linux.html 2709S: Maintained 2710F: drivers/scsi/ibmmca.c 2711 2712IBM Power Linux RAID adapter 2713M: Brian King <brking@us.ibm.com> 2714S: Supported 2715F: drivers/scsi/ipr.* 2716 2717IBM ServeRAID RAID DRIVER 2718P: Jack Hammer 2719M: Dave Jeffery <ipslinux@adaptec.com> 2720W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html 2721S: Supported 2722F: drivers/scsi/ips.* 2723 2724IDE SUBSYSTEM 2725M: "David S. Miller" <davem@davemloft.net> 2726L: linux-ide@vger.kernel.org 2727T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide-2.6.git 2728S: Maintained 2729F: Documentation/ide/ 2730F: drivers/ide/ 2731F: include/linux/ide.h 2732 2733IDE/ATAPI DRIVERS 2734M: Borislav Petkov <petkovbb@gmail.com> 2735L: linux-ide@vger.kernel.org 2736S: Maintained 2737F: Documentation/cdrom/ide-cd 2738F: drivers/ide/ide-cd* 2739 2740IDLE-I7300 2741M: Andy Henroid <andrew.d.henroid@intel.com> 2742L: linux-pm@lists.linux-foundation.org 2743S: Supported 2744F: drivers/idle/i7300_idle.c 2745 2746IEEE 1394 SUBSYSTEM 2747M: Stefan Richter <stefanr@s5r6.in-berlin.de> 2748L: linux1394-devel@lists.sourceforge.net 2749W: http://ieee1394.wiki.kernel.org/ 2750T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git 2751S: Obsolete 2752F: Documentation/debugging-via-ohci1394.txt 2753F: drivers/ieee1394/ 2754 2755IEEE 802.15.4 SUBSYSTEM 2756M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> 2757M: Sergey Lapin <slapin@ossfans.org> 2758L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers) 2759W: http://apps.sourceforge.net/trac/linux-zigbee 2760T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git 2761S: Maintained 2762F: net/ieee802154/ 2763F: drivers/ieee802154/ 2764 2765INTEGRITY MEASUREMENT ARCHITECTURE (IMA) 2766M: Mimi Zohar <zohar@us.ibm.com> 2767S: Supported 2768F: security/integrity/ima/ 2769 2770IMS TWINTURBO FRAMEBUFFER DRIVER 2771L: linux-fbdev@vger.kernel.org 2772S: Orphan 2773F: drivers/video/imsttfb.c 2774 2775INFINIBAND SUBSYSTEM 2776M: Roland Dreier <rolandd@cisco.com> 2777M: Sean Hefty <sean.hefty@intel.com> 2778M: Hal Rosenstock <hal.rosenstock@gmail.com> 2779L: linux-rdma@vger.kernel.org 2780W: http://www.openib.org/ 2781T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git 2782S: Supported 2783F: Documentation/infiniband/ 2784F: drivers/infiniband/ 2785F: include/linux/if_infiniband.h 2786 2787INOTIFY 2788M: John McCutchan <john@johnmccutchan.com> 2789M: Robert Love <rlove@rlove.org> 2790M: Eric Paris <eparis@parisplace.org> 2791S: Maintained 2792F: Documentation/filesystems/inotify.txt 2793F: fs/notify/inotify/ 2794F: include/linux/inotify.h 2795 2796INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS 2797M: Dmitry Torokhov <dmitry.torokhov@gmail.com> 2798M: Dmitry Torokhov <dtor@mail.ru> 2799L: linux-input@vger.kernel.org 2800T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git 2801S: Maintained 2802F: drivers/input/ 2803 2804INTEL FRAMEBUFFER DRIVER (excluding 810 and 815) 2805M: Sylvain Meyer <sylvain.meyer@worldonline.fr> 2806L: linux-fbdev@vger.kernel.org 2807S: Maintained 2808F: Documentation/fb/intelfb.txt 2809F: drivers/video/intelfb/ 2810 2811INTEL 810/815 FRAMEBUFFER DRIVER 2812M: Antonino Daplas <adaplas@gmail.com> 2813L: linux-fbdev@vger.kernel.org 2814S: Maintained 2815F: drivers/video/i810/ 2816 2817INTEL MENLOW THERMAL DRIVER 2818M: Sujith Thomas <sujith.thomas@intel.com> 2819L: platform-driver-x86@vger.kernel.org 2820W: http://www.lesswatts.org/projects/acpi/ 2821S: Supported 2822F: drivers/platform/x86/intel_menlow.c 2823 2824INTEL IA32 MICROCODE UPDATE SUPPORT 2825M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk> 2826S: Maintained 2827F: arch/x86/kernel/microcode_core.c 2828F: arch/x86/kernel/microcode_intel.c 2829 2830INTEL I/OAT DMA DRIVER 2831M: Dan Williams <dan.j.williams@intel.com> 2832S: Supported 2833F: drivers/dma/ioat* 2834 2835INTEL IOMMU (VT-d) 2836M: David Woodhouse <dwmw2@infradead.org> 2837L: iommu@lists.linux-foundation.org 2838T: git git://git.infradead.org/iommu-2.6.git 2839S: Supported 2840F: drivers/pci/intel-iommu.c 2841F: include/linux/intel-iommu.h 2842 2843INTEL IOP-ADMA DMA DRIVER 2844M: Dan Williams <dan.j.williams@intel.com> 2845S: Maintained 2846F: drivers/dma/iop-adma.c 2847 2848INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT 2849M: Krzysztof Halasa <khc@pm.waw.pl> 2850S: Maintained 2851F: arch/arm/mach-ixp4xx/include/mach/qmgr.h 2852F: arch/arm/mach-ixp4xx/include/mach/npe.h 2853F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c 2854F: arch/arm/mach-ixp4xx/ixp4xx_npe.c 2855F: drivers/net/arm/ixp4xx_eth.c 2856F: drivers/net/wan/ixp4xx_hss.c 2857 2858INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT 2859M: Deepak Saxena <dsaxena@plexity.net> 2860S: Maintained 2861F: drivers/char/hw_random/ixp4xx-rng.c 2862 2863INTEL IXP2000 ETHERNET DRIVER 2864M: Lennert Buytenhek <kernel@wantstofly.org> 2865L: netdev@vger.kernel.org 2866S: Maintained 2867F: drivers/net/ixp2000/ 2868 2869INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe) 2870M: Jeff Kirsher <jeffrey.t.kirsher@intel.com> 2871M: Jesse Brandeburg <jesse.brandeburg@intel.com> 2872M: Bruce Allan <bruce.w.allan@intel.com> 2873M: Alex Duyck <alexander.h.duyck@intel.com> 2874M: PJ Waskiewicz <peter.p.waskiewicz.jr@intel.com> 2875M: John Ronciak <john.ronciak@intel.com> 2876L: e1000-devel@lists.sourceforge.net 2877W: http://e1000.sourceforge.net/ 2878S: Supported 2879F: drivers/net/e100.c 2880F: drivers/net/e1000/ 2881F: drivers/net/e1000e/ 2882F: drivers/net/igb/ 2883F: drivers/net/igbvf/ 2884F: drivers/net/ixgb/ 2885F: drivers/net/ixgbe/ 2886 2887INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT 2888M: Zhu Yi <yi.zhu@intel.com> 2889M: Reinette Chatre <reinette.chatre@intel.com> 2890M: Intel Linux Wireless <ilw@linux.intel.com> 2891L: linux-wireless@vger.kernel.org 2892W: http://ipw2100.sourceforge.net 2893S: Odd Fixes 2894F: Documentation/networking/README.ipw2100 2895F: drivers/net/wireless/ipw2x00/ipw2100.* 2896 2897INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT 2898M: Zhu Yi <yi.zhu@intel.com> 2899M: Reinette Chatre <reinette.chatre@intel.com> 2900M: Intel Linux Wireless <ilw@linux.intel.com> 2901L: linux-wireless@vger.kernel.org 2902W: http://ipw2200.sourceforge.net 2903S: Odd Fixes 2904F: Documentation/networking/README.ipw2200 2905F: drivers/net/wireless/ipw2x00/ipw2200.* 2906 2907INTEL WIRELESS WIMAX CONNECTION 2400 2908M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> 2909M: linux-wimax@intel.com 2910L: wimax@linuxwimax.org 2911S: Supported 2912W: http://linuxwimax.org 2913F: Documentation/wimax/README.i2400m 2914F: drivers/net/wimax/i2400m/ 2915F: include/linux/wimax/i2400m.h 2916 2917INTEL WIRELESS WIFI LINK (iwlwifi) 2918M: Zhu Yi <yi.zhu@intel.com> 2919M: Reinette Chatre <reinette.chatre@intel.com> 2920M: Intel Linux Wireless <ilw@linux.intel.com> 2921L: linux-wireless@vger.kernel.org 2922W: http://intellinuxwireless.org 2923T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi-2.6.git 2924S: Supported 2925F: drivers/net/wireless/iwlwifi/ 2926 2927INTEL WIRELESS MULTICOMM 3200 WIFI (iwmc3200wifi) 2928M: Samuel Ortiz <samuel.ortiz@intel.com> 2929M: Zhu Yi <yi.zhu@intel.com> 2930M: Intel Linux Wireless <ilw@linux.intel.com> 2931L: linux-wireless@vger.kernel.org 2932S: Supported 2933W: http://wireless.kernel.org/en/users/Drivers/iwmc3200wifi 2934F: drivers/net/wireless/iwmc3200wifi/ 2935 2936IOC3 ETHERNET DRIVER 2937M: Ralf Baechle <ralf@linux-mips.org> 2938L: linux-mips@linux-mips.org 2939S: Maintained 2940F: drivers/net/ioc3-eth.c 2941 2942IOC3 SERIAL DRIVER 2943M: Pat Gefre <pfg@sgi.com> 2944L: linux-mips@linux-mips.org 2945S: Maintained 2946F: drivers/serial/ioc3_serial.c 2947 2948IP MASQUERADING 2949M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar> 2950S: Maintained 2951F: net/ipv4/netfilter/ipt_MASQUERADE.c 2952 2953IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER 2954M: Francois Romieu <romieu@fr.zoreil.com> 2955M: Sorbica Shieh <sorbica@icplus.com.tw> 2956M: Jesse Huang <jesse@icplus.com.tw> 2957L: netdev@vger.kernel.org 2958S: Maintained 2959F: drivers/net/ipg.c 2960 2961IPATH DRIVER 2962M: Ralph Campbell <infinipath@qlogic.com> 2963L: linux-rdma@vger.kernel.org 2964T: git git://git.qlogic.com/ipath-linux-2.6 2965S: Supported 2966F: drivers/infiniband/hw/ipath/ 2967 2968IPMI SUBSYSTEM 2969M: Corey Minyard <minyard@acm.org> 2970L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers) 2971W: http://openipmi.sourceforge.net/ 2972S: Supported 2973F: Documentation/IPMI.txt 2974F: drivers/char/ipmi/ 2975F: include/linux/ipmi* 2976 2977IPS SCSI RAID DRIVER 2978M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> 2979L: linux-scsi@vger.kernel.org 2980W: http://www.adaptec.com/ 2981S: Maintained 2982F: drivers/scsi/ips* 2983 2984IPVS 2985M: Wensong Zhang <wensong@linux-vs.org> 2986M: Simon Horman <horms@verge.net.au> 2987M: Julian Anastasov <ja@ssi.bg> 2988L: netdev@vger.kernel.org 2989L: lvs-devel@vger.kernel.org 2990S: Maintained 2991F: Documentation/networking/ipvs-sysctl.txt 2992F: include/net/ip_vs.h 2993F: include/linux/ip_vs.h 2994F: net/netfilter/ipvs/ 2995 2996IPWIRELESS DRIVER 2997M: Jiri Kosina <jkosina@suse.cz> 2998M: David Sterba <dsterba@suse.cz> 2999S: Maintained 3000T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/ipwireless_cs.git 3001F: drivers/char/pcmcia/ipwireless/ 3002 3003IPX NETWORK LAYER 3004M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> 3005L: netdev@vger.kernel.org 3006S: Maintained 3007F: include/linux/ipx.h 3008F: include/net/ipx.h 3009F: net/ipx/ 3010 3011IRDA SUBSYSTEM 3012M: Samuel Ortiz <samuel@sortiz.org> 3013L: irda-users@lists.sourceforge.net (subscribers-only) 3014W: http://irda.sourceforge.net/ 3015S: Maintained 3016T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git 3017F: Documentation/networking/irda.txt 3018F: drivers/net/irda/ 3019F: include/net/irda/ 3020F: net/irda/ 3021 3022ISAPNP 3023M: Jaroslav Kysela <perex@perex.cz> 3024S: Maintained 3025F: Documentation/isapnp.txt 3026F: drivers/pnp/isapnp/ 3027F: include/linux/isapnp.h 3028 3029ISCSI 3030M: Mike Christie <michaelc@cs.wisc.edu> 3031L: open-iscsi@googlegroups.com 3032W: www.open-iscsi.org 3033T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git 3034S: Maintained 3035F: drivers/scsi/*iscsi* 3036F: include/scsi/*iscsi* 3037 3038ISDN SUBSYSTEM 3039M: Karsten Keil <isdn@linux-pingi.de> 3040L: isdn4linux@listserv.isdn4linux.de (subscribers-only) 3041W: http://www.isdn4linux.de 3042T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git 3043S: Maintained 3044F: Documentation/isdn/ 3045F: drivers/isdn/ 3046F: include/linux/isdn.h 3047F: include/linux/isdn/ 3048 3049ISDN SUBSYSTEM (Eicon active card driver) 3050M: Armin Schindler <mac@melware.de> 3051L: isdn4linux@listserv.isdn4linux.de (subscribers-only) 3052W: http://www.melware.de 3053S: Maintained 3054F: drivers/isdn/hardware/eicon/ 3055 3056IT87 HARDWARE MONITORING DRIVER 3057M: Jean Delvare <khali@linux-fr.org> 3058L: lm-sensors@lm-sensors.org 3059S: Maintained 3060F: Documentation/hwmon/it87 3061F: drivers/hwmon/it87.c 3062 3063IVTV VIDEO4LINUX DRIVER 3064M: Andy Walls <awalls@radix.net> 3065L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers) 3066L: linux-media@vger.kernel.org 3067T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git 3068W: http://www.ivtvdriver.org 3069S: Maintained 3070F: Documentation/video4linux/*.ivtv 3071F: drivers/media/video/ivtv/ 3072F: include/linux/ivtv* 3073 3074JFS FILESYSTEM 3075M: Dave Kleikamp <shaggy@linux.vnet.ibm.com> 3076L: jfs-discussion@lists.sourceforge.net 3077W: http://jfs.sourceforge.net/ 3078T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git 3079S: Maintained 3080F: Documentation/filesystems/jfs.txt 3081F: fs/jfs/ 3082 3083JME NETWORK DRIVER 3084M: Guo-Fu Tseng <cooldavid@cooldavid.org> 3085L: netdev@vger.kernel.org 3086S: Maintained 3087F: drivers/net/jme.* 3088 3089JOURNALLING FLASH FILE SYSTEM V2 (JFFS2) 3090M: David Woodhouse <dwmw2@infradead.org> 3091L: linux-mtd@lists.infradead.org 3092W: http://www.linux-mtd.infradead.org/doc/jffs2.html 3093S: Maintained 3094F: fs/jffs2/ 3095F: include/linux/jffs2.h 3096 3097JOURNALLING LAYER FOR BLOCK DEVICES (JBD) 3098M: Andrew Morton <akpm@linux-foundation.org> 3099M: Jan Kara <jack@suse.cz> 3100L: linux-ext4@vger.kernel.org 3101S: Maintained 3102F: fs/jbd*/ 3103F: include/linux/ext*jbd*.h 3104F: include/linux/jbd*.h 3105 3106K8TEMP HARDWARE MONITORING DRIVER 3107M: Rudolf Marek <r.marek@assembler.cz> 3108L: lm-sensors@lm-sensors.org 3109S: Maintained 3110F: Documentation/hwmon/k8temp 3111F: drivers/hwmon/k8temp.c 3112 3113KCONFIG 3114M: Roman Zippel <zippel@linux-m68k.org> 3115L: linux-kbuild@vger.kernel.org 3116S: Maintained 3117F: Documentation/kbuild/kconfig-language.txt 3118F: scripts/kconfig/ 3119 3120KDUMP 3121M: Vivek Goyal <vgoyal@redhat.com> 3122M: Haren Myneni <hbabu@us.ibm.com> 3123L: kexec@lists.infradead.org 3124W: http://lse.sourceforge.net/kdump/ 3125S: Maintained 3126F: Documentation/kdump/ 3127 3128KERNEL AUTOMOUNTER (AUTOFS) 3129M: "H. Peter Anvin" <hpa@zytor.com> 3130L: autofs@linux.kernel.org 3131S: Odd Fixes 3132F: fs/autofs/ 3133 3134KERNEL AUTOMOUNTER v4 (AUTOFS4) 3135M: Ian Kent <raven@themaw.net> 3136L: autofs@linux.kernel.org 3137S: Maintained 3138F: fs/autofs4/ 3139 3140KERNEL BUILD 3141M: Michal Marek <mmarek@suse.cz> 3142T: git git://repo.or.cz/linux-kbuild.git for-next 3143T: git git://repo.or.cz/linux-kbuild.git for-linus 3144L: linux-kbuild@vger.kernel.org 3145S: Maintained 3146F: Documentation/kbuild/ 3147F: Makefile 3148F: scripts/Makefile.* 3149 3150KERNEL JANITORS 3151L: kernel-janitors@vger.kernel.org 3152W: http://janitor.kernelnewbies.org/ 3153S: Odd Fixes 3154 3155KERNEL NFSD, SUNRPC, AND LOCKD SERVERS 3156M: "J. Bruce Fields" <bfields@fieldses.org> 3157M: Neil Brown <neilb@suse.de> 3158L: linux-nfs@vger.kernel.org 3159W: http://nfs.sourceforge.net/ 3160S: Supported 3161F: fs/nfsd/ 3162F: include/linux/nfsd/ 3163F: fs/lockd/ 3164F: fs/nfs_common/ 3165F: net/sunrpc/ 3166F: include/linux/lockd/ 3167F: include/linux/sunrpc/ 3168 3169KERNEL VIRTUAL MACHINE (KVM) 3170M: Avi Kivity <avi@redhat.com> 3171M: Marcelo Tosatti <mtosatti@redhat.com> 3172L: kvm@vger.kernel.org 3173W: http://kvm.qumranet.com 3174S: Supported 3175F: Documentation/*/kvm.txt 3176F: arch/*/kvm/ 3177F: arch/*/include/asm/kvm* 3178F: include/linux/kvm* 3179F: virt/kvm/ 3180 3181KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V 3182M: Joerg Roedel <joerg.roedel@amd.com> 3183L: kvm@vger.kernel.org 3184W: http://kvm.qumranet.com 3185S: Supported 3186F: arch/x86/include/asm/svm.h 3187F: arch/x86/kvm/svm.c 3188 3189KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC 3190M: Hollis Blanchard <hollisb@us.ibm.com> 3191L: kvm-ppc@vger.kernel.org 3192W: http://kvm.qumranet.com 3193S: Supported 3194F: arch/powerpc/include/asm/kvm* 3195F: arch/powerpc/kvm/ 3196 3197KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64) 3198M: Xiantao Zhang <xiantao.zhang@intel.com> 3199L: kvm-ia64@vger.kernel.org 3200W: http://kvm.qumranet.com 3201S: Supported 3202F: Documentation/ia64/kvm.txt 3203F: arch/ia64/include/asm/kvm* 3204F: arch/ia64/kvm/ 3205 3206KERNEL VIRTUAL MACHINE for s390 (KVM/s390) 3207M: Carsten Otte <cotte@de.ibm.com> 3208M: Christian Borntraeger <borntraeger@de.ibm.com> 3209M: linux390@de.ibm.com 3210L: linux-s390@vger.kernel.org 3211W: http://www.ibm.com/developerworks/linux/linux390/ 3212S: Supported 3213F: Documentation/s390/kvm.txt 3214F: arch/s390/include/asm/kvm* 3215F: arch/s390/kvm/ 3216F: drivers/s390/kvm/ 3217 3218KEXEC 3219M: Eric Biederman <ebiederm@xmission.com> 3220W: http://ftp.kernel.org/pub/linux/kernel/people/horms/kexec-tools/ 3221L: kexec@lists.infradead.org 3222S: Maintained 3223F: include/linux/kexec.h 3224F: kernel/kexec.c 3225 3226KGDB 3227M: Jason Wessel <jason.wessel@windriver.com> 3228L: kgdb-bugreport@lists.sourceforge.net 3229S: Maintained 3230F: Documentation/DocBook/kgdb.tmpl 3231F: drivers/misc/kgdbts.c 3232F: drivers/serial/kgdboc.c 3233F: include/linux/kgdb.h 3234F: kernel/kgdb.c 3235 3236KMEMCHECK 3237M: Vegard Nossum <vegardno@ifi.uio.no> 3238M: Pekka Enberg <penberg@cs.helsinki.fi> 3239S: Maintained 3240F: Documentation/kmemcheck.txt 3241F: arch/x86/include/asm/kmemcheck.h 3242F: arch/x86/mm/kmemcheck/ 3243F: include/linux/kmemcheck.h 3244F: mm/kmemcheck.c 3245 3246KMEMLEAK 3247M: Catalin Marinas <catalin.marinas@arm.com> 3248S: Maintained 3249F: Documentation/kmemleak.txt 3250F: include/linux/kmemleak.h 3251F: mm/kmemleak.c 3252F: mm/kmemleak-test.c 3253 3254KMEMTRACE 3255M: Eduard - Gabriel Munteanu <eduard.munteanu@linux360.ro> 3256S: Maintained 3257F: Documentation/trace/kmemtrace.txt 3258F: include/linux/kmemtrace.h 3259F: kernel/trace/kmemtrace.c 3260 3261KPROBES 3262M: Ananth N Mavinakayanahalli <ananth@in.ibm.com> 3263M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com> 3264M: "David S. Miller" <davem@davemloft.net> 3265M: Masami Hiramatsu <mhiramat@redhat.com> 3266S: Maintained 3267F: Documentation/kprobes.txt 3268F: include/linux/kprobes.h 3269F: kernel/kprobes.c 3270 3271KS0108 LCD CONTROLLER DRIVER 3272M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> 3273W: http://miguelojeda.es/auxdisplay.htm 3274W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm 3275S: Maintained 3276F: Documentation/auxdisplay/ks0108 3277F: drivers/auxdisplay/ks0108.c 3278F: include/linux/ks0108.h 3279 3280LAPB module 3281L: linux-x25@vger.kernel.org 3282S: Orphan 3283F: Documentation/networking/lapb-module.txt 3284F: include/*/lapb.h 3285F: net/lapb/ 3286 3287LASI 53c700 driver for PARISC 3288M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> 3289L: linux-scsi@vger.kernel.org 3290S: Maintained 3291F: Documentation/scsi/53c700.txt 3292F: drivers/scsi/53c700* 3293 3294LED SUBSYSTEM 3295M: Richard Purdie <rpurdie@rpsys.net> 3296S: Maintained 3297F: drivers/leds/ 3298F: include/linux/leds.h 3299 3300LEGO USB Tower driver 3301M: Juergen Stuber <starblue@users.sourceforge.net> 3302L: legousb-devel@lists.sourceforge.net 3303W: http://legousb.sourceforge.net/ 3304S: Maintained 3305F: drivers/usb/misc/legousbtower.c 3306 3307LGUEST 3308M: Rusty Russell <rusty@rustcorp.com.au> 3309L: lguest@ozlabs.org 3310W: http://lguest.ozlabs.org/ 3311S: Maintained 3312F: Documentation/lguest/ 3313F: arch/x86/lguest/ 3314F: drivers/lguest/ 3315F: include/linux/lguest*.h 3316F: arch/x86/include/asm/lguest*.h 3317 3318LINUX FOR IBM pSERIES (RS/6000) 3319M: Paul Mackerras <paulus@au.ibm.com> 3320W: http://www.ibm.com/linux/ltc/projects/ppc 3321S: Supported 3322F: arch/powerpc/boot/rs6000.h 3323 3324LINUX FOR POWERPC (32-BIT AND 64-BIT) 3325M: Benjamin Herrenschmidt <benh@kernel.crashing.org> 3326M: Paul Mackerras <paulus@samba.org> 3327W: http://www.penguinppc.org/ 3328L: linuxppc-dev@ozlabs.org 3329T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git 3330S: Supported 3331F: Documentation/powerpc/ 3332F: arch/powerpc/ 3333 3334LINUX FOR POWER MACINTOSH 3335M: Benjamin Herrenschmidt <benh@kernel.crashing.org> 3336W: http://www.penguinppc.org/ 3337L: linuxppc-dev@ozlabs.org 3338S: Maintained 3339F: arch/powerpc/platforms/powermac/ 3340F: drivers/macintosh/ 3341 3342LINUX FOR POWERPC EMBEDDED MPC5XXX 3343M: Grant Likely <grant.likely@secretlab.ca> 3344L: linuxppc-dev@ozlabs.org 3345T: git git://git.secretlab.ca/git/linux-2.6.git 3346S: Maintained 3347F: arch/powerpc/platforms/512x/ 3348F: arch/powerpc/platforms/52xx/ 3349 3350LINUX FOR POWERPC EMBEDDED PPC4XX 3351M: Josh Boyer <jwboyer@linux.vnet.ibm.com> 3352M: Matt Porter <mporter@kernel.crashing.org> 3353W: http://www.penguinppc.org/ 3354L: linuxppc-dev@ozlabs.org 3355T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git 3356S: Maintained 3357F: arch/powerpc/platforms/40x/ 3358F: arch/powerpc/platforms/44x/ 3359 3360LINUX FOR POWERPC EMBEDDED XILINX VIRTEX 3361M: Grant Likely <grant.likely@secretlab.ca> 3362W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex 3363L: linuxppc-dev@ozlabs.org 3364T: git git://git.secretlab.ca/git/linux-2.6.git 3365S: Maintained 3366F: arch/powerpc/*/*virtex* 3367F: arch/powerpc/*/*/*virtex* 3368 3369LINUX FOR POWERPC EMBEDDED PPC8XX 3370M: Vitaly Bordug <vitb@kernel.crashing.org> 3371M: Marcelo Tosatti <marcelo@kvack.org> 3372W: http://www.penguinppc.org/ 3373L: linuxppc-dev@ozlabs.org 3374S: Maintained 3375 3376LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX 3377M: Kumar Gala <galak@kernel.crashing.org> 3378W: http://www.penguinppc.org/ 3379L: linuxppc-dev@ozlabs.org 3380S: Maintained 3381F: arch/powerpc/platforms/83xx/ 3382 3383LINUX FOR POWERPC PA SEMI PWRFICIENT 3384M: Olof Johansson <olof@lixom.net> 3385W: http://www.pasemi.com/ 3386L: linuxppc-dev@ozlabs.org 3387S: Supported 3388F: arch/powerpc/platforms/pasemi/ 3389F: drivers/*/*pasemi* 3390F: drivers/*/*/*pasemi* 3391 3392LINUX SECURITY MODULE (LSM) FRAMEWORK 3393M: Chris Wright <chrisw@sous-sol.org> 3394L: linux-security-module@vger.kernel.org 3395T: git git://git.kernel.org/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git 3396S: Supported 3397 3398LLC (802.2) 3399M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> 3400S: Maintained 3401F: include/linux/llc.h 3402F: include/net/llc* 3403F: net/llc/ 3404 3405LIS3LV02D ACCELEROMETER DRIVER 3406M: Eric Piel <eric.piel@tremplin-utc.net> 3407S: Maintained 3408F: Documentation/hwmon/lis3lv02d 3409F: drivers/hwmon/lis3lv02d.* 3410 3411LM73 HARDWARE MONITOR DRIVER 3412M: Guillaume Ligneul <guillaume.ligneul@gmail.com> 3413L: lm-sensors@lm-sensors.org 3414S: Maintained 3415F: drivers/hwmon/lm73.c 3416 3417LM83 HARDWARE MONITOR DRIVER 3418M: Jean Delvare <khali@linux-fr.org> 3419L: lm-sensors@lm-sensors.org 3420S: Maintained 3421F: Documentation/hwmon/lm83 3422F: drivers/hwmon/lm83.c 3423 3424LM90 HARDWARE MONITOR DRIVER 3425M: Jean Delvare <khali@linux-fr.org> 3426L: lm-sensors@lm-sensors.org 3427S: Maintained 3428F: Documentation/hwmon/lm90 3429F: drivers/hwmon/lm90.c 3430 3431LOCKDEP AND LOCKSTAT 3432M: Peter Zijlstra <peterz@infradead.org> 3433M: Ingo Molnar <mingo@redhat.com> 3434T: git git://git.kernel.org/pub/scm/linux/kernel/git/peterz/linux-2.6-lockdep.git 3435S: Maintained 3436F: Documentation/lockdep*.txt 3437F: Documentation/lockstat.txt 3438F: include/linux/lockdep.h 3439F: kernel/lockdep* 3440 3441LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks) 3442M: "Richard Russon (FlatCap)" <ldm@flatcap.org> 3443L: linux-ntfs-dev@lists.sourceforge.net 3444W: http://www.linux-ntfs.org/content/view/19/37/ 3445S: Maintained 3446F: Documentation/ldm.txt 3447F: fs/partitions/ldm.* 3448 3449LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI) 3450M: Eric Moore <Eric.Moore@lsi.com> 3451M: support@lsi.com 3452L: DL-MPTFusionLinux@lsi.com 3453L: linux-scsi@vger.kernel.org 3454W: http://www.lsilogic.com/support 3455S: Supported 3456F: drivers/message/fusion/ 3457 3458LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers 3459M: Matthew Wilcox <matthew@wil.cx> 3460L: linux-scsi@vger.kernel.org 3461S: Maintained 3462F: drivers/scsi/sym53c8xx_2/ 3463 3464LTP (Linux Test Project) 3465M: Rishikesh K Rajak <risrajak@linux.vnet.ibm.com> 3466M: Garrett Cooper <yanegomi@gmail.com> 3467M: Mike Frysinger <vapier@gentoo.org> 3468M: Subrata Modak <subrata@linux.vnet.ibm.com> 3469L: ltp-list@lists.sourceforge.net (subscribers-only) 3470W: http://ltp.sourceforge.net/ 3471T: git git://git.kernel.org/pub/scm/linux/kernel/git/galak/ltp.git 3472S: Maintained 3473 3474M32R ARCHITECTURE 3475M: Hirokazu Takata <takata@linux-m32r.org> 3476L: linux-m32r@ml.linux-m32r.org 3477L: linux-m32r-ja@ml.linux-m32r.org (in Japanese) 3478W: http://www.linux-m32r.org/ 3479S: Maintained 3480F: arch/m32r/ 3481 3482M68K ARCHITECTURE 3483M: Geert Uytterhoeven <geert@linux-m68k.org> 3484M: Roman Zippel <zippel@linux-m68k.org> 3485L: linux-m68k@lists.linux-m68k.org 3486W: http://www.linux-m68k.org/ 3487T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git 3488S: Maintained 3489F: arch/m68k/ 3490F: drivers/zorro/ 3491 3492M68K ON APPLE MACINTOSH 3493M: Joshua Thompson <funaho@jurai.org> 3494W: http://www.mac.linux-m68k.org/ 3495L: linux-m68k@lists.linux-m68k.org 3496S: Maintained 3497F: arch/m68k/mac/ 3498 3499M68K ON HP9000/300 3500M: Philip Blundell <philb@gnu.org> 3501W: http://www.tazenda.demon.co.uk/phil/linux-hp 3502S: Maintained 3503F: arch/m68k/hp300/ 3504 3505MAC80211 3506M: Johannes Berg <johannes@sipsolutions.net> 3507L: linux-wireless@vger.kernel.org 3508W: http://linuxwireless.org/ 3509T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git 3510S: Maintained 3511F: Documentation/networking/mac80211-injection.txt 3512F: include/net/mac80211.h 3513F: net/mac80211/ 3514 3515MAC80211 PID RATE CONTROL 3516M: Stefano Brivio <stefano.brivio@polimi.it> 3517M: Mattias Nissler <mattias.nissler@gmx.de> 3518L: linux-wireless@vger.kernel.org 3519W: http://linuxwireless.org/en/developers/Documentation/mac80211/RateControl/PID 3520T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git 3521S: Maintained 3522F: net/mac80211/rc80211_pid* 3523 3524MACVLAN DRIVER 3525M: Patrick McHardy <kaber@trash.net> 3526L: netdev@vger.kernel.org 3527S: Maintained 3528F: drivers/net/macvlan.c 3529F: include/linux/if_macvlan.h 3530 3531MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7 3532M: Michael Kerrisk <mtk.manpages@gmail.com> 3533W: http://www.kernel.org/doc/man-pages 3534L: linux-man@vger.kernel.org 3535S: Maintained 3536 3537MARVELL LIBERTAS WIRELESS DRIVER 3538M: Dan Williams <dcbw@redhat.com> 3539L: libertas-dev@lists.infradead.org 3540S: Maintained 3541F: drivers/net/wireless/libertas/ 3542 3543MARVELL MV643XX ETHERNET DRIVER 3544M: Lennert Buytenhek <buytenh@wantstofly.org> 3545L: netdev@vger.kernel.org 3546S: Maintained 3547F: drivers/net/mv643xx_eth.* 3548F: include/linux/mv643xx.h 3549 3550MARVELL MWL8K WIRELESS DRIVER 3551M: Lennert Buytenhek <buytenh@wantstofly.org> 3552L: linux-wireless@vger.kernel.org 3553S: Maintained 3554F: drivers/net/wireless/mwl8k.c 3555 3556MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER 3557M: Nicolas Pitre <nico@fluxnic.net> 3558S: Maintained 3559 3560MARVELL YUKON / SYSKONNECT DRIVER 3561M: Mirko Lindner <mlindner@syskonnect.de> 3562M: Ralph Roesler <rroesler@syskonnect.de> 3563W: http://www.syskonnect.com 3564S: Supported 3565 3566MATROX FRAMEBUFFER DRIVER 3567M: Petr Vandrovec <vandrove@vc.cvut.cz> 3568L: linux-fbdev@vger.kernel.org 3569S: Maintained 3570F: drivers/video/matrox/matroxfb_* 3571F: include/linux/matroxfb.h 3572 3573MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER 3574M: "Hans J. Koch" <hjk@linutronix.de> 3575L: lm-sensors@lm-sensors.org 3576S: Maintained 3577F: Documentation/hwmon/max6650 3578F: drivers/hwmon/max6650.c 3579 3580MEDIA INPUT INFRASTRUCTURE (V4L/DVB) 3581M: Mauro Carvalho Chehab <mchehab@infradead.org> 3582P: LinuxTV.org Project 3583L: linux-media@vger.kernel.org 3584W: http://linuxtv.org 3585T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git 3586S: Maintained 3587F: Documentation/dvb/ 3588F: Documentation/video4linux/ 3589F: drivers/media/ 3590F: include/media/ 3591F: include/linux/dvb/ 3592F: include/linux/videodev*.h 3593 3594MEGARAID SCSI DRIVERS 3595M: Neela Syam Kolli <megaraidlinux@lsi.com> 3596L: linux-scsi@vger.kernel.org 3597W: http://megaraid.lsilogic.com 3598S: Maintained 3599F: Documentation/scsi/megaraid.txt 3600F: drivers/scsi/megaraid.* 3601F: drivers/scsi/megaraid/ 3602 3603MEMORY MANAGEMENT 3604L: linux-mm@kvack.org 3605W: http://www.linux-mm.org 3606S: Maintained 3607F: include/linux/mm.h 3608F: mm/ 3609 3610MEMORY RESOURCE CONTROLLER 3611M: Balbir Singh <balbir@linux.vnet.ibm.com> 3612M: Pavel Emelyanov <xemul@openvz.org> 3613M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com> 3614L: linux-mm@kvack.org 3615S: Maintained 3616F: mm/memcontrol.c 3617 3618MEMORY TECHNOLOGY DEVICES (MTD) 3619M: David Woodhouse <dwmw2@infradead.org> 3620W: http://www.linux-mtd.infradead.org/ 3621L: linux-mtd@lists.infradead.org 3622T: git git://git.infradead.org/mtd-2.6.git 3623S: Maintained 3624F: drivers/mtd/ 3625F: include/linux/mtd/ 3626F: include/mtd/ 3627 3628MICROBLAZE ARCHITECTURE 3629M: Michal Simek <monstr@monstr.eu> 3630L: microblaze-uclinux@itee.uq.edu.au 3631W: http://www.monstr.eu/fdt/ 3632T: git git://git.monstr.eu/linux-2.6-microblaze.git 3633S: Supported 3634F: arch/microblaze/ 3635 3636MICROTEK X6 SCANNER 3637M: Oliver Neukum <oliver@neukum.name> 3638S: Maintained 3639F: drivers/usb/image/microtek.* 3640 3641MIPS 3642M: Ralf Baechle <ralf@linux-mips.org> 3643W: http://www.linux-mips.org/ 3644L: linux-mips@linux-mips.org 3645T: git git://git.linux-mips.org/pub/scm/linux.git 3646S: Supported 3647F: Documentation/mips/ 3648F: arch/mips/ 3649 3650MISCELLANEOUS MCA-SUPPORT 3651M: James Bottomley <James.Bottomley@HansenPartnership.com> 3652S: Maintained 3653F: Documentation/ia64/mca.txt 3654F: Documentation/mca.txt 3655F: drivers/mca/ 3656F: include/linux/mca* 3657 3658MODULE SUPPORT 3659M: Rusty Russell <rusty@rustcorp.com.au> 3660S: Maintained 3661F: include/linux/module.h 3662F: kernel/module.c 3663 3664MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER 3665M: Stelian Pop <stelian@popies.net> 3666W: http://popies.net/meye/ 3667S: Maintained 3668F: Documentation/video4linux/meye.txt 3669F: drivers/media/video/meye.* 3670F: include/linux/meye.h 3671 3672MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER 3673M: Pavel Pisa <ppisa@pikron.com> 3674L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 3675S: Maintained 3676F: drivers/mmc/host/imxmmc.* 3677 3678MOUSE AND MISC DEVICES [GENERAL] 3679M: Alessandro Rubini <rubini@ipvvis.unipv.it> 3680S: Maintained 3681F: drivers/input/mouse/ 3682F: include/linux/gpio_mouse.h 3683 3684MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD 3685M: Jiri Slaby <jirislaby@gmail.com> 3686S: Maintained 3687F: Documentation/serial/moxa-smartio 3688F: drivers/char/mxser.* 3689 3690MSI LAPTOP SUPPORT 3691M: Lennart Poettering <mzxreary@0pointer.de> 3692L: platform-driver-x86@vger.kernel.org 3693W: https://tango.0pointer.de/mailman/listinfo/s270-linux 3694W: http://0pointer.de/lennart/tchibo.html 3695S: Maintained 3696F: drivers/platform/x86/msi-laptop.c 3697 3698MSI WMI SUPPORT 3699M: Anisse Astier <anisse@astier.eu> 3700L: platform-driver-x86@vger.kernel.org 3701S: Supported 3702F: drivers/platform/x86/msi-wmi.c 3703 3704MULTIFUNCTION DEVICES (MFD) 3705M: Samuel Ortiz <sameo@linux.intel.com> 3706T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git 3707S: Supported 3708F: drivers/mfd/ 3709 3710MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM 3711S: Orphan 3712L: linux-mmc@vger.kernel.org 3713F: drivers/mmc/ 3714F: include/linux/mmc/ 3715 3716MULTIMEDIA CARD (MMC) ETC. OVER SPI 3717M: David Brownell <dbrownell@users.sourceforge.net> 3718S: Odd Fixes 3719F: drivers/mmc/host/mmc_spi.c 3720F: include/linux/spi/mmc_spi.h 3721 3722MULTISOUND SOUND DRIVER 3723M: Andrew Veliath <andrewtv@usa.net> 3724S: Maintained 3725F: Documentation/sound/oss/MultiSound 3726F: sound/oss/msnd* 3727 3728MULTITECH MULTIPORT CARD (ISICOM) 3729M: Jiri Slaby <jirislaby@gmail.com> 3730S: Maintained 3731F: drivers/char/isicom.c 3732F: include/linux/isicom.h 3733 3734MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER 3735M: Felipe Balbi <felipe.balbi@nokia.com> 3736L: linux-usb@vger.kernel.org 3737T: git git://gitorious.org/usb/usb.git 3738S: Maintained 3739F: drivers/usb/musb/ 3740 3741MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE) 3742M: Andrew Gallatin <gallatin@myri.com> 3743M: Brice Goglin <brice@myri.com> 3744L: netdev@vger.kernel.org 3745W: http://www.myri.com/scs/download-Myri10GE.html 3746S: Supported 3747F: drivers/net/myri10ge/ 3748 3749NATSEMI ETHERNET DRIVER (DP8381x) 3750M: Tim Hockin <thockin@hockin.org> 3751S: Maintained 3752F: drivers/net/natsemi.c 3753 3754NCP FILESYSTEM 3755M: Petr Vandrovec <vandrove@vc.cvut.cz> 3756S: Maintained 3757F: fs/ncpfs/ 3758 3759NCR DUAL 700 SCSI DRIVER (MICROCHANNEL) 3760M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> 3761L: linux-scsi@vger.kernel.org 3762S: Maintained 3763F: drivers/scsi/NCR_D700.* 3764 3765NETEFFECT IWARP RNIC DRIVER (IW_NES) 3766M: Faisal Latif <faisal.latif@intel.com> 3767M: Chien Tung <chien.tin.tung@intel.com> 3768L: linux-rdma@vger.kernel.org 3769W: http://www.neteffect.com 3770S: Supported 3771F: drivers/infiniband/hw/nes/ 3772 3773NETEM NETWORK EMULATOR 3774M: Stephen Hemminger <shemminger@linux-foundation.org> 3775L: netem@lists.linux-foundation.org 3776S: Maintained 3777F: net/sched/sch_netem.c 3778 3779NETERION (S2IO) 10GbE DRIVER (xframe/vxge) 3780M: Ramkrishna Vepa <ram.vepa@neterion.com> 3781M: Rastapur Santosh <santosh.rastapur@neterion.com> 3782M: Sivakumar Subramani <sivakumar.subramani@neterion.com> 3783M: Sreenivasa Honnur <sreenivasa.honnur@neterion.com> 3784M: Anil Murthy <anil.murthy@neterion.com> 3785L: netdev@vger.kernel.org 3786W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/Linux?Anonymous 3787W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/X3100Linux?Anonymous 3788S: Supported 3789F: Documentation/networking/s2io.txt 3790F: drivers/net/s2io* 3791 3792NETFILTER/IPTABLES/IPCHAINS 3793P: Rusty Russell 3794P: Marc Boucher 3795P: James Morris 3796P: Harald Welte 3797P: Jozsef Kadlecsik 3798M: Patrick McHardy <kaber@trash.net> 3799L: netfilter-devel@vger.kernel.org 3800L: netfilter@vger.kernel.org 3801L: coreteam@netfilter.org 3802W: http://www.netfilter.org/ 3803W: http://www.iptables.org/ 3804T: git git://git.kernel.org/pub/scm/linux/kernel/git/kaber/nf-2.6.git 3805S: Supported 3806F: include/linux/netfilter* 3807F: include/linux/netfilter/ 3808F: include/net/netfilter/ 3809F: net/*/netfilter.c 3810F: net/*/netfilter/ 3811F: net/netfilter/ 3812 3813NETLABEL 3814M: Paul Moore <paul.moore@hp.com> 3815W: http://netlabel.sf.net 3816L: netdev@vger.kernel.org 3817S: Supported 3818F: Documentation/netlabel/ 3819F: include/net/netlabel.h 3820F: net/netlabel/ 3821 3822NETROM NETWORK LAYER 3823M: Ralf Baechle <ralf@linux-mips.org> 3824L: linux-hams@vger.kernel.org 3825W: http://www.linux-ax25.org/ 3826S: Maintained 3827F: include/linux/netrom.h 3828F: include/net/netrom.h 3829F: net/netrom/ 3830 3831NETWORK BLOCK DEVICE (NBD) 3832M: Paul Clements <Paul.Clements@steeleye.com> 3833S: Maintained 3834F: Documentation/blockdev/nbd.txt 3835F: drivers/block/nbd.c 3836F: include/linux/nbd.h 3837 3838NETWORK DROP MONITOR 3839M: Neil Horman <nhorman@tuxdriver.com> 3840L: netdev@vger.kernel.org 3841S: Maintained 3842W: https://fedorahosted.org/dropwatch/ 3843F: net/core/drop_monitor.c 3844 3845NETWORKING [GENERAL] 3846M: "David S. Miller" <davem@davemloft.net> 3847L: netdev@vger.kernel.org 3848W: http://www.linuxfoundation.org/en/Net 3849W: http://patchwork.ozlabs.org/project/netdev/list/ 3850T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git 3851T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next-2.6.git 3852S: Maintained 3853F: net/ 3854F: include/net/ 3855F: include/linux/in.h 3856F: include/linux/net.h 3857F: include/linux/netdevice.h 3858 3859NETWORKING [IPv4/IPv6] 3860M: "David S. Miller" <davem@davemloft.net> 3861M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru> 3862M: "Pekka Savola (ipv6)" <pekkas@netcore.fi> 3863M: James Morris <jmorris@namei.org> 3864M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org> 3865M: Patrick McHardy <kaber@trash.net> 3866L: netdev@vger.kernel.org 3867T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git 3868S: Maintained 3869F: net/ipv4/ 3870F: net/ipv6/ 3871F: include/net/ip* 3872 3873NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK) 3874M: Paul Moore <paul.moore@hp.com> 3875L: netdev@vger.kernel.org 3876S: Maintained 3877 3878NETWORKING [WIRELESS] 3879M: "John W. Linville" <linville@tuxdriver.com> 3880L: linux-wireless@vger.kernel.org 3881T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git 3882S: Maintained 3883F: net/mac80211/ 3884F: net/rfkill/ 3885F: net/wireless/ 3886F: include/net/ieee80211* 3887F: include/linux/wireless.h 3888F: drivers/net/wireless/ 3889 3890NETWORKING DRIVERS 3891L: netdev@vger.kernel.org 3892W: http://www.linuxfoundation.org/en/Net 3893T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git 3894T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next-2.6.git 3895S: Odd Fixes 3896F: drivers/net/ 3897F: include/linux/if_* 3898F: include/linux/*device.h 3899 3900NETXEN (1/10) GbE SUPPORT 3901M: Amit Kumar Salecha <amit.salecha@qlogic.com> 3902L: netdev@vger.kernel.org 3903W: http://www.qlogic.com 3904S: Supported 3905F: drivers/net/netxen/ 3906 3907NFS, SUNRPC, AND LOCKD CLIENTS 3908M: Trond Myklebust <Trond.Myklebust@netapp.com> 3909L: linux-nfs@vger.kernel.org 3910W: http://client.linux-nfs.org 3911T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git 3912S: Maintained 3913F: fs/lockd/ 3914F: fs/nfs/ 3915F: fs/nfs_common/ 3916F: net/sunrpc/ 3917F: include/linux/lockd/ 3918F: include/linux/nfs* 3919F: include/linux/sunrpc/ 3920 3921NI5010 NETWORK DRIVER 3922M: Jan-Pascal van Best <janpascal@vanbest.org> 3923M: Andreas Mohr <andi@lisas.de> 3924L: netdev@vger.kernel.org 3925S: Maintained 3926F: drivers/net/ni5010.* 3927 3928NILFS2 FILESYSTEM 3929M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp> 3930L: linux-nilfs@vger.kernel.org 3931W: http://www.nilfs.org/en/ 3932S: Supported 3933F: Documentation/filesystems/nilfs2.txt 3934F: fs/nilfs2/ 3935F: include/linux/nilfs2_fs.h 3936 3937NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER 3938M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp> 3939W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ 3940S: Maintained 3941F: Documentation/scsi/NinjaSCSI.txt 3942F: drivers/scsi/pcmcia/nsp_* 3943 3944NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER 3945M: GOTO Masanori <gotom@debian.or.jp> 3946M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp> 3947W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ 3948S: Maintained 3949F: Documentation/scsi/NinjaSCSI.txt 3950F: drivers/scsi/nsp32* 3951 3952NTFS FILESYSTEM 3953M: Anton Altaparmakov <aia21@cantab.net> 3954L: linux-ntfs-dev@lists.sourceforge.net 3955W: http://www.linux-ntfs.org/ 3956T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git 3957S: Maintained 3958F: Documentation/filesystems/ntfs.txt 3959F: fs/ntfs/ 3960 3961NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER 3962M: Antonino Daplas <adaplas@gmail.com> 3963L: linux-fbdev@vger.kernel.org 3964S: Maintained 3965F: drivers/video/riva/ 3966F: drivers/video/nvidia/ 3967 3968OMAP SUPPORT 3969M: Tony Lindgren <tony@atomide.com> 3970L: linux-omap@vger.kernel.org 3971W: http://www.muru.com/linux/omap/ 3972W: http://linux.omap.com/ 3973T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git 3974S: Maintained 3975F: arch/arm/*omap*/ 3976 3977OMAP CLOCK FRAMEWORK SUPPORT 3978M: Paul Walmsley <paul@pwsan.com> 3979L: linux-omap@vger.kernel.org 3980S: Maintained 3981F: arch/arm/*omap*/*clock* 3982 3983OMAP POWER MANAGEMENT SUPPORT 3984M: Kevin Hilman <khilman@deeprootsystems.com> 3985L: linux-omap@vger.kernel.org 3986S: Maintained 3987F: arch/arm/*omap*/*pm* 3988 3989OMAP AUDIO SUPPORT 3990M: Jarkko Nikula <jhnikula@gmail.com> 3991L: alsa-devel@alsa-project.org (subscribers-only) 3992L: linux-omap@vger.kernel.org 3993S: Maintained 3994F: sound/soc/omap/ 3995 3996OMAP FRAMEBUFFER SUPPORT 3997M: Tomi Valkeinen <tomi.valkeinen@nokia.com> 3998L: linux-fbdev@vger.kernel.org 3999L: linux-omap@vger.kernel.org 4000S: Maintained 4001F: drivers/video/omap/ 4002 4003OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2) 4004M: Tomi Valkeinen <tomi.valkeinen@nokia.com> 4005L: linux-omap@vger.kernel.org 4006L: linux-fbdev@vger.kernel.org 4007S: Maintained 4008F: drivers/video/omap2/ 4009F: Documentation/arm/OMAP/DSS 4010 4011OMAP MMC SUPPORT 4012M: Jarkko Lavinen <jarkko.lavinen@nokia.com> 4013L: linux-omap@vger.kernel.org 4014S: Maintained 4015F: drivers/mmc/host/omap.c 4016 4017OMAP HS MMC SUPPORT 4018M: Madhusudhan Chikkature <madhu.cr@ti.com> 4019L: linux-omap@vger.kernel.org 4020S: Maintained 4021F: drivers/mmc/host/omap_hsmmc.c 4022 4023OMAP RANDOM NUMBER GENERATOR SUPPORT 4024M: Deepak Saxena <dsaxena@plexity.net> 4025S: Maintained 4026F: drivers/char/hw_random/omap-rng.c 4027 4028OMAP USB SUPPORT 4029M: Felipe Balbi <felipe.balbi@nokia.com> 4030M: David Brownell <dbrownell@users.sourceforge.net> 4031L: linux-usb@vger.kernel.org 4032L: linux-omap@vger.kernel.org 4033S: Maintained 4034 4035OMFS FILESYSTEM 4036M: Bob Copeland <me@bobcopeland.com> 4037L: linux-karma-devel@lists.sourceforge.net 4038S: Maintained 4039F: Documentation/filesystems/omfs.txt 4040F: fs/omfs/ 4041 4042OMNIKEY CARDMAN 4000 DRIVER 4043M: Harald Welte <laforge@gnumonks.org> 4044S: Maintained 4045F: drivers/char/pcmcia/cm4000_cs.c 4046F: include/linux/cm4000_cs.h 4047 4048OMNIKEY CARDMAN 4040 DRIVER 4049M: Harald Welte <laforge@gnumonks.org> 4050S: Maintained 4051F: drivers/char/pcmcia/cm4040_cs.* 4052 4053OMNIVISION OV7670 SENSOR DRIVER 4054M: Jonathan Corbet <corbet@lwn.net> 4055L: linux-media@vger.kernel.org 4056T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git 4057S: Maintained 4058F: drivers/media/video/ov7670.c 4059 4060ONENAND FLASH DRIVER 4061M: Kyungmin Park <kyungmin.park@samsung.com> 4062L: linux-mtd@lists.infradead.org 4063S: Maintained 4064F: drivers/mtd/onenand/ 4065F: include/linux/mtd/onenand*.h 4066 4067ONSTREAM SCSI TAPE DRIVER 4068M: Willem Riede <osst@riede.org> 4069L: osst-users@lists.sourceforge.net 4070L: linux-scsi@vger.kernel.org 4071S: Maintained 4072F: drivers/scsi/osst* 4073F: drivers/scsi/st* 4074 4075OPENCORES I2C BUS DRIVER 4076M: Peter Korsgaard <jacmet@sunsite.dk> 4077L: linux-i2c@vger.kernel.org 4078S: Maintained 4079F: Documentation/i2c/busses/i2c-ocores 4080F: drivers/i2c/busses/i2c-ocores.c 4081 4082OPEN FIRMWARE AND FLATTENED DEVICE TREE 4083M: Grant Likely <grant.likely@secretlab.ca> 4084L: devicetree-discuss@lists.ozlabs.org 4085W: http://fdt.secretlab.ca 4086S: Maintained 4087F: drivers/of 4088F: include/linux/of*.h 4089K: of_get_property 4090 4091OPROFILE 4092M: Robert Richter <robert.richter@amd.com> 4093L: oprofile-list@lists.sf.net 4094S: Maintained 4095F: arch/*/oprofile/ 4096F: drivers/oprofile/ 4097F: include/linux/oprofile.h 4098 4099ORACLE CLUSTER FILESYSTEM 2 (OCFS2) 4100M: Mark Fasheh <mfasheh@suse.com> 4101M: Joel Becker <joel.becker@oracle.com> 4102L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers) 4103W: http://oss.oracle.com/projects/ocfs2/ 4104T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git 4105S: Supported 4106F: Documentation/filesystems/ocfs2.txt 4107F: Documentation/filesystems/dlmfs.txt 4108F: fs/ocfs2/ 4109 4110ORINOCO DRIVER 4111M: Pavel Roskin <proski@gnu.org> 4112M: David Gibson <hermes@gibson.dropbear.id.au> 4113L: linux-wireless@vger.kernel.org 4114L: orinoco-users@lists.sourceforge.net 4115L: orinoco-devel@lists.sourceforge.net 4116W: http://www.nongnu.org/orinoco/ 4117S: Maintained 4118F: drivers/net/wireless/orinoco/ 4119 4120OSD LIBRARY and FILESYSTEM 4121M: Boaz Harrosh <bharrosh@panasas.com> 4122M: Benny Halevy <bhalevy@panasas.com> 4123L: osd-dev@open-osd.org 4124W: http://open-osd.org 4125T: git git://git.open-osd.org/open-osd.git 4126S: Maintained 4127F: drivers/scsi/osd/ 4128F: include/scsi/osd_* 4129F: fs/exofs/ 4130 4131P54 WIRELESS DRIVER 4132M: Michael Wu <flamingice@sourmilk.net> 4133L: linux-wireless@vger.kernel.org 4134W: http://prism54.org 4135T: git git://git.kernel.org/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git 4136S: Maintained 4137F: drivers/net/wireless/p54/ 4138 4139PA SEMI ETHERNET DRIVER 4140M: Olof Johansson <olof@lixom.net> 4141L: netdev@vger.kernel.org 4142S: Maintained 4143F: drivers/net/pasemi_mac.* 4144 4145PA SEMI SMBUS DRIVER 4146M: Olof Johansson <olof@lixom.net> 4147L: linux-i2c@vger.kernel.org 4148S: Maintained 4149F: drivers/i2c/busses/i2c-pasemi.c 4150 4151PANASONIC LAPTOP ACPI EXTRAS DRIVER 4152M: Harald Welte <laforge@gnumonks.org> 4153L: platform-driver-x86@vger.kernel.org 4154S: Maintained 4155F: drivers/platform/x86/panasonic-laptop.c 4156 4157PANASONIC MN10300/AM33 PORT 4158M: David Howells <dhowells@redhat.com> 4159M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com> 4160L: linux-am33-list@redhat.com (moderated for non-subscribers) 4161W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/ 4162S: Maintained 4163F: Documentation/mn10300/ 4164F: arch/mn10300/ 4165 4166PARALLEL PORT SUPPORT 4167L: linux-parport@lists.infradead.org (subscribers-only) 4168S: Orphan 4169F: drivers/parport/ 4170F: include/linux/parport*.h 4171F: drivers/char/ppdev.c 4172F: include/linux/ppdev.h 4173 4174PARAVIRT_OPS INTERFACE 4175M: Jeremy Fitzhardinge <jeremy@xensource.com> 4176M: Chris Wright <chrisw@sous-sol.org> 4177M: Alok Kataria <akataria@vmware.com> 4178M: Rusty Russell <rusty@rustcorp.com.au> 4179L: virtualization@lists.osdl.org 4180S: Supported 4181F: Documentation/ia64/paravirt_ops.txt 4182F: arch/*/kernel/paravirt* 4183F: arch/*/include/asm/paravirt.h 4184 4185PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES 4186M: Tim Waugh <tim@cyberelk.net> 4187L: linux-parport@lists.infradead.org (subscribers-only) 4188W: http://www.torque.net/linux-pp.html 4189S: Maintained 4190F: Documentation/blockdev/paride.txt 4191F: drivers/block/paride/ 4192 4193PARISC ARCHITECTURE 4194M: Kyle McMartin <kyle@mcmartin.ca> 4195M: Helge Deller <deller@gmx.de> 4196M: "James E.J. Bottomley" <jejb@parisc-linux.org> 4197L: linux-parisc@vger.kernel.org 4198W: http://www.parisc-linux.org/ 4199T: git git://git.kernel.org/pub/scm/linux/kernel/git/kyle/parisc-2.6.git 4200S: Maintained 4201F: arch/parisc/ 4202F: drivers/parisc/ 4203 4204PC87360 HARDWARE MONITORING DRIVER 4205M: Jim Cromie <jim.cromie@gmail.com> 4206L: lm-sensors@lm-sensors.org 4207S: Maintained 4208F: Documentation/hwmon/pc87360 4209F: drivers/hwmon/pc87360.c 4210 4211PC8736x GPIO DRIVER 4212M: Jim Cromie <jim.cromie@gmail.com> 4213S: Maintained 4214F: drivers/char/pc8736x_gpio.c 4215 4216PCA9532 LED DRIVER 4217M: Riku Voipio <riku.voipio@iki.fi> 4218S: Maintained 4219F: drivers/leds/leds-pca9532.c 4220F: include/linux/leds-pca9532.h 4221 4222PCA9564/PCA9665 I2C BUS DRIVER 4223M: Wolfram Sang <w.sang@pengutronix.de> 4224L: linux-i2c@vger.kernel.org 4225S: Maintained 4226F: drivers/i2c/algos/i2c-algo-pca.c 4227F: drivers/i2c/busses/i2c-pca-* 4228F: include/linux/i2c-algo-pca.h 4229F: include/linux/i2c-pca-platform.h 4230 4231PCI ERROR RECOVERY 4232M: Linas Vepstas <linas@austin.ibm.com> 4233L: linux-pci@vger.kernel.org 4234S: Supported 4235F: Documentation/PCI/pci-error-recovery.txt 4236F: Documentation/powerpc/eeh-pci-error-recovery.txt 4237 4238PCI SUBSYSTEM 4239M: Jesse Barnes <jbarnes@virtuousgeek.org> 4240L: linux-pci@vger.kernel.org 4241T: git git://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6.git 4242S: Supported 4243F: Documentation/PCI/ 4244F: drivers/pci/ 4245F: include/linux/pci* 4246 4247PCI HOTPLUG 4248M: Jesse Barnes <jbarnes@virtuousgeek.org> 4249L: linux-pci@vger.kernel.org 4250S: Supported 4251F: drivers/pci/hotplug 4252 4253PCMCIA SUBSYSTEM 4254P: Linux PCMCIA Team 4255L: linux-pcmcia@lists.infradead.org 4256W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia 4257T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git 4258S: Maintained 4259F: Documentation/pcmcia/ 4260F: drivers/pcmcia/ 4261F: include/pcmcia/ 4262 4263PCNET32 NETWORK DRIVER 4264M: Don Fry <pcnet32@verizon.net> 4265L: netdev@vger.kernel.org 4266S: Maintained 4267F: drivers/net/pcnet32.c 4268 4269PER-TASK DELAY ACCOUNTING 4270M: Balbir Singh <balbir@linux.vnet.ibm.com> 4271S: Maintained 4272F: include/linux/delayacct.h 4273F: kernel/delayacct.c 4274 4275PERFORMANCE EVENTS SUBSYSTEM 4276M: Peter Zijlstra <a.p.zijlstra@chello.nl> 4277M: Paul Mackerras <paulus@samba.org> 4278M: Ingo Molnar <mingo@elte.hu> 4279S: Supported 4280F: kernel/perf_event.c 4281F: include/linux/perf_event.h 4282F: arch/*/*/kernel/perf_event.c 4283F: arch/*/include/asm/perf_event.h 4284F: arch/*/lib/perf_event.c 4285F: arch/*/kernel/perf_callchain.c 4286F: tools/perf/ 4287 4288PERSONALITY HANDLING 4289M: Christoph Hellwig <hch@infradead.org> 4290L: linux-abi-devel@lists.sourceforge.net 4291S: Maintained 4292F: include/linux/personality.h 4293 4294PHRAM MTD DRIVER 4295M: Joern Engel <joern@lazybastard.org> 4296L: linux-mtd@lists.infradead.org 4297S: Maintained 4298F: drivers/mtd/devices/phram.c 4299 4300PKTCDVD DRIVER 4301M: Peter Osterlund <petero2@telia.com> 4302S: Maintained 4303F: drivers/block/pktcdvd.c 4304F: include/linux/pktcdvd.h 4305 4306PMC SIERRA MaxRAID DRIVER 4307M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com> 4308L: linux-scsi@vger.kernel.org 4309W: http://www.pmc-sierra.com/ 4310S: Supported 4311F: drivers/scsi/pmcraid.* 4312 4313PMC SIERRA PM8001 DRIVER 4314M: jack_wang@usish.com 4315M: lindar_liu@usish.com 4316L: linux-scsi@vger.kernel.org 4317S: Supported 4318F: drivers/scsi/pm8001/ 4319 4320POSIX CLOCKS and TIMERS 4321M: Thomas Gleixner <tglx@linutronix.de> 4322S: Supported 4323F: fs/timerfd.c 4324F: include/linux/timer* 4325F: kernel/*timer* 4326 4327POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS 4328M: Anton Vorontsov <cbou@mail.ru> 4329M: David Woodhouse <dwmw2@infradead.org> 4330T: git git://git.infradead.org/battery-2.6.git 4331S: Maintained 4332F: include/linux/power_supply.h 4333F: drivers/power/power_supply* 4334 4335PNP SUPPORT 4336M: Adam Belay <abelay@mit.edu> 4337M: Bjorn Helgaas <bjorn.helgaas@hp.com> 4338S: Maintained 4339F: drivers/pnp/ 4340 4341PNXxxxx I2C DRIVER 4342M: Vitaly Wool <vitalywool@gmail.com> 4343L: linux-i2c@vger.kernel.org 4344S: Maintained 4345F: drivers/i2c/busses/i2c-pnx.c 4346 4347PPP PROTOCOL DRIVERS AND COMPRESSORS 4348M: Paul Mackerras <paulus@samba.org> 4349L: linux-ppp@vger.kernel.org 4350S: Maintained 4351F: drivers/net/ppp_* 4352 4353PPP OVER ATM (RFC 2364) 4354M: Mitchell Blank Jr <mitch@sfgoth.com> 4355S: Maintained 4356F: net/atm/pppoatm.c 4357F: include/linux/atmppp.h 4358 4359PPP OVER ETHERNET 4360M: Michal Ostrowski <mostrows@earthlink.net> 4361S: Maintained 4362F: drivers/net/pppoe.c 4363F: drivers/net/pppox.c 4364 4365PPP OVER L2TP 4366M: James Chapman <jchapman@katalix.com> 4367S: Maintained 4368F: drivers/net/pppol2tp.c 4369F: include/linux/if_pppol2tp.h 4370 4371PPS SUPPORT 4372M: Rodolfo Giometti <giometti@enneenne.com> 4373W: http://wiki.enneenne.com/index.php/LinuxPPS_support 4374L: linuxpps@ml.enneenne.com (subscribers-only) 4375S: Maintained 4376F: Documentation/pps/ 4377F: drivers/pps/ 4378F: include/linux/pps*.h 4379 4380PREEMPTIBLE KERNEL 4381M: Robert Love <rml@tech9.net> 4382L: kpreempt-tech@lists.sourceforge.net 4383W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel 4384S: Supported 4385F: Documentation/preempt-locking.txt 4386F: include/linux/preempt.h 4387 4388PRISM54 WIRELESS DRIVER 4389M: "Luis R. Rodriguez" <mcgrof@gmail.com> 4390L: linux-wireless@vger.kernel.org 4391W: http://prism54.org 4392S: Maintained 4393F: drivers/net/wireless/prism54/ 4394 4395PROMISE DC4030 CACHING DISK CONTROLLER DRIVER 4396M: Peter Denison <promise@pnd-pc.demon.co.uk> 4397W: http://www.pnd-pc.demon.co.uk/promise/ 4398S: Maintained 4399 4400PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER 4401M: Mikael Pettersson <mikpe@it.uu.se> 4402L: linux-ide@vger.kernel.org 4403S: Maintained 4404F: drivers/ata/sata_promise.* 4405 4406PS3 NETWORK SUPPORT 4407M: Geoff Levand <geoffrey.levand@am.sony.com> 4408L: netdev@vger.kernel.org 4409L: cbe-oss-dev@ozlabs.org 4410S: Supported 4411F: drivers/net/ps3_gelic_net.* 4412 4413PS3 PLATFORM SUPPORT 4414M: Geoff Levand <geoffrey.levand@am.sony.com> 4415L: linuxppc-dev@ozlabs.org 4416L: cbe-oss-dev@ozlabs.org 4417S: Supported 4418F: arch/powerpc/boot/ps3* 4419F: arch/powerpc/include/asm/lv1call.h 4420F: arch/powerpc/include/asm/ps3*.h 4421F: arch/powerpc/platforms/ps3/ 4422F: drivers/*/ps3* 4423F: drivers/ps3/ 4424F: drivers/rtc/rtc-ps3.c 4425F: drivers/usb/host/*ps3.c 4426F: sound/ppc/snd_ps3* 4427 4428PS3VRAM DRIVER 4429M: Jim Paris <jim@jtan.com> 4430L: cbe-oss-dev@ozlabs.org 4431S: Maintained 4432 4433PTRACE SUPPORT 4434M: Roland McGrath <roland@redhat.com> 4435M: Oleg Nesterov <oleg@redhat.com> 4436S: Maintained 4437F: include/asm-generic/syscall.h 4438F: include/linux/ptrace.h 4439F: include/linux/regset.h 4440F: include/linux/tracehook.h 4441F: kernel/ptrace.c 4442 4443PVRUSB2 VIDEO4LINUX DRIVER 4444M: Mike Isely <isely@pobox.com> 4445L: pvrusb2@isely.net (subscribers-only) 4446L: linux-media@vger.kernel.org 4447W: http://www.isely.net/pvrusb2/ 4448T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git 4449S: Maintained 4450F: Documentation/video4linux/README.pvrusb2 4451F: drivers/media/video/pvrusb2/ 4452 4453PXA2xx/PXA3xx SUPPORT 4454M: Eric Miao <eric.y.miao@gmail.com> 4455M: Russell King <linux@arm.linux.org.uk> 4456L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 4457S: Maintained 4458F: arch/arm/mach-pxa/ 4459F: drivers/pcmcia/pxa2xx* 4460F: drivers/spi/pxa2xx* 4461F: drivers/usb/gadget/pxa2* 4462F: include/sound/pxa2xx-lib.h 4463F: sound/arm/pxa* 4464F: sound/soc/pxa 4465 4466PXA168 SUPPORT 4467M: Eric Miao <eric.y.miao@gmail.com> 4468M: Jason Chagas <jason.chagas@marvell.com> 4469L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 4470T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git 4471S: Maintained 4472 4473PXA910 SUPPORT 4474M: Eric Miao <eric.y.miao@gmail.com> 4475L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 4476T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git 4477S: Maintained 4478 4479PXA MMCI DRIVER 4480S: Orphan 4481 4482PXA RTC DRIVER 4483M: Robert Jarzmik <robert.jarzmik@free.fr> 4484L: rtc-linux@googlegroups.com 4485S: Maintained 4486 4487QLOGIC QLA2XXX FC-SCSI DRIVER 4488M: Andrew Vasquez <andrew.vasquez@qlogic.com> 4489M: linux-driver@qlogic.com 4490L: linux-scsi@vger.kernel.org 4491S: Supported 4492F: Documentation/scsi/LICENSE.qla2xxx 4493F: drivers/scsi/qla2xxx/ 4494 4495QLOGIC QLA3XXX NETWORK DRIVER 4496M: Ron Mercer <ron.mercer@qlogic.com> 4497M: linux-driver@qlogic.com 4498L: netdev@vger.kernel.org 4499S: Supported 4500F: Documentation/networking/LICENSE.qla3xxx 4501F: drivers/net/qla3xxx.* 4502 4503QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER 4504M: Amit Kumar Salecha <amit.salecha@qlogic.com> 4505M: linux-driver@qlogic.com 4506L: netdev@vger.kernel.org 4507S: Supported 4508F: drivers/net/qlcnic/ 4509 4510QLOGIC QLGE 10Gb ETHERNET DRIVER 4511M: Ron Mercer <ron.mercer@qlogic.com> 4512M: linux-driver@qlogic.com 4513L: netdev@vger.kernel.org 4514S: Supported 4515F: drivers/net/qlge/ 4516 4517QNX4 FILESYSTEM 4518M: Anders Larsen <al@alarsen.net> 4519W: http://www.alarsen.net/linux/qnx4fs/ 4520S: Maintained 4521F: fs/qnx4/ 4522F: include/linux/qnx4_fs.h 4523F: include/linux/qnxtypes.h 4524 4525RADEON FRAMEBUFFER DISPLAY DRIVER 4526M: Benjamin Herrenschmidt <benh@kernel.crashing.org> 4527L: linux-fbdev@vger.kernel.org 4528S: Maintained 4529F: drivers/video/aty/radeon* 4530F: include/linux/radeonfb.h 4531 4532RAGE128 FRAMEBUFFER DISPLAY DRIVER 4533M: Paul Mackerras <paulus@samba.org> 4534L: linux-fbdev@vger.kernel.org 4535S: Maintained 4536F: drivers/video/aty/aty128fb.c 4537 4538RALINK RT2X00 WIRELESS LAN DRIVER 4539P: rt2x00 project 4540M: Ivo van Doorn <IvDoorn@gmail.com> 4541M: Gertjan van Wingerde <gwingerde@gmail.com> 4542L: linux-wireless@vger.kernel.org 4543L: users@rt2x00.serialmonkey.com (moderated for non-subscribers) 4544W: http://rt2x00.serialmonkey.com/ 4545S: Maintained 4546T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git 4547F: drivers/net/wireless/rt2x00/ 4548 4549RAMDISK RAM BLOCK DEVICE DRIVER 4550M: Nick Piggin <npiggin@suse.de> 4551S: Maintained 4552F: Documentation/blockdev/ramdisk.txt 4553F: drivers/block/brd.c 4554 4555RANDOM NUMBER DRIVER 4556M: Matt Mackall <mpm@selenic.com> 4557S: Maintained 4558F: drivers/char/random.c 4559 4560RAPIDIO SUBSYSTEM 4561M: Matt Porter <mporter@kernel.crashing.org> 4562S: Maintained 4563F: drivers/rapidio/ 4564 4565RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER 4566M: Corey Thomas <coreythomas@charter.net> 4567L: linux-wireless@vger.kernel.org 4568S: Maintained 4569F: drivers/net/wireless/ray* 4570 4571RCUTORTURE MODULE 4572M: Josh Triplett <josh@freedesktop.org> 4573M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> 4574S: Supported 4575F: Documentation/RCU/torture.txt 4576F: kernel/rcutorture.c 4577 4578RDC R-321X SoC 4579M: Florian Fainelli <florian@openwrt.org> 4580S: Maintained 4581 4582RDC R6040 FAST ETHERNET DRIVER 4583M: Florian Fainelli <florian@openwrt.org> 4584L: netdev@vger.kernel.org 4585S: Maintained 4586F: drivers/net/r6040.c 4587 4588RDS - RELIABLE DATAGRAM SOCKETS 4589M: Andy Grover <andy.grover@oracle.com> 4590L: rds-devel@oss.oracle.com (moderated for non-subscribers) 4591S: Supported 4592F: net/rds/ 4593 4594READ-COPY UPDATE (RCU) 4595M: Dipankar Sarma <dipankar@in.ibm.com> 4596M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> 4597W: http://www.rdrop.com/users/paulmck/rclock/ 4598S: Supported 4599F: Documentation/RCU/ 4600F: include/linux/rcu* 4601F: include/linux/srcu* 4602F: kernel/rcu* 4603F: kernel/srcu* 4604X: kernel/rcutorture.c 4605 4606REAL TIME CLOCK DRIVER 4607M: Paul Gortmaker <p_gortmaker@yahoo.com> 4608S: Maintained 4609F: Documentation/rtc.txt 4610F: drivers/rtc/ 4611F: include/linux/rtc.h 4612 4613REAL TIME CLOCK (RTC) SUBSYSTEM 4614M: Alessandro Zummo <a.zummo@towertech.it> 4615L: rtc-linux@googlegroups.com 4616S: Maintained 4617F: Documentation/rtc.txt 4618F: drivers/rtc/ 4619F: include/linux/rtc.h 4620 4621REISERFS FILE SYSTEM 4622L: reiserfs-devel@vger.kernel.org 4623S: Supported 4624F: fs/reiserfs/ 4625 4626RFKILL 4627M: Johannes Berg <johannes@sipsolutions.net> 4628L: linux-wireless@vger.kernel.org 4629S: Maintained 4630F: Documentation/rfkill.txt 4631F: net/rfkill/ 4632 4633RISCOM8 DRIVER 4634S: Orphan 4635F: Documentation/serial/riscom8.txt 4636F: drivers/char/riscom8* 4637 4638ROCKETPORT DRIVER 4639P: Comtrol Corp. 4640W: http://www.comtrol.com 4641S: Maintained 4642F: Documentation/serial/rocket.txt 4643F: drivers/char/rocket* 4644 4645ROSE NETWORK LAYER 4646M: Ralf Baechle <ralf@linux-mips.org> 4647L: linux-hams@vger.kernel.org 4648W: http://www.linux-ax25.org/ 4649S: Maintained 4650F: include/linux/rose.h 4651F: include/net/rose.h 4652F: net/rose/ 4653 4654RTL8180 WIRELESS DRIVER 4655M: "John W. Linville" <linville@tuxdriver.com> 4656L: linux-wireless@vger.kernel.org 4657W: http://linuxwireless.org/ 4658T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git 4659S: Maintained 4660F: drivers/net/wireless/rtl818x/rtl8180* 4661 4662RTL8187 WIRELESS DRIVER 4663M: Herton Ronaldo Krzesinski <herton@mandriva.com.br> 4664M: Hin-Tak Leung <htl10@users.sourceforge.net> 4665M: Larry Finger <Larry.Finger@lwfinger.net> 4666L: linux-wireless@vger.kernel.org 4667W: http://linuxwireless.org/ 4668T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git 4669S: Maintained 4670F: drivers/net/wireless/rtl818x/rtl8187* 4671 4672S3 SAVAGE FRAMEBUFFER DRIVER 4673M: Antonino Daplas <adaplas@gmail.com> 4674L: linux-fbdev@vger.kernel.org 4675S: Maintained 4676F: drivers/video/savage/ 4677 4678S390 4679M: Martin Schwidefsky <schwidefsky@de.ibm.com> 4680M: Heiko Carstens <heiko.carstens@de.ibm.com> 4681M: linux390@de.ibm.com 4682L: linux-s390@vger.kernel.org 4683W: http://www.ibm.com/developerworks/linux/linux390/ 4684S: Supported 4685F: arch/s390/ 4686F: drivers/s390/ 4687 4688S390 NETWORK DRIVERS 4689M: Ursula Braun <ursula.braun@de.ibm.com> 4690M: Frank Blaschka <blaschka@linux.vnet.ibm.com> 4691M: linux390@de.ibm.com 4692L: linux-s390@vger.kernel.org 4693W: http://www.ibm.com/developerworks/linux/linux390/ 4694S: Supported 4695F: drivers/s390/net/ 4696 4697S390 ZCRYPT DRIVER 4698M: Felix Beck <felix.beck@de.ibm.com> 4699M: Ralph Wuerthner <ralph.wuerthner@de.ibm.com> 4700M: linux390@de.ibm.com 4701L: linux-s390@vger.kernel.org 4702W: http://www.ibm.com/developerworks/linux/linux390/ 4703S: Supported 4704F: drivers/s390/crypto/ 4705 4706S390 ZFCP DRIVER 4707M: Christof Schmitt <christof.schmitt@de.ibm.com> 4708M: Martin Peschke <mp3@de.ibm.com> 4709M: linux390@de.ibm.com 4710L: linux-s390@vger.kernel.org 4711W: http://www.ibm.com/developerworks/linux/linux390/ 4712S: Supported 4713F: Documentation/s390/zfcpdump.txt 4714F: drivers/s390/scsi/zfcp_* 4715 4716S390 IUCV NETWORK LAYER 4717M: Ursula Braun <ursula.braun@de.ibm.com> 4718M: linux390@de.ibm.com 4719L: linux-s390@vger.kernel.org 4720W: http://www.ibm.com/developerworks/linux/linux390/ 4721S: Supported 4722F: drivers/s390/net/*iucv* 4723F: include/net/iucv/ 4724F: net/iucv/ 4725 4726S3C24XX SD/MMC Driver 4727M: Ben Dooks <ben-linux@fluff.org> 4728L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 4729S: Supported 4730F: drivers/mmc/host/s3cmci.* 4731 4732SAA7146 VIDEO4LINUX-2 DRIVER 4733M: Michael Hunold <michael@mihu.de> 4734L: linux-media@vger.kernel.org 4735T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git 4736W: http://www.mihu.de/linux/saa7146 4737S: Maintained 4738F: drivers/media/common/saa7146* 4739F: drivers/media/video/*7146* 4740F: include/media/*7146* 4741 4742TLG2300 VIDEO4LINUX-2 DRIVER 4743M: Huang Shijie <shijie8@gmail.com> 4744M: Kang Yong <kangyong@telegent.com> 4745M: Zhang Xiaobing <xbzhang@telegent.com> 4746S: Supported 4747F: drivers/media/video/tlg2300 4748 4749SC1200 WDT DRIVER 4750M: Zwane Mwaikambo <zwane@arm.linux.org.uk> 4751S: Maintained 4752F: drivers/watchdog/sc1200wdt.c 4753 4754SCHEDULER 4755M: Ingo Molnar <mingo@elte.hu> 4756M: Peter Zijlstra <peterz@infradead.org> 4757S: Maintained 4758F: kernel/sched* 4759F: include/linux/sched.h 4760 4761SCORE ARCHITECTURE 4762M: Chen Liqin <liqin.chen@sunplusct.com> 4763M: Lennox Wu <lennox.wu@gmail.com> 4764W: http://www.sunplusct.com 4765S: Supported 4766F: arch/score/ 4767 4768SCSI CDROM DRIVER 4769M: Jens Axboe <axboe@kernel.dk> 4770L: linux-scsi@vger.kernel.org 4771W: http://www.kernel.dk 4772S: Maintained 4773F: drivers/scsi/sr* 4774 4775SCSI SG DRIVER 4776M: Doug Gilbert <dgilbert@interlog.com> 4777L: linux-scsi@vger.kernel.org 4778W: http://www.torque.net/sg 4779S: Maintained 4780F: drivers/scsi/sg.c 4781F: include/scsi/sg.h 4782 4783SCSI SUBSYSTEM 4784M: "James E.J. Bottomley" <James.Bottomley@suse.de> 4785L: linux-scsi@vger.kernel.org 4786T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git 4787T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git 4788T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git 4789S: Maintained 4790F: drivers/scsi/ 4791F: include/scsi/ 4792 4793SCSI TAPE DRIVER 4794M: Kai Mäkisara <Kai.Makisara@kolumbus.fi> 4795L: linux-scsi@vger.kernel.org 4796S: Maintained 4797F: Documentation/scsi/st.txt 4798F: drivers/scsi/st* 4799 4800SCTP PROTOCOL 4801M: Vlad Yasevich <vladislav.yasevich@hp.com> 4802M: Sridhar Samudrala <sri@us.ibm.com> 4803L: linux-sctp@vger.kernel.org 4804W: http://lksctp.sourceforge.net 4805S: Supported 4806F: Documentation/networking/sctp.txt 4807F: include/linux/sctp.h 4808F: include/net/sctp/ 4809F: net/sctp/ 4810 4811SCx200 CPU SUPPORT 4812M: Jim Cromie <jim.cromie@gmail.com> 4813S: Odd Fixes 4814F: Documentation/i2c/busses/scx200_acb 4815F: arch/x86/kernel/scx200_32.c 4816F: drivers/watchdog/scx200_wdt.c 4817F: drivers/i2c/busses/scx200* 4818F: drivers/mtd/maps/scx200_docflash.c 4819F: include/linux/scx200.h 4820 4821SCx200 GPIO DRIVER 4822M: Jim Cromie <jim.cromie@gmail.com> 4823S: Maintained 4824F: drivers/char/scx200_gpio.c 4825F: include/linux/scx200_gpio.h 4826 4827SCx200 HRT CLOCKSOURCE DRIVER 4828M: Jim Cromie <jim.cromie@gmail.com> 4829S: Maintained 4830F: drivers/clocksource/scx200_hrt.c 4831 4832SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER 4833M: Sascha Sommer <saschasommer@freenet.de> 4834L: sdricohcs-devel@lists.sourceforge.net (subscribers-only) 4835S: Maintained 4836F: drivers/mmc/host/sdricoh_cs.c 4837 4838SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER 4839S: Orphan 4840L: linux-mmc@vger.kernel.org 4841F: drivers/mmc/host/sdhci.* 4842 4843SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF) 4844M: Anton Vorontsov <avorontsov@ru.mvista.com> 4845L: linuxppc-dev@ozlabs.org 4846L: linux-mmc@vger.kernel.org 4847S: Maintained 4848F: drivers/mmc/host/sdhci-of.* 4849 4850SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER 4851M: Ben Dooks <ben-linux@fluff.org> 4852L: linux-mmc@vger.kernel.org 4853S: Maintained 4854F: drivers/mmc/host/sdhci-s3c.c 4855 4856SECURITY SUBSYSTEM 4857M: James Morris <jmorris@namei.org> 4858L: linux-security-module@vger.kernel.org (suggested Cc:) 4859T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git 4860W: http://security.wiki.kernel.org/ 4861S: Supported 4862F: security/ 4863 4864SECURITY CONTACT 4865M: Security Officers <security@kernel.org> 4866S: Supported 4867 4868SELINUX SECURITY MODULE 4869M: Stephen Smalley <sds@tycho.nsa.gov> 4870M: James Morris <jmorris@namei.org> 4871M: Eric Paris <eparis@parisplace.org> 4872L: selinux@tycho.nsa.gov (subscribers-only, general discussion) 4873W: http://selinuxproject.org 4874T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git 4875S: Supported 4876F: include/linux/selinux* 4877F: security/selinux/ 4878 4879SENSABLE PHANTOM 4880M: Jiri Slaby <jirislaby@gmail.com> 4881S: Maintained 4882F: drivers/misc/phantom.c 4883F: include/linux/phantom.h 4884 4885SERIAL ATA (SATA) SUBSYSTEM 4886M: Jeff Garzik <jgarzik@pobox.com> 4887L: linux-ide@vger.kernel.org 4888T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git 4889S: Supported 4890F: drivers/ata/ 4891F: include/linux/ata.h 4892F: include/linux/libata.h 4893 4894SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER 4895M: Jayamohan Kallickal <jayamohank@serverengines.com> 4896L: linux-scsi@vger.kernel.org 4897W: http://www.serverengines.com 4898S: Supported 4899F: drivers/scsi/be2iscsi/ 4900 4901SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER 4902M: Sathya Perla <sathyap@serverengines.com> 4903M: Subbu Seetharaman <subbus@serverengines.com> 4904M: Sarveshwar Bandi <sarveshwarb@serverengines.com> 4905M: Ajit Khaparde <ajitk@serverengines.com> 4906L: netdev@vger.kernel.org 4907W: http://www.serverengines.com 4908S: Supported 4909F: drivers/net/benet/ 4910 4911SFC NETWORK DRIVER 4912M: Solarflare linux maintainers <linux-net-drivers@solarflare.com> 4913M: Steve Hodgson <shodgson@solarflare.com> 4914M: Ben Hutchings <bhutchings@solarflare.com> 4915L: netdev@vger.kernel.org 4916S: Supported 4917F: drivers/net/sfc/ 4918 4919SGI GRU DRIVER 4920M: Jack Steiner <steiner@sgi.com> 4921S: Maintained 4922F: drivers/misc/sgi-gru/ 4923 4924SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER 4925M: Pat Gefre <pfg@sgi.com> 4926L: linux-ia64@vger.kernel.org 4927S: Supported 4928F: Documentation/ia64/serial.txt 4929F: drivers/serial/ioc?_serial.c 4930F: include/linux/ioc?.h 4931 4932SGI VISUAL WORKSTATION 320 AND 540 4933M: Andrey Panin <pazke@donpac.ru> 4934L: linux-visws-devel@lists.sf.net 4935W: http://linux-visws.sf.net 4936S: Maintained for 2.6. 4937F: Documentation/sgi-visws.txt 4938 4939SGI XP/XPC/XPNET DRIVER 4940M: Robin Holt <holt@sgi.com> 4941S: Maintained 4942F: drivers/misc/sgi-xp/ 4943 4944SHARP LH SUPPORT (LH7952X & LH7A40X) 4945M: Marc Singer <elf@buici.com> 4946W: http://projects.buici.com/arm 4947L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 4948S: Maintained 4949F: Documentation/arm/Sharp-LH/ADC-LH7-Touchscreen 4950F: arch/arm/mach-lh7a40x/ 4951F: drivers/serial/serial_lh7a40x.c 4952F: drivers/usb/gadget/lh7a40* 4953F: drivers/usb/host/ohci-lh7a40* 4954 4955SIMPLE FIRMWARE INTERFACE (SFI) 4956M: Len Brown <lenb@kernel.org> 4957L: sfi-devel@simplefirmware.org 4958W: http://simplefirmware.org/ 4959T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git 4960S: Supported 4961F: arch/x86/kernel/*sfi* 4962F: drivers/sfi/ 4963F: include/linux/sfi*.h 4964 4965SIMTEC EB110ATX (Chalice CATS) 4966P: Ben Dooks 4967M: Vincent Sanders <support@simtec.co.uk> 4968W: http://www.simtec.co.uk/products/EB110ATX/ 4969S: Supported 4970 4971SIMTEC EB2410ITX (BAST) 4972P: Ben Dooks 4973M: Vincent Sanders <support@simtec.co.uk> 4974W: http://www.simtec.co.uk/products/EB2410ITX/ 4975S: Supported 4976F: arch/arm/mach-s3c2410/ 4977F: drivers/*/*s3c2410* 4978F: drivers/*/*/*s3c2410* 4979 4980TI DAVINCI MACHINE SUPPORT 4981P: Kevin Hilman 4982M: davinci-linux-open-source@linux.davincidsp.com 4983S: Supported 4984F: arch/arm/mach-davinci 4985 4986SIS 190 ETHERNET DRIVER 4987M: Francois Romieu <romieu@fr.zoreil.com> 4988L: netdev@vger.kernel.org 4989S: Maintained 4990F: drivers/net/sis190.c 4991 4992SIS 900/7016 FAST ETHERNET DRIVER 4993M: Daniele Venzano <venza@brownhat.org> 4994W: http://www.brownhat.org/sis900.html 4995L: netdev@vger.kernel.org 4996S: Maintained 4997F: drivers/net/sis900.* 4998 4999SIS 96X I2C/SMBUS DRIVER 5000M: "Mark M. Hoffman" <mhoffman@lightlink.com> 5001L: linux-i2c@vger.kernel.org 5002S: Maintained 5003F: Documentation/i2c/busses/i2c-sis96x 5004F: drivers/i2c/busses/i2c-sis96x.c 5005 5006SIS FRAMEBUFFER DRIVER 5007M: Thomas Winischhofer <thomas@winischhofer.net> 5008W: http://www.winischhofer.net/linuxsisvga.shtml 5009S: Maintained 5010F: Documentation/fb/sisfb.txt 5011F: drivers/video/sis/ 5012F: include/video/sisfb.h 5013 5014SIS USB2VGA DRIVER 5015M: Thomas Winischhofer <thomas@winischhofer.net> 5016W: http://www.winischhofer.at/linuxsisusbvga.shtml 5017S: Maintained 5018F: drivers/usb/misc/sisusbvga/ 5019 5020SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS 5021M: Stephen Hemminger <shemminger@linux-foundation.org> 5022L: netdev@vger.kernel.org 5023S: Maintained 5024F: drivers/net/skge.* 5025F: drivers/net/sky2.* 5026 5027SLAB ALLOCATOR 5028M: Christoph Lameter <cl@linux-foundation.org> 5029M: Pekka Enberg <penberg@cs.helsinki.fi> 5030M: Matt Mackall <mpm@selenic.com> 5031L: linux-mm@kvack.org 5032S: Maintained 5033F: include/linux/sl?b*.h 5034F: mm/sl?b.c 5035 5036SMC91x ETHERNET DRIVER 5037M: Nicolas Pitre <nico@fluxnic.net> 5038S: Maintained 5039F: drivers/net/smc91x.* 5040 5041SMSC47B397 HARDWARE MONITOR DRIVER 5042M: "Mark M. Hoffman" <mhoffman@lightlink.com> 5043L: lm-sensors@lm-sensors.org 5044S: Maintained 5045F: Documentation/hwmon/smsc47b397 5046F: drivers/hwmon/smsc47b397.c 5047 5048SMSC911x ETHERNET DRIVER 5049M: Steve Glendinning <steve.glendinning@smsc.com> 5050L: netdev@vger.kernel.org 5051S: Supported 5052F: include/linux/smsc911x.h 5053F: drivers/net/smsc911x.* 5054 5055SMSC9420 PCI ETHERNET DRIVER 5056M: Steve Glendinning <steve.glendinning@smsc.com> 5057L: netdev@vger.kernel.org 5058S: Supported 5059F: drivers/net/smsc9420.* 5060 5061SMX UIO Interface 5062M: Ben Nizette <bn@niasdigital.com> 5063S: Maintained 5064F: drivers/uio/uio_smx.c 5065 5066SN-IA64 (Itanium) SUB-PLATFORM 5067M: Jes Sorensen <jes@sgi.com> 5068L: linux-altix@sgi.com 5069L: linux-ia64@vger.kernel.org 5070W: http://www.sgi.com/altix 5071S: Maintained 5072F: arch/ia64/sn/ 5073 5074SOC-CAMERA V4L2 SUBSYSTEM 5075M: Guennadi Liakhovetski <g.liakhovetski@gmx.de> 5076L: linux-media@vger.kernel.org 5077T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git 5078S: Maintained 5079F: include/media/v4l2* 5080F: drivers/media/video/v4l2* 5081 5082SOEKRIS NET48XX LED SUPPORT 5083M: Chris Boot <bootc@bootc.net> 5084S: Maintained 5085F: drivers/leds/leds-net48xx.c 5086 5087SOFTWARE RAID (Multiple Disks) SUPPORT 5088M: Neil Brown <neilb@suse.de> 5089L: linux-raid@vger.kernel.org 5090S: Supported 5091F: drivers/md/ 5092F: include/linux/raid/ 5093 5094SONIC NETWORK DRIVER 5095M: Thomas Bogendoerfer <tsbogend@alpha.franken.de> 5096L: netdev@vger.kernel.org 5097S: Maintained 5098F: drivers/net/sonic.* 5099 5100SONICS SILICON BACKPLANE DRIVER (SSB) 5101M: Michael Buesch <mb@bu3sch.de> 5102L: netdev@vger.kernel.org 5103S: Maintained 5104F: drivers/ssb/ 5105F: include/linux/ssb/ 5106 5107SONY VAIO CONTROL DEVICE DRIVER 5108M: Mattia Dongili <malattia@linux.it> 5109L: platform-driver-x86@vger.kernel.org 5110W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers 5111S: Maintained 5112F: Documentation/laptops/sony-laptop.txt 5113F: drivers/char/sonypi.c 5114F: drivers/platform/x86/sony-laptop.c 5115F: include/linux/sony-laptop.h 5116 5117SONY MEMORYSTICK CARD SUPPORT 5118M: Alex Dubov <oakad@yahoo.com> 5119W: http://tifmxx.berlios.de/ 5120S: Maintained 5121F: drivers/memstick/host/tifm_ms.c 5122 5123SOUND 5124M: Jaroslav Kysela <perex@perex.cz> 5125M: Takashi Iwai <tiwai@suse.de> 5126L: alsa-devel@alsa-project.org (moderated for non-subscribers) 5127W: http://www.alsa-project.org/ 5128T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6.git 5129T: git git://git.alsa-project.org/alsa-kernel.git 5130S: Maintained 5131F: Documentation/sound/ 5132F: include/sound/ 5133F: sound/ 5134 5135SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC) 5136M: Liam Girdwood <lrg@slimlogic.co.uk> 5137M: Mark Brown <broonie@opensource.wolfsonmicro.com> 5138T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound-2.6.git 5139L: alsa-devel@alsa-project.org (moderated for non-subscribers) 5140W: http://alsa-project.org/main/index.php/ASoC 5141S: Supported 5142F: sound/soc/ 5143F: include/sound/soc* 5144 5145SPARC + UltraSPARC (sparc/sparc64) 5146M: "David S. Miller" <davem@davemloft.net> 5147L: sparclinux@vger.kernel.org 5148T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git 5149T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next-2.6.git 5150S: Maintained 5151F: arch/sparc/ 5152 5153SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER 5154M: Roger Wolff <R.E.Wolff@BitWizard.nl> 5155S: Supported 5156F: Documentation/serial/specialix.txt 5157F: drivers/char/specialix* 5158 5159SPI SUBSYSTEM 5160M: David Brownell <dbrownell@users.sourceforge.net> 5161M: Grant Likely <grant.likely@secretlab.ca> 5162L: spi-devel-general@lists.sourceforge.net 5163S: Maintained 5164F: Documentation/spi/ 5165F: drivers/spi/ 5166F: include/linux/spi/ 5167 5168SPIDERNET NETWORK DRIVER for CELL 5169M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp> 5170M: Jens Osterkamp <jens@de.ibm.com> 5171L: netdev@vger.kernel.org 5172S: Supported 5173F: Documentation/networking/spider_net.txt 5174F: drivers/net/spider_net* 5175 5176SPU FILE SYSTEM 5177M: Jeremy Kerr <jk@ozlabs.org> 5178L: linuxppc-dev@ozlabs.org 5179L: cbe-oss-dev@ozlabs.org 5180W: http://www.ibm.com/developerworks/power/cell/ 5181S: Supported 5182F: Documentation/filesystems/spufs.txt 5183F: arch/powerpc/platforms/cell/spufs/ 5184 5185SQUASHFS FILE SYSTEM 5186M: Phillip Lougher <phillip@lougher.demon.co.uk> 5187L: squashfs-devel@lists.sourceforge.net (subscribers-only) 5188W: http://squashfs.org.uk 5189S: Maintained 5190F: Documentation/filesystems/squashfs.txt 5191F: fs/squashfs/ 5192 5193SRM (Alpha) environment access 5194M: Jan-Benedict Glaw <jbglaw@lug-owl.de> 5195S: Maintained 5196F: arch/alpha/kernel/srm_env.c 5197 5198STABLE BRANCH 5199M: Greg Kroah-Hartman <greg@kroah.com> 5200M: Chris Wright <chrisw@sous-sol.org> 5201L: stable@kernel.org 5202S: Maintained 5203 5204STAGING SUBSYSTEM 5205M: Greg Kroah-Hartman <gregkh@suse.de> 5206T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/ 5207L: devel@driverdev.osuosl.org 5208S: Maintained 5209F: drivers/staging/ 5210 5211STARFIRE/DURALAN NETWORK DRIVER 5212M: Ion Badulescu <ionut@badula.org> 5213S: Odd Fixes 5214F: drivers/net/starfire* 5215 5216STARMODE RADIO IP (STRIP) PROTOCOL DRIVER 5217S: Orphan 5218F: drivers/net/wireless/strip.c 5219F: include/linux/if_strip.h 5220 5221STRADIS MPEG-2 DECODER DRIVER 5222M: Nathan Laredo <laredo@gnu.org> 5223W: http://www.stradis.com/ 5224S: Maintained 5225F: drivers/media/video/stradis.c 5226 5227SUN3/3X 5228M: Sam Creasey <sammy@sammy.net> 5229W: http://sammy.net/sun3/ 5230S: Maintained 5231F: arch/m68k/kernel/*sun3* 5232F: arch/m68k/sun3*/ 5233F: arch/m68k/include/asm/sun3* 5234 5235SUPERH 5236M: Paul Mundt <lethal@linux-sh.org> 5237L: linux-sh@vger.kernel.org 5238W: http://www.linux-sh.org 5239T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git 5240S: Supported 5241F: Documentation/sh/ 5242F: arch/sh/ 5243F: drivers/sh/ 5244 5245SUSPEND TO RAM 5246M: Len Brown <len.brown@intel.com> 5247M: Pavel Machek <pavel@ucw.cz> 5248M: "Rafael J. Wysocki" <rjw@sisk.pl> 5249L: linux-pm@lists.linux-foundation.org 5250S: Supported 5251F: Documentation/power/ 5252F: arch/x86/kernel/acpi/ 5253F: drivers/base/power/ 5254F: kernel/power/ 5255F: include/linux/suspend.h 5256F: include/linux/freezer.h 5257F: include/linux/pm.h 5258 5259SVGA HANDLING 5260M: Martin Mares <mj@ucw.cz> 5261L: linux-video@atrey.karlin.mff.cuni.cz 5262S: Maintained 5263F: Documentation/svga.txt 5264F: arch/x86/boot/video* 5265 5266SYSV FILESYSTEM 5267M: Christoph Hellwig <hch@infradead.org> 5268S: Maintained 5269F: Documentation/filesystems/sysv-fs.txt 5270F: fs/sysv/ 5271F: include/linux/sysv_fs.h 5272 5273TASKSTATS STATISTICS INTERFACE 5274M: Balbir Singh <balbir@linux.vnet.ibm.com> 5275S: Maintained 5276F: Documentation/accounting/taskstats* 5277F: include/linux/taskstats* 5278F: kernel/taskstats.c 5279 5280TC CLASSIFIER 5281M: Jamal Hadi Salim <hadi@cyberus.ca> 5282L: netdev@vger.kernel.org 5283S: Maintained 5284F: include/linux/pkt_cls.h 5285F: include/net/pkt_cls.h 5286F: net/sched/ 5287 5288TCP LOW PRIORITY MODULE 5289M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com> 5290M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com> 5291W: http://tcp-lp-mod.sourceforge.net/ 5292S: Maintained 5293F: net/ipv4/tcp_lp.c 5294 5295TEHUTI ETHERNET DRIVER 5296M: Alexander Indenbaum <baum@tehutinetworks.net> 5297M: Andy Gospodarek <andy@greyhouse.net> 5298L: netdev@vger.kernel.org 5299S: Supported 5300F: drivers/net/tehuti* 5301 5302Telecom Clock Driver for MCPL0010 5303M: Mark Gross <mark.gross@intel.com> 5304S: Supported 5305F: drivers/char/tlclk.c 5306 5307TENSILICA XTENSA PORT (xtensa) 5308M: Chris Zankel <chris@zankel.net> 5309S: Maintained 5310F: arch/xtensa/ 5311 5312THINKPAD ACPI EXTRAS DRIVER 5313M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br> 5314L: ibm-acpi-devel@lists.sourceforge.net 5315L: platform-driver-x86@vger.kernel.org 5316W: http://ibm-acpi.sourceforge.net 5317W: http://thinkwiki.org/wiki/Ibm-acpi 5318T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git 5319S: Maintained 5320F: drivers/platform/x86/thinkpad_acpi.c 5321 5322TI FLASH MEDIA INTERFACE DRIVER 5323M: Alex Dubov <oakad@yahoo.com> 5324S: Maintained 5325F: drivers/misc/tifm* 5326F: drivers/mmc/host/tifm_sd.c 5327F: include/linux/tifm.h 5328 5329TI TWL4030 SERIES SOC CODEC DRIVER 5330M: Peter Ujfalusi <peter.ujfalusi@nokia.com> 5331L: alsa-devel@alsa-project.org (moderated for non-subscribers) 5332S: Maintained 5333F: sound/soc/codecs/twl4030* 5334 5335TIPC NETWORK LAYER 5336M: Per Liden <per.liden@ericsson.com> 5337M: Jon Maloy <jon.maloy@ericsson.com> 5338M: Allan Stephens <allan.stephens@windriver.com> 5339L: tipc-discussion@lists.sourceforge.net 5340W: http://tipc.sourceforge.net/ 5341W: http://tipc.cslab.ericsson.net/ 5342T: git git://tipc.cslab.ericsson.net/pub/git/tipc.git 5343S: Maintained 5344F: include/linux/tipc*.h 5345F: include/net/tipc/ 5346F: net/tipc/ 5347 5348TLAN NETWORK DRIVER 5349M: Samuel Chessman <chessman@tux.org> 5350L: tlan-devel@lists.sourceforge.net (subscribers-only) 5351W: http://sourceforge.net/projects/tlan/ 5352S: Maintained 5353F: Documentation/networking/tlan.txt 5354F: drivers/net/tlan.* 5355 5356TOMOYO SECURITY MODULE 5357M: Kentaro Takeda <takedakn@nttdata.co.jp> 5358M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp> 5359L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for developers and users in English) 5360L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese) 5361L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese) 5362W: http://tomoyo.sourceforge.jp/ 5363T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.2.x/tomoyo-lsm/patches/ 5364S: Maintained 5365F: security/tomoyo/ 5366 5367TOPSTAR LAPTOP EXTRAS DRIVER 5368M: Herton Ronaldo Krzesinski <herton@mandriva.com.br> 5369L: platform-driver-x86@vger.kernel.org 5370S: Maintained 5371F: drivers/platform/x86/topstar-laptop.c 5372 5373TOSHIBA ACPI EXTRAS DRIVER 5374L: platform-driver-x86@vger.kernel.org 5375S: Orphan 5376F: drivers/platform/x86/toshiba_acpi.c 5377 5378TOSHIBA SMM DRIVER 5379M: Jonathan Buzzard <jonathan@buzzard.org.uk> 5380L: tlinux-users@tce.toshiba-dme.co.jp 5381W: http://www.buzzard.org.uk/toshiba/ 5382S: Maintained 5383F: drivers/char/toshiba.c 5384F: include/linux/toshiba.h 5385 5386TMIO MMC DRIVER 5387M: Ian Molton <ian@mnementh.co.uk> 5388S: Maintained 5389F: drivers/mmc/host/tmio_mmc.* 5390 5391TMPFS (SHMEM FILESYSTEM) 5392M: Hugh Dickins <hugh.dickins@tiscali.co.uk> 5393L: linux-mm@kvack.org 5394S: Maintained 5395F: include/linux/shmem_fs.h 5396F: mm/shmem.c 5397 5398TPM DEVICE DRIVER 5399M: Debora Velarde <debora@linux.vnet.ibm.com> 5400M: Rajiv Andrade <srajiv@linux.vnet.ibm.com> 5401W: http://tpmdd.sourceforge.net 5402M: Marcel Selhorst <m.selhorst@sirrix.com> 5403W: http://www.sirrix.com 5404L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers) 5405S: Maintained 5406F: drivers/char/tpm/ 5407 5408TRACING 5409M: Steven Rostedt <rostedt@goodmis.org> 5410M: Frederic Weisbecker <fweisbec@gmail.com> 5411M: Ingo Molnar <mingo@redhat.com> 5412T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip.git tracing/core 5413S: Maintained 5414F: Documentation/trace/ftrace.txt 5415F: arch/*/*/*/ftrace.h 5416F: arch/*/kernel/ftrace.c 5417F: include/*/ftrace.h 5418F: include/linux/trace*.h 5419F: include/trace/ 5420F: kernel/trace/ 5421 5422TRIVIAL PATCHES 5423M: Jiri Kosina <trivial@kernel.org> 5424T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git 5425S: Maintained 5426 5427TTY LAYER 5428M: Greg Kroah-Hartman <gregkh@suse.de> 5429S: Maintained 5430T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/ 5431F: drivers/char/tty_* 5432F: drivers/serial/serial_core.c 5433F: include/linux/serial_core.h 5434F: include/linux/serial.h 5435F: include/linux/tty.h 5436 5437TULIP NETWORK DRIVERS 5438M: Grant Grundler <grundler@parisc-linux.org> 5439M: Kyle McMartin <kyle@mcmartin.ca> 5440L: netdev@vger.kernel.org 5441S: Maintained 5442F: drivers/net/tulip/ 5443 5444TUN/TAP driver 5445M: Maxim Krasnyansky <maxk@qualcomm.com> 5446L: vtun@office.satix.net 5447W: http://vtun.sourceforge.net/tun 5448S: Maintained 5449F: Documentation/networking/tuntap.txt 5450F: arch/um/os-Linux/drivers/ 5451 5452TURBOCHANNEL SUBSYSTEM 5453M: "Maciej W. Rozycki" <macro@linux-mips.org> 5454S: Maintained 5455F: drivers/tc/ 5456F: include/linux/tc.h 5457 5458U14-34F SCSI DRIVER 5459M: Dario Ballabio <ballabio_dario@emc.com> 5460L: linux-scsi@vger.kernel.org 5461S: Maintained 5462F: drivers/scsi/u14-34f.c 5463 5464UBI FILE SYSTEM (UBIFS) 5465M: Artem Bityutskiy <dedekind1@gmail.com> 5466M: Adrian Hunter <adrian.hunter@nokia.com> 5467L: linux-mtd@lists.infradead.org 5468T: git git://git.infradead.org/ubifs-2.6.git 5469W: http://www.linux-mtd.infradead.org/doc/ubifs.html 5470S: Maintained 5471F: Documentation/filesystems/ubifs.txt 5472F: fs/ubifs/ 5473 5474UCLINUX (AND M68KNOMMU) 5475M: Greg Ungerer <gerg@uclinux.org> 5476W: http://www.uclinux.org/ 5477L: uclinux-dev@uclinux.org (subscribers-only) 5478S: Maintained 5479F: arch/m68knommu/ 5480 5481UCLINUX FOR RENESAS H8/300 (H8300) 5482M: Yoshinori Sato <ysato@users.sourceforge.jp> 5483W: http://uclinux-h8.sourceforge.jp/ 5484S: Supported 5485 5486UDF FILESYSTEM 5487M: Jan Kara <jack@suse.cz> 5488W: http://linux-udf.sourceforge.net 5489S: Maintained 5490F: Documentation/filesystems/udf.txt 5491F: fs/udf/ 5492 5493UFS FILESYSTEM 5494M: Evgeniy Dushistov <dushistov@mail.ru> 5495S: Maintained 5496F: Documentation/filesystems/ufs.txt 5497F: fs/ufs/ 5498 5499ULTRA-WIDEBAND (UWB) SUBSYSTEM: 5500M: David Vrabel <david.vrabel@csr.com> 5501L: linux-usb@vger.kernel.org 5502S: Supported 5503F: drivers/uwb/ 5504X: drivers/uwb/wlp/ 5505X: drivers/uwb/i1480/i1480u-wlp/ 5506X: drivers/uwb/i1480/i1480-wlp.h 5507F: include/linux/uwb.h 5508F: include/linux/uwb/ 5509 5510UNIFDEF 5511M: Tony Finch <dot@dotat.at> 5512W: http://dotat.at/prog/unifdef 5513S: Maintained 5514F: scripts/unifdef.c 5515 5516UNIFORM CDROM DRIVER 5517M: Jens Axboe <axboe@kernel.dk> 5518W: http://www.kernel.dk 5519S: Maintained 5520F: Documentation/cdrom/ 5521F: drivers/cdrom/cdrom.c 5522F: include/linux/cdrom.h 5523 5524UNSORTED BLOCK IMAGES (UBI) 5525M: Artem Bityutskiy <dedekind1@gmail.com> 5526W: http://www.linux-mtd.infradead.org/ 5527L: linux-mtd@lists.infradead.org 5528T: git git://git.infradead.org/ubi-2.6.git 5529S: Maintained 5530F: drivers/mtd/ubi/ 5531F: include/linux/mtd/ubi.h 5532F: include/mtd/ubi-user.h 5533 5534USB ACM DRIVER 5535M: Oliver Neukum <oliver@neukum.name> 5536L: linux-usb@vger.kernel.org 5537S: Maintained 5538F: Documentation/usb/acm.txt 5539F: drivers/usb/class/cdc-acm.* 5540 5541USB BLOCK DRIVER (UB ub) 5542M: Pete Zaitcev <zaitcev@redhat.com> 5543L: linux-usb@vger.kernel.org 5544S: Supported 5545F: drivers/block/ub.c 5546 5547USB CDC ETHERNET DRIVER 5548M: Oliver Neukum <oliver@neukum.name> 5549L: linux-usb@vger.kernel.org 5550S: Maintained 5551F: drivers/net/usb/cdc_*.c 5552F: include/linux/usb/cdc.h 5553 5554USB CYPRESS C67X00 DRIVER 5555M: Peter Korsgaard <jacmet@sunsite.dk> 5556L: linux-usb@vger.kernel.org 5557S: Maintained 5558F: drivers/usb/c67x00/ 5559 5560USB DAVICOM DM9601 DRIVER 5561M: Peter Korsgaard <jacmet@sunsite.dk> 5562L: netdev@vger.kernel.org 5563W: http://www.linux-usb.org/usbnet 5564S: Maintained 5565F: drivers/net/usb/dm9601.c 5566 5567USB DIAMOND RIO500 DRIVER 5568M: Cesar Miquel <miquel@df.uba.ar> 5569L: rio500-users@lists.sourceforge.net 5570W: http://rio500.sourceforge.net 5571S: Maintained 5572F: drivers/usb/misc/rio500* 5573 5574USB EHCI DRIVER 5575M: David Brownell <dbrownell@users.sourceforge.net> 5576L: linux-usb@vger.kernel.org 5577S: Odd Fixes 5578F: Documentation/usb/ehci.txt 5579F: drivers/usb/host/ehci* 5580 5581USB ET61X[12]51 DRIVER 5582M: Luca Risolia <luca.risolia@studio.unibo.it> 5583L: linux-usb@vger.kernel.org 5584L: linux-media@vger.kernel.org 5585T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git 5586W: http://www.linux-projects.org 5587S: Maintained 5588F: drivers/media/video/et61x251/ 5589 5590USB GADGET/PERIPHERAL SUBSYSTEM 5591M: David Brownell <dbrownell@users.sourceforge.net> 5592L: linux-usb@vger.kernel.org 5593W: http://www.linux-usb.org/gadget 5594S: Maintained 5595F: drivers/usb/gadget/ 5596F: include/linux/usb/gadget* 5597 5598USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...) 5599M: Jiri Kosina <jkosina@suse.cz> 5600L: linux-usb@vger.kernel.org 5601T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git 5602S: Maintained 5603F: Documentation/usb/hiddev.txt 5604F: drivers/hid/usbhid/ 5605 5606USB ISP116X DRIVER 5607M: Olav Kongas <ok@artecdesign.ee> 5608L: linux-usb@vger.kernel.org 5609S: Maintained 5610F: drivers/usb/host/isp116x* 5611F: include/linux/usb/isp116x.h 5612 5613USB KAWASAKI LSI DRIVER 5614M: Oliver Neukum <oliver@neukum.name> 5615L: linux-usb@vger.kernel.org 5616S: Maintained 5617F: drivers/usb/serial/kl5kusb105.* 5618 5619USB MASS STORAGE DRIVER 5620M: Matthew Dharm <mdharm-usb@one-eyed-alien.net> 5621L: linux-usb@vger.kernel.org 5622L: usb-storage@lists.one-eyed-alien.net 5623S: Maintained 5624W: http://www.one-eyed-alien.net/~mdharm/linux-usb/ 5625F: drivers/usb/storage/ 5626 5627USB OHCI DRIVER 5628M: David Brownell <dbrownell@users.sourceforge.net> 5629L: linux-usb@vger.kernel.org 5630S: Odd Fixes 5631F: Documentation/usb/ohci.txt 5632F: drivers/usb/host/ohci* 5633 5634USB OPTION-CARD DRIVER 5635M: Matthias Urlichs <smurf@smurf.noris.de> 5636L: linux-usb@vger.kernel.org 5637S: Maintained 5638F: drivers/usb/serial/option.c 5639 5640USB OV511 DRIVER 5641M: Mark McClelland <mmcclell@bigfoot.com> 5642L: linux-usb@vger.kernel.org 5643W: http://alpha.dyndns.org/ov511/ 5644S: Maintained 5645F: drivers/media/video/ov511.* 5646 5647USB PEGASUS DRIVER 5648M: Petko Manolov <petkan@users.sourceforge.net> 5649L: linux-usb@vger.kernel.org 5650L: netdev@vger.kernel.org 5651W: http://pegasus2.sourceforge.net/ 5652S: Maintained 5653F: drivers/net/usb/pegasus.* 5654 5655USB PRINTER DRIVER (usblp) 5656M: Pete Zaitcev <zaitcev@redhat.com> 5657L: linux-usb@vger.kernel.org 5658S: Supported 5659F: drivers/usb/class/usblp.c 5660 5661USB RTL8150 DRIVER 5662M: Petko Manolov <petkan@users.sourceforge.net> 5663L: linux-usb@vger.kernel.org 5664L: netdev@vger.kernel.org 5665W: http://pegasus2.sourceforge.net/ 5666S: Maintained 5667F: drivers/net/usb/rtl8150.c 5668 5669USB SE401 DRIVER 5670M: Jeroen Vreeken <pe1rxq@amsat.org> 5671L: linux-usb@vger.kernel.org 5672W: http://www.chello.nl/~j.vreeken/se401/ 5673S: Maintained 5674F: Documentation/video4linux/se401.txt 5675F: drivers/media/video/se401.* 5676 5677USB SERIAL BELKIN F5U103 DRIVER 5678M: William Greathouse <wgreathouse@smva.com> 5679L: linux-usb@vger.kernel.org 5680S: Maintained 5681F: drivers/usb/serial/belkin_sa.* 5682 5683USB SERIAL CYPRESS M8 DRIVER 5684M: Lonnie Mendez <dignome@gmail.com> 5685L: linux-usb@vger.kernel.org 5686S: Maintained 5687W: http://geocities.com/i0xox0i 5688W: http://firstlight.net/cvs 5689F: drivers/usb/serial/cypress_m8.* 5690 5691USB SERIAL CYBERJACK DRIVER 5692M: Matthias Bruestle and Harald Welte <support@reiner-sct.com> 5693W: http://www.reiner-sct.de/support/treiber_cyberjack.php 5694S: Maintained 5695F: drivers/usb/serial/cyberjack.c 5696 5697USB SERIAL DIGI ACCELEPORT DRIVER 5698M: Peter Berger <pberger@brimson.com> 5699M: Al Borchers <alborchers@steinerpoint.com> 5700L: linux-usb@vger.kernel.org 5701S: Maintained 5702F: drivers/usb/serial/digi_acceleport.c 5703 5704USB SERIAL DRIVER 5705M: Greg Kroah-Hartman <gregkh@suse.de> 5706L: linux-usb@vger.kernel.org 5707S: Supported 5708F: Documentation/usb/usb-serial.txt 5709F: drivers/usb/serial/generic.c 5710F: drivers/usb/serial/usb-serial.c 5711F: include/linux/usb/serial.h 5712 5713USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER 5714M: Gary Brubaker <xavyer@ix.netcom.com> 5715L: linux-usb@vger.kernel.org 5716S: Maintained 5717F: drivers/usb/serial/empeg.c 5718 5719USB SERIAL KEYSPAN DRIVER 5720M: Greg Kroah-Hartman <greg@kroah.com> 5721L: linux-usb@vger.kernel.org 5722W: http://www.kroah.com/linux/ 5723S: Maintained 5724F: drivers/usb/serial/*keyspan* 5725 5726USB SERIAL WHITEHEAT DRIVER 5727M: Support Department <support@connecttech.com> 5728L: linux-usb@vger.kernel.org 5729W: http://www.connecttech.com 5730S: Supported 5731F: drivers/usb/serial/whiteheat* 5732 5733USB SMSC95XX ETHERNET DRIVER 5734M: Steve Glendinning <steve.glendinning@smsc.com> 5735L: netdev@vger.kernel.org 5736S: Supported 5737F: drivers/net/usb/smsc95xx.* 5738 5739USB SN9C1xx DRIVER 5740M: Luca Risolia <luca.risolia@studio.unibo.it> 5741L: linux-usb@vger.kernel.org 5742L: linux-media@vger.kernel.org 5743T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git 5744W: http://www.linux-projects.org 5745S: Maintained 5746F: Documentation/video4linux/sn9c102.txt 5747F: drivers/media/video/sn9c102/ 5748 5749USB SUBSYSTEM 5750M: Greg Kroah-Hartman <gregkh@suse.de> 5751L: linux-usb@vger.kernel.org 5752W: http://www.linux-usb.org 5753T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/ 5754S: Supported 5755F: Documentation/usb/ 5756F: drivers/net/usb/ 5757F: drivers/usb/ 5758F: include/linux/usb.h 5759F: include/linux/usb/ 5760 5761USB UHCI DRIVER 5762M: Alan Stern <stern@rowland.harvard.edu> 5763L: linux-usb@vger.kernel.org 5764S: Maintained 5765F: drivers/usb/host/uhci* 5766 5767USB "USBNET" DRIVER FRAMEWORK 5768M: David Brownell <dbrownell@users.sourceforge.net> 5769L: netdev@vger.kernel.org 5770W: http://www.linux-usb.org/usbnet 5771S: Maintained 5772F: drivers/net/usb/usbnet.c 5773F: include/linux/usb/usbnet.h 5774 5775USB VIDEO CLASS 5776M: Laurent Pinchart <laurent.pinchart@skynet.be> 5777L: linux-uvc-devel@lists.berlios.de (subscribers-only) 5778L: linux-media@vger.kernel.org 5779T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git 5780W: http://linux-uvc.berlios.de 5781S: Maintained 5782F: drivers/media/video/uvc/ 5783 5784USB W996[87]CF DRIVER 5785M: Luca Risolia <luca.risolia@studio.unibo.it> 5786L: linux-usb@vger.kernel.org 5787L: linux-media@vger.kernel.org 5788T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git 5789W: http://www.linux-projects.org 5790S: Maintained 5791F: Documentation/video4linux/w9968cf.txt 5792F: drivers/media/video/w996* 5793 5794USB WIRELESS RNDIS DRIVER (rndis_wlan) 5795M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi> 5796L: linux-wireless@vger.kernel.org 5797S: Maintained 5798F: drivers/net/wireless/rndis_wlan.c 5799 5800USB XHCI DRIVER 5801M: Sarah Sharp <sarah.a.sharp@linux.intel.com> 5802L: linux-usb@vger.kernel.org 5803S: Supported 5804F: drivers/usb/host/xhci* 5805F: drivers/usb/host/pci-quirks* 5806 5807USB ZC0301 DRIVER 5808M: Luca Risolia <luca.risolia@studio.unibo.it> 5809L: linux-usb@vger.kernel.org 5810L: linux-media@vger.kernel.org 5811T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git 5812W: http://www.linux-projects.org 5813S: Maintained 5814F: Documentation/video4linux/zc0301.txt 5815F: drivers/media/video/zc0301/ 5816 5817USB ZD1201 DRIVER 5818M: Jeroen Vreeken <pe1rxq@amsat.org> 5819L: linux-usb@vger.kernel.org 5820W: http://linux-lc100020.sourceforge.net 5821S: Maintained 5822F: drivers/net/wireless/zd1201.* 5823 5824USB ZR364XX DRIVER 5825M: Antoine Jacquet <royale@zerezo.com> 5826L: linux-usb@vger.kernel.org 5827L: linux-media@vger.kernel.org 5828T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git 5829W: http://royale.zerezo.com/zr364xx/ 5830S: Maintained 5831F: Documentation/video4linux/zr364xx.txt 5832F: drivers/media/video/zr364xx.c 5833 5834USER-MODE LINUX (UML) 5835M: Jeff Dike <jdike@addtoit.com> 5836L: user-mode-linux-devel@lists.sourceforge.net 5837L: user-mode-linux-user@lists.sourceforge.net 5838W: http://user-mode-linux.sourceforge.net 5839S: Maintained 5840F: Documentation/uml/ 5841F: arch/um/ 5842F: fs/hostfs/ 5843F: fs/hppfs/ 5844 5845USERSPACE I/O (UIO) 5846M: "Hans J. Koch" <hjk@linutronix.de> 5847M: Greg Kroah-Hartman <gregkh@suse.de> 5848S: Maintained 5849F: Documentation/DocBook/uio-howto.tmpl 5850F: drivers/uio/ 5851F: include/linux/uio*.h 5852 5853UTIL-LINUX-NG PACKAGE 5854M: Karel Zak <kzak@redhat.com> 5855L: util-linux-ng@vger.kernel.org 5856W: http://kernel.org/~kzak/util-linux-ng/ 5857T: git git://git.kernel.org/pub/scm/utils/util-linux-ng/util-linux-ng.git 5858S: Maintained 5859 5860UVESAFB DRIVER 5861M: Michal Januszewski <spock@gentoo.org> 5862L: linux-fbdev@vger.kernel.org 5863W: http://dev.gentoo.org/~spock/projects/uvesafb/ 5864S: Maintained 5865F: Documentation/fb/uvesafb.txt 5866F: drivers/video/uvesafb.* 5867 5868VFAT/FAT/MSDOS FILESYSTEM 5869M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp> 5870S: Maintained 5871F: Documentation/filesystems/vfat.txt 5872F: fs/fat/ 5873 5874VIRTIO HOST (VHOST) 5875M: "Michael S. Tsirkin" <mst@redhat.com> 5876L: kvm@vger.kernel.org 5877L: virtualization@lists.osdl.org 5878L: netdev@vger.kernel.org 5879S: Maintained 5880F: drivers/vhost/ 5881F: include/linux/vhost.h 5882 5883VIA RHINE NETWORK DRIVER 5884M: Roger Luethi <rl@hellgate.ch> 5885S: Maintained 5886F: drivers/net/via-rhine.c 5887 5888VIAPRO SMBUS DRIVER 5889M: Jean Delvare <khali@linux-fr.org> 5890L: linux-i2c@vger.kernel.org 5891S: Maintained 5892F: Documentation/i2c/busses/i2c-viapro 5893F: drivers/i2c/busses/i2c-viapro.c 5894 5895VIA SD/MMC CARD CONTROLLER DRIVER 5896M: Joseph Chan <JosephChan@via.com.tw> 5897M: Harald Welte <HaraldWelte@viatech.com> 5898S: Maintained 5899F: drivers/mmc/host/via-sdmmc.c 5900 5901VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER 5902M: Joseph Chan <JosephChan@via.com.tw> 5903M: Scott Fang <ScottFang@viatech.com.cn> 5904L: linux-fbdev@vger.kernel.org 5905S: Maintained 5906F: drivers/video/via/ 5907 5908VIA VELOCITY NETWORK DRIVER 5909M: Francois Romieu <romieu@fr.zoreil.com> 5910L: netdev@vger.kernel.org 5911S: Maintained 5912F: drivers/net/via-velocity.* 5913 5914VLAN (802.1Q) 5915M: Patrick McHardy <kaber@trash.net> 5916L: netdev@vger.kernel.org 5917S: Maintained 5918F: drivers/net/macvlan.c 5919F: include/linux/if_*vlan.h 5920F: net/8021q/ 5921 5922VLYNQ BUS 5923M: Florian Fainelli <florian@openwrt.org> 5924L: openwrt-devel@lists.openwrt.org 5925S: Maintained 5926F: drivers/vlynq/vlynq.c 5927F: include/linux/vlynq.h 5928 5929VMWARE VMXNET3 ETHERNET DRIVER 5930M: Shreyas Bhatewara <sbhatewara@vmware.com> 5931M: "VMware, Inc." <pv-drivers@vmware.com> 5932L: netdev@vger.kernel.org 5933S: Maintained 5934F: drivers/net/vmxnet3/ 5935 5936VMware PVSCSI driver 5937M: Alok Kataria <akataria@vmware.com> 5938M: VMware PV-Drivers <pv-drivers@vmware.com> 5939L: linux-scsi@vger.kernel.org 5940S: Maintained 5941F: drivers/scsi/vmw_pvscsi.c 5942F: drivers/scsi/vmw_pvscsi.h 5943 5944VOLTAGE AND CURRENT REGULATOR FRAMEWORK 5945M: Liam Girdwood <lrg@slimlogic.co.uk> 5946M: Mark Brown <broonie@opensource.wolfsonmicro.com> 5947W: http://opensource.wolfsonmicro.com/node/15 5948W: http://www.slimlogic.co.uk/?p=48 5949T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/voltage-2.6.git 5950S: Supported 5951F: drivers/regulator/ 5952F: include/linux/regulator/ 5953 5954VT1211 HARDWARE MONITOR DRIVER 5955M: Juerg Haefliger <juergh@gmail.com> 5956L: lm-sensors@lm-sensors.org 5957S: Maintained 5958F: Documentation/hwmon/vt1211 5959F: drivers/hwmon/vt1211.c 5960 5961VT8231 HARDWARE MONITOR DRIVER 5962M: Roger Lucas <vt8231@hiddenengine.co.uk> 5963L: lm-sensors@lm-sensors.org 5964S: Maintained 5965F: drivers/hwmon/vt8231.c 5966 5967W1 DALLAS'S 1-WIRE BUS 5968M: Evgeniy Polyakov <johnpol@2ka.mipt.ru> 5969S: Maintained 5970F: Documentation/w1/ 5971F: drivers/w1/ 5972 5973W83791D HARDWARE MONITORING DRIVER 5974M: Marc Hulsman <m.hulsman@tudelft.nl> 5975L: lm-sensors@lm-sensors.org 5976S: Maintained 5977F: Documentation/hwmon/w83791d 5978F: drivers/hwmon/w83791d.c 5979 5980W83793 HARDWARE MONITORING DRIVER 5981M: Rudolf Marek <r.marek@assembler.cz> 5982L: lm-sensors@lm-sensors.org 5983S: Maintained 5984F: Documentation/hwmon/w83793 5985F: drivers/hwmon/w83793.c 5986 5987W83L51xD SD/MMC CARD INTERFACE DRIVER 5988M: Pierre Ossman <pierre@ossman.eu> 5989S: Maintained 5990F: drivers/mmc/host/wbsd.* 5991 5992WATCHDOG DEVICE DRIVERS 5993M: Wim Van Sebroeck <wim@iguana.be> 5994T: git git://git.kernel.org/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git 5995S: Maintained 5996F: Documentation/watchdog/ 5997F: drivers/watchdog/ 5998F: include/linux/watchdog.h 5999 6000WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS 6001M: Jean Tourrilhes <jt@hpl.hp.com> 6002L: linux-wireless@vger.kernel.org 6003W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/ 6004S: Maintained 6005F: Documentation/networking/wavelan.txt 6006F: drivers/net/wireless/wavelan* 6007 6008WD7000 SCSI DRIVER 6009M: Miroslav Zagorac <zaga@fly.cc.fer.hr> 6010L: linux-scsi@vger.kernel.org 6011S: Maintained 6012F: drivers/scsi/wd7000.c 6013 6014WINBOND CIR DRIVER 6015M: David Härdeman <david@hardeman.nu> 6016S: Maintained 6017F: drivers/input/misc/winbond-cir.c 6018 6019WIMAX STACK 6020M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> 6021M: linux-wimax@intel.com 6022L: wimax@linuxwimax.org 6023S: Supported 6024W: http://linuxwimax.org 6025 6026WIMEDIA LLC PROTOCOL (WLP) SUBSYSTEM 6027M: David Vrabel <david.vrabel@csr.com> 6028L: netdev@vger.kernel.org 6029S: Maintained 6030F: include/linux/wlp.h 6031F: drivers/uwb/wlp/ 6032F: drivers/uwb/i1480/i1480u-wlp/ 6033F: drivers/uwb/i1480/i1480-wlp.h 6034 6035WISTRON LAPTOP BUTTON DRIVER 6036M: Miloslav Trmac <mitr@volny.cz> 6037S: Maintained 6038F: drivers/input/misc/wistron_btns.c 6039 6040WL1251 WIRELESS DRIVER 6041M: Kalle Valo <kalle.valo@iki.fi> 6042L: linux-wireless@vger.kernel.org 6043W: http://wireless.kernel.org 6044T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git 6045S: Maintained 6046F: drivers/net/wireless/wl12xx/* 6047X: drivers/net/wireless/wl12xx/wl1271* 6048 6049WL1271 WIRELESS DRIVER 6050M: Luciano Coelho <luciano.coelho@nokia.com> 6051L: linux-wireless@vger.kernel.org 6052W: http://wireless.kernel.org 6053T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git 6054S: Maintained 6055F: drivers/net/wireless/wl12xx/wl1271* 6056 6057WL3501 WIRELESS PCMCIA CARD DRIVER 6058M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> 6059L: linux-wireless@vger.kernel.org 6060W: http://oops.ghostprotocols.net:81/blog 6061S: Maintained 6062F: drivers/net/wireless/wl3501* 6063 6064WM97XX TOUCHSCREEN DRIVERS 6065M: Mark Brown <broonie@opensource.wolfsonmicro.com> 6066M: Liam Girdwood <lrg@slimlogic.co.uk> 6067L: linux-input@vger.kernel.org 6068T: git git://opensource.wolfsonmicro.com/linux-2.6-touch 6069W: http://opensource.wolfsonmicro.com/node/7 6070S: Supported 6071F: drivers/input/touchscreen/*wm97* 6072F: include/linux/wm97xx.h 6073 6074WOLFSON MICROELECTRONICS PMIC DRIVERS 6075M: Mark Brown <broonie@opensource.wolfsonmicro.com> 6076T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus 6077W: http://opensource.wolfsonmicro.com/node/8 6078S: Supported 6079F: Documentation/hwmon/wm83?? 6080F: drivers/leds/leds-wm83*.c 6081F: drivers/mfd/wm8*.c 6082F: drivers/power/wm83*.c 6083F: drivers/rtc/rtc-wm83*.c 6084F: drivers/regulator/wm8*.c 6085F: drivers/video/backlight/wm83*_bl.c 6086F: drivers/watchdog/wm83*_wdt.c 6087F: include/linux/mfd/wm831x/ 6088F: include/linux/mfd/wm8350/ 6089F: include/linux/mfd/wm8400* 6090F: sound/soc/codecs/wm8350.* 6091F: sound/soc/codecs/wm8400.* 6092 6093X.25 NETWORK LAYER 6094M: Andrew Hendry <andrew.hendry@gmail.com> 6095L: linux-x25@vger.kernel.org 6096S: Odd Fixes 6097F: Documentation/networking/x25* 6098F: include/net/x25* 6099F: net/x25/ 6100 6101X86 ARCHITECTURE (32-BIT AND 64-BIT) 6102M: Thomas Gleixner <tglx@linutronix.de> 6103M: Ingo Molnar <mingo@redhat.com> 6104M: "H. Peter Anvin" <hpa@zytor.com> 6105M: x86@kernel.org 6106T: git git://git.kernel.org/pub/scm/linux/kernel/git/x86/linux-2.6-x86.git 6107S: Maintained 6108F: Documentation/x86/ 6109F: arch/x86/ 6110 6111X86 PLATFORM DRIVERS 6112M: Matthew Garrett <mjg@redhat.com> 6113L: platform-driver-x86@vger.kernel.org 6114T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git 6115S: Maintained 6116F: drivers/platform/x86 6117 6118XEN HYPERVISOR INTERFACE 6119M: Jeremy Fitzhardinge <jeremy@xensource.com> 6120M: Chris Wright <chrisw@sous-sol.org> 6121L: virtualization@lists.osdl.org 6122L: xen-devel@lists.xensource.com 6123S: Supported 6124F: arch/x86/xen/ 6125F: drivers/*/xen-*front.c 6126F: drivers/xen/ 6127F: arch/x86/include/asm/xen/ 6128F: include/xen/ 6129 6130XFS FILESYSTEM 6131P: Silicon Graphics Inc 6132M: Alex Elder <aelder@sgi.com> 6133M: xfs-masters@oss.sgi.com 6134L: xfs@oss.sgi.com 6135W: http://oss.sgi.com/projects/xfs 6136T: git git://oss.sgi.com/xfs/xfs.git 6137S: Supported 6138F: Documentation/filesystems/xfs.txt 6139F: fs/xfs/ 6140 6141XILINX SYSTEMACE DRIVER 6142M: Grant Likely <grant.likely@secretlab.ca> 6143W: http://www.secretlab.ca/ 6144S: Maintained 6145F: drivers/block/xsysace.c 6146 6147XILINX UARTLITE SERIAL DRIVER 6148M: Peter Korsgaard <jacmet@sunsite.dk> 6149L: linux-serial@vger.kernel.org 6150S: Maintained 6151F: drivers/serial/uartlite.c 6152 6153YAM DRIVER FOR AX.25 6154M: Jean-Paul Roubelat <jpr@f6fbb.org> 6155L: linux-hams@vger.kernel.org 6156S: Maintained 6157F: drivers/net/hamradio/yam* 6158F: include/linux/yam.h 6159 6160YEALINK PHONE DRIVER 6161M: Henk Vergonet <Henk.Vergonet@gmail.com> 6162L: usbb2k-api-dev@nongnu.org 6163S: Maintained 6164F: Documentation/input/yealink.txt 6165F: drivers/input/misc/yealink.* 6166 6167Z8530 DRIVER FOR AX.25 6168M: Joerg Reuter <jreuter@yaina.de> 6169W: http://yaina.de/jreuter/ 6170W: http://www.qsl.net/dl1bke/ 6171L: linux-hams@vger.kernel.org 6172S: Maintained 6173F: Documentation/networking/z8530drv.txt 6174F: drivers/net/hamradio/*scc.c 6175F: drivers/net/hamradio/z8530.h 6176 6177ZD1211RW WIRELESS DRIVER 6178M: Daniel Drake <dsd@gentoo.org> 6179M: Ulrich Kunitz <kune@deine-taler.de> 6180W: http://zd1211.ath.cx/wiki/DriverRewrite 6181L: linux-wireless@vger.kernel.org 6182L: zd1211-devs@lists.sourceforge.net (subscribers-only) 6183S: Maintained 6184F: drivers/net/wireless/zd1211rw/ 6185 6186ZR36067 VIDEO FOR LINUX DRIVER 6187L: mjpeg-users@lists.sourceforge.net 6188L: linux-media@vger.kernel.org 6189W: http://mjpeg.sourceforge.net/driver-zoran/ 6190T: Mercurial http://linuxtv.org/hg/v4l-dvb 6191S: Odd Fixes 6192F: drivers/media/video/zoran/ 6193 6194ZS DECSTATION Z85C30 SERIAL DRIVER 6195M: "Maciej W. Rozycki" <macro@linux-mips.org> 6196S: Maintained 6197F: drivers/serial/zs.* 6198 6199THE REST 6200M: Linus Torvalds <torvalds@linux-foundation.org> 6201L: linux-kernel@vger.kernel.org 6202T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git 6203S: Buried alive in reporters 6204F: * 6205F: */ 6206