08 Dec, 2006

3 commits


07 Dec, 2006

1 commit

  • Here's a patch that cleans up the "make help" output a bit for the
    documentation targets.

    Currently the documentation targets are listed completely different than
    all the other targets :

    Documentation targets:
    Linux kernel internal documentation in different formats:
    xmldocs (XML DocBook), psdocs (Postscript), pdfdocs (PDF)
    htmldocs (HTML), mandocs (man pages, use installmandocs to install)

    with this patch they are more in line with the rest of the output :

    Documentation targets:
    Linux kernel internal documentation in different formats:
    htmldocs - HTML
    installmandocs - install man pages generated by mandocs
    mandocs - man pages
    pdfdocs - PDF
    psdocs - Postscript
    xmldocs - XML DocBook

    Signed-off-by: Jesper Juhl
    Acked-by: Randy Dunlap
    Signed-off-by: Linus Torvalds

    Jesper Juhl
     

02 Dec, 2006

1 commit

  • Allright. As Greg KH suggested I split this big patch into smaller ones to
    make the changes easier to review. Having no better idea how to split that I
    split it on a 'patch per file' basis. All those patches clean redundant 'if' before
    usb_unlink/free/kill_urb():

    if (urb)
    usb_free_urb(urb); /* unlink / free / kill */

    I decided not to touch bigger 'if's like

    if (urb) {
    usb_kill_urb(urb);
    usb_free_urb(urb);
    urb = NULL;
    }

    as that would be probably too intrusive. One of patches also fixes
    drivers/usb/misc/auerswald.c memleak I found when digging the code. All those
    patches are against 2.6.19-rc4.

    Signed-off-by: Mariusz Kozlowski
    Signed-off-by: Greg Kroah-Hartman

    Mariusz Kozlowski
     

24 Nov, 2006

1 commit


04 Nov, 2006

1 commit


31 Oct, 2006

1 commit

  • Make a filesystems DocBook book/file by moving all filesystems info from
    kernel-api.tmpl. Will also merge journal-api.tmpl into it soon (with
    permission from Roger Gammans). Localizes filesystem info and reduces size
    of the huge (produced) kernel-api output files.

    Signed-off-by: Randy Dunlap
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Randy Dunlap
     

04 Oct, 2006

4 commits

  • * 'upstream-linus' of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev:
    [libata] pata_artop: kill gcc warning
    [PATCH] libata: turn off NCQ if queue depth is adjusted to 1
    [PATCH] libata: cosmetic changes to constants
    [libata] DocBook minor updates, fixes
    [libata] PCI ID table cleanup in various drivers
    [libata] Print out Status register, if a BSY-sleep takes too long
    [libata] init probe_ent->private_data in a common location
    [libata] minor PCI IDE probe fixes and cleanups
    [libata] Use new PCI_VDEVICE() macro to dramatically shorten ID lists
    [PATCH] Fix reference of uninitialised memory in ata_device_add()

    Linus Torvalds
     
  • Fix kernel-doc and function declaration (missing "void") in
    mm/page_alloc.c.

    Add mm/page_alloc.c to kernel-api.tmpl in DocBook.

    mm/page_alloc.c:2589:38: warning: non-ANSI function declaration of function 'remove_all_active_ranges'

    Signed-off-by: Randy Dunlap
    Acked-by: Christoph Lameter
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Randy Dunlap
     
  • Remove many duplicated words under Documentation/ and do other small
    cleanups.

    Examples:
    "and and" --> "and"
    "in in" --> "in"
    "the the" --> "the"
    "the the" --> "to the"
    ...

    Signed-off-by: Paolo Ornati
    Signed-off-by: Adrian Bunk

    Paolo Ornati
     
  • Now that devfs is removed, there's no longer any need to document how to
    do this or that with devfs.

    This patch includes some improvements by Joe Perches.

    Signed-off-by: Adrian Bunk

    Adrian Bunk
     

03 Oct, 2006

2 commits


01 Oct, 2006

1 commit


30 Sep, 2006

4 commits


29 Sep, 2006

1 commit


28 Sep, 2006

2 commits


22 Aug, 2006

1 commit


01 Aug, 2006

3 commits


04 Jul, 2006

1 commit

  • * git://git.infradead.org/mtd-2.6:
    [JFFS2][XATTR] Fix memory leak in POSIX-ACL support
    fs/jffs2/: make 2 functions static
    [MTD] NAND: Fix broken sharpsl driver
    [JFFS2][XATTR] Fix xd->refcnt race condition
    MTD: kernel-doc fixes + additions
    MTD: fix all kernel-doc warnings
    [MTD] DOC: Fixup read functions and do a little cleanup

    Linus Torvalds
     

03 Jul, 2006

1 commit


01 Jul, 2006

1 commit


30 Jun, 2006

2 commits

  • * git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/devfs-2.6: (22 commits)
    [PATCH] devfs: Remove it from the feature_removal.txt file
    [PATCH] devfs: Last little devfs cleanups throughout the kernel tree.
    [PATCH] devfs: Rename TTY_DRIVER_NO_DEVFS to TTY_DRIVER_DYNAMIC_DEV
    [PATCH] devfs: Remove the tty_driver devfs_name field as it's no longer needed
    [PATCH] devfs: Remove the line_driver devfs_name field as it's no longer needed
    [PATCH] devfs: Remove the videodevice devfs_name field as it's no longer needed
    [PATCH] devfs: Remove the gendisk devfs_name field as it's no longer needed
    [PATCH] devfs: Remove the miscdevice devfs_name field as it's no longer needed
    [PATCH] devfs: Remove the devfs_fs_kernel.h file from the tree
    [PATCH] devfs: Remove devfs_remove() function from the kernel tree
    [PATCH] devfs: Remove devfs_mk_cdev() function from the kernel tree
    [PATCH] devfs: Remove devfs_mk_bdev() function from the kernel tree
    [PATCH] devfs: Remove devfs_mk_symlink() function from the kernel tree
    [PATCH] devfs: Remove devfs_mk_dir() function from the kernel tree
    [PATCH] devfs: Remove devfs_*_tape() functions from the kernel tree
    [PATCH] devfs: Remove devfs support from the sound subsystem
    [PATCH] devfs: Remove devfs support from the ide subsystem.
    [PATCH] devfs: Remove devfs support from the serial subsystem
    [PATCH] devfs: Remove devfs from the init code
    [PATCH] devfs: Remove devfs from the partition code
    ...

    Linus Torvalds
     
  • Add docbook file - includes API documentation.

    Signed-off-by: Thomas Gleixner
    Signed-off-by: Ingo Molnar
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Thomas Gleixner
     

29 Jun, 2006

2 commits

  • Fix some kernel-doc typos/spellos.
    Use kernel-doc syntax in places where it was almost used.
    Correct/add struct, struct field, and function param names where needed.

    Signed-off-by: Randy Dunlap
    Signed-off-by: David Woodhouse

    Randy Dunlap
     
  • Fix all kernel-doc warnings in MTD headers and source files:
    - add some missing struct fields;
    - correct some function parameter names;
    - use kernel-doc format for function doc. headers;
    - nand_ecc.c contains only exported interfaces, no internal ones;

    Signed-off-by: Randy Dunlap
    Signed-off-by: David Woodhouse

    Randy Dunlap
     

27 Jun, 2006

2 commits


26 Jun, 2006

5 commits