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