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