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