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