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