kernel-docs.txt
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:35k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1.        Index of Documentation for People Interested in Writing and/or
  2.                                       
  3.                       Understanding the Linux Kernel.
  4.                                       
  5.                Juan-Mariano de Goyeneche <jmseyas@dit.upm.es>
  6.                                       
  7. /*
  8.  * The latest version of this document may be found at:
  9.  *   http://www.dit.upm.es/~jmseyas/linux/kernel/hackers-docs.html
  10.  */
  11.    The need for a document like this one became apparent in the
  12.    linux-kernel mailing list as the same questions, asking for pointers
  13.    to information, appeared again and again.
  14.    
  15.    Fortunately, as more and more people get to GNU/Linux, more and more
  16.    get interested in the Kernel. But reading the sources is not always
  17.    enough. It is easy to understand the code, but miss the concepts, the
  18.    philosophy and design decisions behind this code.
  19.    
  20.    Unfortunately, not many documents are available for beginners to
  21.    start. And, even if they exist, there was no "well-known" place which
  22.    kept track of them. These lines try to cover this lack. All documents
  23.    available on line known by the author are listed, while some reference
  24.    books are also mentioned.
  25.    
  26.    PLEASE, if you know any paper not listed here or write a new document,
  27.    send me an e-mail, and I'll include a reference to it here. Any
  28.    corrections, ideas or comments are also welcomed.
  29.    
  30.    The papers that follow are listed in no particular order. All are
  31.    cataloged with the following fields: the document's "Title", the
  32.    "Author"/s, the "URL" where they can be found, some "Keywords" helpful
  33.    when searching for specific topics, and a brief "Description" of the
  34.    Document.
  35.    
  36.    Enjoy!
  37.    
  38.      ON-LINE DOCS:
  39.        
  40.      * Title: "The Linux Kernel"
  41.        Author: David A. Rusling.
  42.        URL: http://www.linuxdoc.org/LDP/tlk/tlk.html
  43.        Keywords: everything!, book.
  44.        Description: On line, 200 pages book describing most aspects of
  45.        the Linux Kernel. Probably, the first reference for beginners.
  46.        Lots of illustrations explaining data structures use and
  47.        relationships in the purest Richard W. Stevens' style. Contents:
  48.        "1.-Hardware Basics, 2.-Software Basics, 3.-Memory Management,
  49.        4.-Processes, 5.-Interprocess Communication Mechanisms, 6.-PCI,
  50.        7.-Interrupts and Interrupt Handling, 8.-Device Drivers, 9.-The
  51.        File system, 10.-Networks, 11.-Kernel Mechanisms, 12.-Modules,
  52.        13.-The Linux Kernel Sources, A.-Linux Data Structures, B.-The
  53.        Alpha AXP Processor, C.-Useful Web and FTP Sites, D.-The GNU
  54.        General Public License, Glossary". In short: a must have.
  55.        
  56.      * Title: "The Linux Kernel Hackers' Guide"
  57.        Author: Michael K.Johnson and others.
  58.        URL: http://www.linuxdoc.org/LDP/khg/HyperNews/get/khg.html
  59.        Keywords: everything!
  60.        Description: No more Postscript book-like version. Only HTML now.
  61.        Many people have contributed. The interface is similar to web
  62.        available mailing lists archives. You can find some articles and
  63.        then some mails asking questions about them and/or complementing
  64.        previous contributions. A little bit anarchic in this aspect, but
  65.        with some valuable information in some cases.
  66.        
  67.      * Title: "Conceptual Architecture of the Linux Kernel"
  68.        Author: Ivan T. Bowman.
  69.        URL: http://plg.uwaterloo.ca/~itbowman/papers/CS746G-a1.html
  70.        Keywords: conceptual software arquitecture, extracted design,
  71.        reverse engineering, system structure.
  72.        Description: Conceptual software arquitecture of the Linux kernel,
  73.        automatically extracted from the source code. Very detailed. Good
  74.        figures. Gives good overall kernel understanding.
  75.        
  76.      * Title: "Concrete Architecture of the Linux Kernel"
  77.        Author: Ivan T. Bowman, Saheem Siddiqi, and Meyer C. Tanuan.
  78.        URL: http://plg.uwaterloo.ca/~itbowman/papers/CS746G-a2.html
  79.        Keywords: concrete arquitecture, extracted design, reverse
  80.        engineering, system structure, dependencies.
  81.        Description: Concrete arquitecture of the Linux kernel,
  82.        automatically extracted from the source code. Very detailed. Good
  83.        figures. Gives good overall kernel understanding. This papers
  84.        focus on lower details than its predecessor (files, variables...).
  85.        
  86.      * Title: "Linux as a Case Study: Its Extracted Software
  87.        Architecture"
  88.        Author: Ivan T. Bowman, Richard C. Holt and Neil V. Brewster.
  89.        URL: http://plg.uwaterloo.ca/~itbowman/papers/linuxcase.html
  90.        Keywords: software architecture, architecture recovery,
  91.        redocumentation.
  92.        Description: Paper appeared at ICSE'99, Los Angeles, May 16-22,
  93.        1999. A mixture of the previous two documents from the same
  94.        author.
  95.        
  96.      * Title: "Overview of the Virtual File System"
  97.        Author: Richard Gooch.
  98.        URL: http://www.atnf.csiro.au/~rgooch/linux/vfs.txt
  99.        Keywords: VFS, File System, mounting filesystems, opening files,
  100.        dentries, dcache.
  101.        Description: Brief introduction to the Linux Virtual File System.
  102.        What is it, how it works, operations taken when opening a file or
  103.        mounting a file system and description of important data
  104.        structures explaining the purpose of each of their entries.
  105.        
  106.      * Title: "The Linux RAID-1, 4, 5 Code"
  107.        Author: Ingo Molnar, Gadi Oxman and Miguel de Icaza.
  108.        URL: http://www2.linuxjournal.com/lj-issues/issue44/2391.html
  109.        Keywords: RAID, MD driver.
  110.        Description: Linux Journal Kernel Korner article. Here is it's
  111.        abstract: "A description of the implementation of the RAID-1,
  112.        RAID-4 and RAID-5 personalities of the MD device driver in the
  113.        Linux kernel, providing users with high performance and reliable,
  114.        secondary-storage capability using software".
  115.        
  116.      * Title: "Dynamic Kernels: Modularized Device Drivers"
  117.        Author: Alessandro Rubini.
  118.        URL: http://www2.linuxjournal.com/lj-issues/issue23/1219.html
  119.        Keywords: device driver, module, loading/unloading modules,
  120.        allocating resources.
  121.        Description: Linux Journal Kernel Korner article. Here is it's
  122.        abstract: "This is the first of a series of four articles
  123.        co-authored by Alessandro Rubini and Georg Zezchwitz which present
  124.        a practical approach to writing Linux device drivers as kernel
  125.        loadable modules. This installment presents an introduction to the
  126.        topic, preparing the reader to understand next month's
  127.        installment".
  128.        
  129.      * Title: "Dynamic Kernels: Discovery"
  130.        Author: Alessandro Rubini.
  131.        URL: http://www2.linuxjournal.com/lj-issues/issue24/1220.html
  132.        Keywords: character driver, init_module, clean_up module,
  133.        autodetection, mayor number, minor number, file operations,
  134.        open(), close().
  135.        Description: Linux Journal Kernel Korner article. Here is it's
  136.        abstract: "This article, the second of four, introduces part of
  137.        the actual code to create custom module implementing a character
  138.        device driver. It describes the code for module initialization and
  139.        cleanup, as well as the open() and close() system calls".
  140.        
  141.      * Title: "The Devil's in the Details"
  142.        Author: Georg v. Zezschwitz and Alessandro Rubini.
  143.        URL: http://www2.linuxjournal.com/lj-issues/issue25/1221.html
  144.        Keywords: read(), write(), select(), ioctl(), blocking/non
  145.        blocking mode, interrupt handler.
  146.        Description: Linux Journal Kernel Korner article. Here is it's
  147.        abstract: "This article, the third of four on writing character
  148.        device drivers, introduces concepts of reading, writing, and using
  149.        ioctl-calls".
  150.        
  151.      * Title: "Dissecting Interrupts and Browsing DMA"
  152.        Author: Alessandro Rubini and Georg v. Zezschwitz.
  153.        URL: http://www2.linuxjournal.com/lj-issues/issue26/1222.html
  154.        Keywords: interrupts, irqs, DMA, bottom halves, task queues.
  155.        Description: Linux Journal Kernel Korner article. Here is it's
  156.        abstract: "This is the fourth in a series of articles about
  157.        writing character device drivers as loadable kernel modules. This
  158.        month, we further investigate the field of interrupt handling.
  159.        Though it is conceptually simple, practical limitations and
  160.        constraints make this an ``interesting'' part of device driver
  161.        writing, and several different facilities have been provided for
  162.        different situations. We also investigate the complex topic of
  163.        DMA".
  164.        
  165.      * Title: "Device Drivers Concluded"
  166.        Author: Georg v. Zezschwitz.
  167.        URL: http://www2.linuxjournal.com/lj-issues/issue28/1287.html
  168.        Keywords: address spaces, pages, pagination, page management,
  169.        demand loading, swapping, memory protection, memory mapping, mmap,
  170.        virtual memory areas (VMAs), vremap, PCI.
  171.        Description: Finally, the above turned out into a five articles
  172.        series. This latest one's introduction reads: "This is the last of
  173.        five articles about character device drivers. In this final
  174.        section, Georg deals with memory mapping devices, beginning with
  175.        an overall description of the Linux memory management concepts".
  176.        
  177.      * Title: "Network Buffers And Memory Management"
  178.        Author: Alan Cox.
  179.        URL: http://www2.linuxjournal.com/lj-issues/issue30/1312.html
  180.        Keywords: sk_buffs, network devices, protocol/link layer
  181.        variables, network devices flags, transmit, receive,
  182.        configuration, multicast.
  183.        Description: Linux Journal Kernel Korner. Here is the abstract:
  184.        "Writing a network device driver for Linux is fundamentally
  185.        simple---most of the complexity (other than talking to the
  186.        hardware) involves managing network packets in memory".
  187.        
  188.      * Title: "Writing Linux Device Drivers"
  189.        Author: Michael K. Johnson.
  190.        URL: http://people.redhat.com/johnsonm/devices.html
  191.        Keywords: files, VFS, file operations, kernel interface, character
  192.        vs block devices, I/O access, hardware interrupts, DMA, access to
  193.        user memory, memory allocation, timers.
  194.        Description: Introductory 50-minutes (sic) tutorial on writing
  195.        device drivers. 12 pages written by the same author of the "Kernel
  196.        Hackers' Guide" which give a very good overview of the topic.
  197.        
  198.      * Title: "The Venus kernel interface"
  199.        Author: Peter J. Braam.
  200.        URL:
  201.        http://www.coda.cs.cmu.edu/doc/html/kernel-venus-protocol.html
  202.        Keywords: coda, filesystem, venus, cache manager.
  203.        Description: "This document describes the communication between
  204.        Venus and kernel level file system code needed for the operation
  205.        of the Coda filesystem. This version document is meant to describe
  206.        the current interface (version 1.0) as well as improvements we
  207.        envisage".
  208.        
  209.      * Title: "Programming PCI-Devices under Linux"
  210.        Author: Claus Schroeter.
  211.        URL:
  212.        ftp://ftp.llp.fu-berlin.de/pub/linux/LINUX-LAB/whitepapers/pcip.ps
  213.        .gz
  214.        Keywords: PCI, device, busmastering.
  215.        Description: 6 pages tutorial on PCI programming under Linux.
  216.        Gives the basic concepts on the architecture of the PCI subsystem,
  217.        as long as basic functions and macros to read/write the devices
  218.        and perform busmastering.
  219.        
  220.      * Title: "Writing Character Device Driver for Linux"
  221.        Author: R. Baruch and C. Schroeter.
  222.        URL:
  223.        ftp://ftp.llp.fu-berlin.de/pub/linux/LINUX-LAB/whitepapers/drivers
  224.        .ps.gz
  225.        Keywords: character device drivers, I/O, signals, DMA, accessing
  226.        ports in user space, kernel environment.
  227.        Description: 68 pages paper on writing character drivers. A little
  228.        bit old (1.993, 1.994) although still useful.
  229.        
  230.      * Title: "Design and Implementation of the Second Extended
  231.        Filesystem"
  232.        Author: R閙y Card, Theodore Ts'o, Stephen Tweedie.
  233.        URL: http://web.mit.edu/tytso/www/linux/ext2intro.html
  234.        Keywords: ext2, linux fs history, inode, directory, link, devices,
  235.        VFS, physical structure, performance, benchmarks, ext2fs library,
  236.        ext2fs tools, e2fsck.
  237.        Description: Paper written by three of the top ext2 hackers.
  238.        Covers Linux filesystems history, ext2 motivation, ext2 features,
  239.        design, physical structure on disk, performance, benchmarks,
  240.        e2fsck's passes description... A must read!
  241.        Notes: This paper was first published in the Proceedings of the
  242.        First Dutch International Symposium on Linux, ISBN 90-367-0385-9.
  243.        
  244.      * Title: "Analysis of the Ext2fs structure"
  245.        Author: Louis-Dominique Dubeau.
  246.        URL: http://step.polymtl.ca/~ldd/ext2fs/ext2fs_toc.html
  247.        Keywords: ext2, filesystem, ext2fs.
  248.        Description: Description of ext2's blocks, directories, inodes,
  249.        bitmaps, invariants...
  250.        
  251.      * Title: "Journaling the Linux ext2fs Filesystem"
  252.        Author: Stephen C. Tweedie.
  253.        URL:
  254.        ftp://ftp.uk.linux.org/pub/linux/sct/fs/jfs/journal-design.ps.gz
  255.        Keywords: ext3, journaling.
  256.        Description: Excellent 8-pages paper explaining the journaling
  257.        capabilities added to ext2 by the author, showing different
  258.        problems faced and the alternatives chosen.
  259.        
  260.      * Title: "Kernel API changes from 2.0 to 2.2"
  261.        Author: Richard Gooch.
  262.        URL:
  263.        http://www.atnf.csiro.au/~rgooch/linux/docs/porting-to-2.2.html
  264.        Keywords: 2.2, changes.
  265.        Description: Kernel functions/structures/variables which changed
  266.        from 2.0.x to 2.2.x.
  267.        
  268.      * Title: "Kernel API changes from 2.2 to 2.4"
  269.        Author: Richard Gooch.
  270.        URL:
  271.        http://www.atnf.csiro.au/~rgooch/linux/docs/porting-to-2.4.html
  272.        Keywords: 2.4, changes.
  273.        Description: Kernel functions/structures/variables which changed
  274.        from 2.2.x to 2.4.x.
  275.        
  276.      * Title: "Linux Kernel Module Programming Guide"
  277.        Author: Ori Pomerantz.
  278.        URL: http://www.linuxdoc.org/LDP/lkmpg/mpg.html
  279.        Keywords: modules, GPL book, /proc, ioctls, system calls,
  280.        interrupt handlers .
  281.        Description: Very nice 92 pages GPL book on the topic of modules
  282.        programming. Lots of examples.
  283.        
  284.      * Title: "Device File System (devfs) Overview"
  285.        Author: Richard Gooch.
  286.        URL: http://www.atnf.csiro.au/~rgooch/linux/docs/devfs.txt
  287.        Keywords: filesystem, /dev, devfs, dynamic devices, major/minor
  288.        allocation, device management.
  289.        Description: Document describing Richard Gooch's controversial
  290.        devfs, which allows for dynamic devices, only shows present
  291.        devices in /dev, gets rid of major/minor numbers allocation
  292.        problems, and allows for hundreds of identical devices (which some
  293.        USB systems might demand soon).
  294.        
  295.      * Title: "I/O Event Handling Under Linux"
  296.        Author: Richard Gooch.
  297.        URL: http://www.atnf.csiro.au/~rgooch/linux/docs/io-events.html
  298.        Keywords: IO, I/O, select(2), poll(2), FDs, aio_read(2), readiness
  299.        event queues.
  300.        Description: From the Introduction: "I/O Event handling is about
  301.        how your Operating System allows you to manage a large number of
  302.        open files (file descriptors in UNIX/POSIX, or FDs) in your
  303.        application. You want the OS to notify you when FDs become active
  304.        (have data ready to be read or are ready for writing). Ideally you
  305.        want a mechanism that is scalable. This means a large number of
  306.        inactive FDs cost very little in memory and CPU time to manage".
  307.        
  308.      * Title: "The Kernel Hacking HOWTO"
  309.        Author: Various Talented People, and Rusty.
  310.        URL:
  311.        http://www.lisoleg.net/doc/Kernel-Hacking-HOWTO/kernel-hacking-HOW
  312.        TO.html
  313.        Keywords: HOWTO, kernel contexts, deadlock, locking, modules,
  314.        symbols, return conventions.
  315.        Description: From the Introduction: "Please understand that I
  316.        never wanted to write this document, being grossly underqualified,
  317.        but I always wanted to read it, and this was the only way. I
  318.        simply explain some best practices, and give reading entry-points
  319.        into the kernel sources. I avoid implementation details: that's
  320.        what the code is for, and I ignore whole tracts of useful
  321.        routines. This document assumes familiarity with C, and an
  322.        understanding of what the kernel is, and how it is used. It was
  323.        originally written for the 2.3 kernels, but nearly all of it
  324.        applies to 2.2 too; 2.0 is slightly different".
  325.        
  326.      * Title: "ALSA 0.5.0 Developer documentation"
  327.        Author: Stephan 'Jumpy' Bartels .
  328.        URL: http://www.math.TU-Berlin.de/~sbartels/alsa/
  329.        Keywords: ALSA, sound, soundcard, driver, lowlevel, hardware.
  330.        Description: Advanced Linux Sound Architecture for developers,
  331.        both at kernel and user-level sides. Work in progress. ALSA is
  332.        supposed to be Linux's next generation sound architecture.
  333.        
  334.      * Title: "Programming Guide for Linux USB Device Drivers"
  335.        Author: Detlef Fliegl.
  336.        URL: http://usb.in.tum.de/usbdoc/
  337.        Keywords: USB, universal serial bus.
  338.        Description: A must-read. From the Preface: "This document should
  339.        give detailed information about the current state of the USB
  340.        subsystem and its API for USB device drivers. The first section
  341.        will deal with the basics of USB devices. You will learn about
  342.        different types of devices and their properties. Going into detail
  343.        you will see how USB devices communicate on the bus. The second
  344.        section gives an overview of the Linux USB subsystem [2] and the
  345.        device driver framework. Then the API and its data structures will
  346.        be explained step by step. The last section of this document
  347.        contains a reference of all API calls and their return codes".
  348.        Notes: Beware: the main page states: "This document may not be
  349.        published, printed or used in excerpts without explicit permission
  350.        of the author". Fortunately, it may still be read...
  351.        
  352.      * Title: "Tour Of the Linux Kernel Source"
  353.        Author: Vijo Cherian.
  354.        URL: http://www.geocities.com/vijoc/tolks/tolks.html
  355.        Keywords: .
  356.        Description: A classic of this page! Was lost for a while and is
  357.        back again. Thanks Vijo! TOLKS: the name says it all. A tour of
  358.        the sources, describing directories, files, variables, data
  359.        structures... It covers general stuff, device drivers,
  360.        filesystems, IPC and Networking Code.
  361.        
  362.      * Title: "Linux Kernel Mailing List Glossary"
  363.        Author: John Levon.
  364.        URL: http://www.movement.uklinux.net/glossary.html
  365.        Keywords: glossary, terms, linux-kernel.
  366.        Description: From the introduction: "This glossary is intended as
  367.        a brief description of some of the acronyms and terms you may hear
  368.        during discussion of the Linux kernel".
  369.        
  370.      * Title: "Linux Kernel Locking HOWTO"
  371.        Author: Various Talented People, and Rusty.
  372.        URL:
  373.        http://netfilter.kernelnotes.org/unreliable-guides/kernel-locking-
  374.        HOWTO.html
  375.        Keywords: locks, locking, spinlock, semaphore, atomic, race
  376.        condition, bottom halves, tasklets, softirqs.
  377.        Description: The title says it all: document describing the
  378.        locking system in the Linux Kernel either in uniprocessor or SMP
  379.        systems.
  380.        Notes: "It was originally written for the later (>2.3.47) 2.3
  381.        kernels, but most of it applies to 2.2 too; 2.0 is slightly
  382.        different". Freely redistributable under the conditions of the GNU
  383.        General Public License.
  384.        
  385.      * Title: "Porting Linux 2.0 Drivers To Linux 2.2: Changes and New
  386.        Features "
  387.        Author: Alan Cox.
  388.        URL: http://www.linux-mag.com/1999-05/gear_01.html
  389.        Keywords: ports, porting.
  390.        Description: Article from Linux Magazine on porting from 2.0 to
  391.        2.2 kernels.
  392.        
  393.      * Title: "Porting Device Drivers To Linux 2.2: part II"
  394.        Author: Alan Cox.
  395.        URL: http://www.linux-mag.com/1999-06/gear_01.html
  396.        Keywords: ports, porting.
  397.        Description: Second part on porting from 2.0 to 2.2 kernels.
  398.        
  399.      * Title: "How To Make Sure Your Driver Will Work On The Power
  400.        Macintosh"
  401.        Author: Paul Mackerras.
  402.        URL: http://www.linux-mag.com/1999-07/gear_01.html
  403.        Keywords: Mac, Power Macintosh, porting, drivers, compatibility.
  404.        Description: The title says it all.
  405.        
  406.      * Title: "An Introduction to SCSI Drivers"
  407.        Author: Alan Cox.
  408.        URL: http://www.linux-mag.com/1999-08/gear_01.html
  409.        Keywords: SCSI, device, driver.
  410.        Description: The title says it all.
  411.        
  412.      * Title: "Advanced SCSI Drivers And Other Tales"
  413.        Author: Alan Cox.
  414.        URL: http://www.linux-mag.com/1999-09/gear_01.html
  415.        Keywords: SCSI, device, driver, advanced.
  416.        Description: The title says it all.
  417.        
  418.      * Title: "Writing Linux Mouse Drivers"
  419.        Author: Alan Cox.
  420.        URL: http://www.linux-mag.com/1999-10/gear_01.html
  421.        Keywords: mouse, driver, gpm.
  422.        Description: The title says it all.
  423.        
  424.      * Title: "More on Mouse Drivers"
  425.        Author: Alan Cox.
  426.        URL: http://www.linux-mag.com/1999-11/gear_01.html
  427.        Keywords: mouse, driver, gpm, races, asynchronous I/O.
  428.        Description: The title still says it all.
  429.        
  430.      * Title: "Writing Video4linux Radio Driver"
  431.        Author: Alan Cox.
  432.        URL: http://www.linux-mag.com/1999-12/gear_01.html
  433.        Keywords: video4linux, driver, radio, radio devices.
  434.        Description: The title says it all.
  435.        
  436.      * Title: "Video4linux Drivers, Part 1: Video-Capture Device"
  437.        Author: Alan Cox.
  438.        URL: http://www.linux-mag.com/2000-01/gear_01.html
  439.        Keywords: video4linux, driver, video capture, capture devices,
  440.        camera driver.
  441.        Description: The title says it all.
  442.        
  443.      * Title: "Video4linux Drivers, Part 2: Video-capture Devices"
  444.        Author: Alan Cox.
  445.        URL: http://www.linux-mag.com/2000-02/gear_01.html
  446.        Keywords: video4linux, driver, video capture, capture devices,
  447.        camera driver, control, query capabilities, capability, facility.
  448.        Description: The title says it all.
  449.        
  450.      * Title: "PCI Management in Linux 2.2"
  451.        Author: Alan Cox.
  452.        URL: http://www.linux-mag.com/2000-03/gear_01.html
  453.        Keywords: PCI, bus, bus-mastering.
  454.        Description: The title says it all.
  455.        
  456.      * Title: "Linux 2.4 Kernel Internals"
  457.        Author: Tigran Aivazian and Christoph Hellwig.
  458.        URL: http://www.moses.uklinux.net/patches/lki.html
  459.        Keywords: Linux, kernel, booting, SMB boot, VFS, page cache.
  460.        Description: A little book used for a short training course.
  461.        Covers building the kernel image, booting (including SMP bootup),
  462.        process management, VFS and more.
  463.        
  464.      * Title: "Linux IP Networking. A Guide to the Implementation and
  465.        Modification of the Linux Protocol Stack."
  466.        Author: Glenn Herrin.
  467.        URL:
  468.        http://kernelnewbies.org/documents/ipnetworking/linuxipnetworking.
  469.        html
  470.        Keywords: network, networking, protocol, IP, UDP, TCP, connection,
  471.        socket, receiving, transmitting, forwarding, routing, packets,
  472.        modules, /proc, sk_buff, FIB, tags.
  473.        Description: Excellent paper devoted to the Linux IP Networking,
  474.        explaining anything from the kernel's to the user space
  475.        configuration tools' code. Very good to get a general overview of
  476.        the kernel networking implementation and understand all steps
  477.        packets follow from the time they are received at the network
  478.        device till they are delivered to applications. The studied kernel
  479.        code is from 2.2.14 version. Provides code for a working packet
  480.        dropper example.
  481.        
  482.      * Title: "Get those boards talking under Linux."
  483.        Author: Alex Ivchenko.
  484.        URL: http://www.ednmag.com/ednmag/reg/2000/06222000/13df2.htm
  485.        Keywords: data-acquisition boards, drivers, modules, interrupts,
  486.        memory allocation.
  487.        Description: Article written for people wishing to make their data
  488.        acquisition boards work on their GNU/Linux machines. Gives a basic
  489.        overview on writting drivers, from the naming of functions to
  490.        interrupt handling.
  491.        Notes: Two-parts article. Part II is at
  492.        http://www.ednmag.com/ednmag/reg/2000/07062000/14df.htm
  493.        
  494.      * Title: "Linux PCMCIA Programmer's Guide"
  495.        Author: David Hinds.
  496.        URL: http://pcmcia-cs.sourceforge.net/ftp/doc/PCMCIA-PROG.html
  497.        Keywords: PCMCIA.
  498.        Description: "This document describes how to write kernel device
  499.        drivers for the Linux PCMCIA Card Services interface. It also
  500.        describes how to write user-mode utilities for communicating with
  501.        Card Services.
  502.        
  503.      * Title: "The Linux Kernel NFSD Implementation"
  504.        Author: Neil Brown.
  505.        URL:
  506.        http://www.cse.unsw.edu.au/~neilb/oss/linux-commentary/nfsd.html
  507.        Keywords: knfsd, nfsd, NFS, RPC, lockd, mountd, statd.
  508.        Description: The title says it all.
  509.        Notes: Covers knfsd's version 1.4.7 (patch against 2.2.7 kernel).
  510.        
  511.      * Title: "A Linux vm README"
  512.        Author: Kanoj Sarcar.
  513.        URL: http://reality.sgi.com/kanoj_engr/vm229.html
  514.        Keywords: virtual memory, mm, pgd, vma, page, page flags, page
  515.        cache, swap cache, kswapd.
  516.        Description: Telegraphic, short descriptions and definitions
  517.        relating the Linux virtual memory implementation.
  518.        
  519.      * Title: "(nearly) Complete Linux Loadable Kernel Modules. The
  520.        definitive guide for hackers, virus coders and system
  521.        administrators."
  522.        Author: pragmatic/THC.
  523.        URL: http://packetstorm.securify.com/groups/thc/LKM_HACKING.html
  524.        Keywords: syscalls, intercept, hide, abuse, symbol table.
  525.        Description: Interesting paper on how to abuse the Linux kernel in
  526.        order to intercept and modify syscalls, make
  527.        files/directories/processes invisible, become root, hijack ttys,
  528.        write kernel modules based virus... and solutions for admins to
  529.        avoid all those abuses.
  530.        Notes: For 2.0.x kernels. Gives guidances to port it to 2.2.x
  531.        kernels. Also available in txt format at
  532.        http://www.blacknemesis.org/hacking/txt/cllkm.txt
  533.        
  534.      BOOKS: (Not on-line)
  535.    
  536.      * Title: "Linux Device Drivers"
  537.        Author: Alessandro Rubini.
  538.        Publisher: O'Reilly & Associates.
  539.        Date: 1998.
  540.        Pages: 439.
  541.        ISBN: 1-56592-292-1
  542.        
  543.      * Title: "Linux Device Drivers, 2nd Edition"
  544.        Author: Alessandro Rubini and Jonathan Corbet.
  545.        Publisher: O'Reilly & Associates.
  546.        Date: 2001.
  547.        Pages: 586.
  548.        ISBN: 0-59600-008-1
  549.        Notes: Further information in
  550.        http://www.oreilly.com/catalog/linuxdrive2/
  551.        
  552.      * Title: "Linux Kernel Internals"
  553.        Author: Michael Beck.
  554.        Publisher: Addison-Wesley.
  555.        Date: 1997.
  556.        ISBN: 0-201-33143-8 (second edition)
  557.        
  558.      * Title: "The Design of the UNIX Operating System"
  559.        Author: Maurice J. Bach.
  560.        Publisher: Prentice Hall.
  561.        Date: 1986.
  562.        Pages: 471.
  563.        ISBN: 0-13-201757-1
  564.        
  565.      * Title: "The Design and Implementation of the 4.3 BSD UNIX
  566.        Operating System"
  567.        Author: Samuel J. Leffler, Marshall Kirk McKusick, Michael J.
  568.        Karels, John S. Quarterman.
  569.        Publisher: Addison-Wesley.
  570.        Date: 1989 (reprinted with corrections on October, 1990).
  571.        ISBN: 0-201-06196-1
  572.        
  573.      * Title: "The Design and Implementation of the 4.4 BSD UNIX
  574.        Operating System"
  575.        Author: Marshall Kirk McKusick, Keith Bostic, Michael J. Karels,
  576.        John S. Quarterman.
  577.        Publisher: Addison-Wesley.
  578.        Date: 1996.
  579.        ISBN: 0-201-54979-4
  580.        
  581.      * Title: "Programmation Linux 2.0 API systeme et fonctionnement du
  582.        noyau"
  583.        Author: Remy Card, Eric Dumas, Franck Mevel.
  584.        Publisher: Eyrolles.
  585.        Date: 1997.
  586.        Pages: 520.
  587.        ISBN: 2-212-08932-5
  588.        Notes: French.
  589.        
  590.      * Title: "The Linux Kernel Book"
  591.        Author: Remy Card, Eric Dumas, Franck Mevel.
  592.        Publisher: John Wiley & Sons.
  593.        Date: 1998.
  594.        ISBN: 0-471-98141-9
  595.        Notes: English translation.
  596.        
  597.      * Title: "Linux 2.0"
  598.        Author: Remy Card, Eric Dumas, Franck Mevel.
  599.        Publisher: Gesti髇 2000.
  600.        Date: 1997.
  601.        Pages: 501.
  602.        ISBN: 8-480-88208-5
  603.        Notes: Spanish translation.
  604.        
  605.      * Title: "Unix internals -- the new frontiers"
  606.        Author: Uresh Vahalia.
  607.        Publisher: Prentice Hall.
  608.        Date: 1996.
  609.        Pages: 600.
  610.        ISBN: 0-13-101908-2
  611.        
  612.      * Title: "Linux Core Kernel Commentary. Guide to Insider's Knowledge
  613.        on the Core Kernel of the Linux Code"
  614.        Author: Scott Maxwell.
  615.        Publisher: Coriolis.
  616.        Date: 1999.
  617.        Pages: 592.
  618.        ISBN: 1-57610-469-9
  619.        Notes: CD-ROM included. Line by line commentary of the kernel
  620.        code.
  621.        
  622.      * Title: "Linux IP Stacks Commentary"
  623.        Author: Stephen Satchell and HBJ Clifford.
  624.        Publisher: Coriolis.
  625.        Date: 2000.
  626.        Pages: ???.
  627.        ISBN: 1-57610-470-2
  628.        Notes: Line by line source code commentary book.
  629.        
  630.      * Title: "Programming for the real world - POSIX.4"
  631.        Author: Bill O. Gallmeister.
  632.        Publisher: O'Reilly & Associates, Inc..
  633.        Date: 1995.
  634.        Pages: ???.
  635.        ISBN: I-56592-074-0
  636.        Notes: Though not being directly about Linux, Linux aims to be
  637.        POSIX. Good reference.
  638.        
  639.      * Title: "Understanding the Linux Kernel"
  640.        Author: Daniel P. Bovet and Marco Cesati.
  641.        Publisher: O'Reilly & Associates, Inc..
  642.        Date: 2000.
  643.        Pages: 702.
  644.        ISBN: 0-596-00002-2
  645.        Notes: Further information in
  646.        http://www.oreilly.com/catalog/linuxkernel/
  647.        
  648.      MISCELLANEOUS:
  649.    
  650.      * Name: linux/Documentation
  651.        Author: Many.
  652.        URL: Just look inside your kernel sources.
  653.        Keywords: anything, DocBook.
  654.        Description: Documentation that comes with the kernel sources,
  655.        inside the Documentation directory. Some pages from this document
  656.        (including this document itself) have been moved there, and might
  657.        be more up to date than the web version.
  658.        
  659.      * Name: "Linux Source Driver"
  660.        URL: http://lsd.linux.cz
  661.        Keywords: Browsing source code.
  662.        Description: "Linux Source Driver (LSD) is an application, which
  663.        can make browsing source codes of Linux kernel easier than you can
  664.        imagine. You can select between multiple versions of kernel (e.g.
  665.        0.01, 1.0.0, 2.0.33, 2.0.34pre13, 2.0.0, 2.1.101 etc.). With LSD
  666.        you can search Linux kernel (fulltext, macros, types, functions
  667.        and variables) and LSD can generate patches for you on the fly
  668.        (files, directories or kernel)".
  669.        
  670.      * Name: "Linux Kernel Source Reference"
  671.        Author: Thomas Graichen.
  672.        URL: http://innominate.org/~graichen/projects/lksr/
  673.        Keywords: CVS, web, cvsweb, browsing source code.
  674.        Description: Web interface to a CVS server with the kernel
  675.        sources. "Here you can have a look at any file of the Linux kernel
  676.        sources of any version starting from 1.0 up to the (daily updated)
  677.        current version available. Also you can check the differences
  678.        between two versions of a file".
  679.        
  680.      * Name: "Cross-Referencing Linux"
  681.        URL: http://lxr.linux.no/source/
  682.        Keywords: Browsing source code.
  683.        Description: Another web-based Linux kernel source code browser.
  684.        Lots of cross references to variables and functions. You can see
  685.        where they are defined and where they are used.
  686.        
  687.      * Name: "Linux Weekly News"
  688.        URL: http://lwn.net
  689.        Keywords: latest kernel news.
  690.        Description: The title says it all. There's a fixed kernel section
  691.        summarizing developers' work, bug fixes, new features and versions
  692.        produced during the week. Published every Thursday.
  693.        
  694.      * Name: "Kernel Traffic"
  695.        URL: http://kt.zork.net/kernel-traffic/
  696.        Keywords: linux-kernel mailing list, weekly kernel news.
  697.        Description: Weekly newsletter covering the most relevant
  698.        discussions of the linux-kernel mailing list.
  699.        
  700.      * Name: "CuTTiNG.eDGe.LiNuX"
  701.        URL: http://edge.kernelnotes.org
  702.        Keywords: changelist.
  703.        Description: Site which provides the changelist for every kernel
  704.        release. What's new, what's better, what's changed. Myrdraal reads
  705.        the patches and describes them. Pointers to the patches are there,
  706.        too.
  707.        
  708.      * Name: "New linux-kernel Mailing List FAQ"
  709.        URL: http://www.tux.org/lkml/
  710.        Keywords: linux-kernel mailing list FAQ.
  711.        Description: linux-kernel is a mailing list for developers to
  712.        communicate. This FAQ builds on the previous linux-kernel mailing
  713.        list FAQ maintained by Frohwalt Egerer, who no longer maintains
  714.        it. Read it to see how to join the mailing list. Dozens of
  715.        interesting questions regarding the list, Linux, developers (who
  716.        is ...?), terms (what is...?) are answered here too. Just read it.
  717.        
  718.      * Name: "Linux Virtual File System"
  719.        Author: Peter J. Braam.
  720.        URL: http://www.coda.cs.cmu.edu/doc/talks/linuxvfs/
  721.        Keywords: slides, VFS, inode, superblock, dentry, dcache.
  722.        Description: Set of slides, presumably from a presentation on the
  723.        Linux VFS layer. Covers version 2.1.x, with dentries and the
  724.        dcache.
  725.        
  726.      * Name: "Gary's Encyclopedia - The Linux Kernel"
  727.        Author: Gary (I suppose...).
  728.        URL: http://members.aa.net/~swear/pedia/kernel.html
  729.        Keywords: links, not found here?.
  730.        Description: Gary's Encyclopedia exists to allow the rapid finding
  731.        of documentation and other information of interest to GNU/Linux
  732.        users. It has about 4000 links to external pages in 150 major
  733.        categories. This link is for kernel-specific links, documents,
  734.        sites... Look there if you could not find here what you were
  735.        looking for.
  736.        
  737.      * Name: "The home page of Linux-MM"
  738.        Author: The Linux-MM team.
  739.        URL: http://linux-mm.org/
  740.        Keywords: memory management, Linux-MM, mm patches, TODO, docs,
  741.        mailing list.
  742.        Description: Site devoted to Linux Memory Management development.
  743.        Memory related patches, HOWTOs, links, mm developers... Don't miss
  744.        it if you are interested in memory management development!
  745.        
  746.      * Name: "Kernel Newbies IRC Channel"
  747.        URL: http://www.kernelnewbies.org
  748.        Keywords: IRC, newbies, channel, asking doubts.
  749.        Description: #kernelnewbies on irc.openprojects.net. From the web
  750.        page: "#kernelnewbies is an IRC network dedicated to the 'newbie'
  751.        kernel hacker. The audience mostly consists of people who are
  752.        learning about the kernel, working on kernel projects or
  753.        professional kernel hackers that want to help less seasoned kernel
  754.        people. [...] #kernelnewbies is on the Open Projects IRC Network,
  755.        try irc.openprojects.net or irc.<country>.openprojects.net as your
  756.        server and then /join #kernelnewbies". It also hosts articles,
  757.        documents, FAQs...
  758.        
  759.      * Name: "linux-kernel mailing list archives and search engines"
  760.        URL: http://www.uwsg.indiana.edu/hypermail/linux/kernel/index.html
  761.        URL: http://www.kernelnotes.org/lnxlists/linux-kernel/
  762.        URL: http://www.geocrawler.com
  763.        Keywords: linux-kernel, archives, search.
  764.        Description: Some of the linux-kernel mailing list archivers. If
  765.        you have a better/another one, please let me know.
  766.      _________________________________________________________________
  767.    
  768.    Document last updated on Thu Jun 28 15:09:39 CEST 2001