05 Jul, 2008

1 commit


24 Apr, 2008

1 commit


03 Feb, 2008

2 commits


29 Jan, 2008

1 commit


20 Oct, 2007

1 commit

  • * Convert files to UTF-8.

    * Also correct some people's names
    (one example is Eißfeldt, which was found in a source file.
    Given that the author used an ß at all in a source file
    indicates that the real name has in fact a 'ß' and not an 'ss',
    which is commonly used as a substitute for 'ß' when limited to
    7bit.)

    * Correct town names (Goettingen -> Göttingen)

    * Update Eberhard Mönkeberg's address (http://lkml.org/lkml/2007/1/8/313)

    Signed-off-by: Jan Engelhardt
    Signed-off-by: Adrian Bunk

    Jan Engelhardt
     

17 Oct, 2007

3 commits

  • * git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild: (40 commits)
    kbuild: introduce ccflags-y, asflags-y and ldflags-y
    kbuild: enable 'make CPPFLAGS=...' to add additional options to CPP
    kbuild: enable use of AFLAGS and CFLAGS on commandline
    kbuild: enable 'make AFLAGS=...' to add additional options to AS
    kbuild: fix AFLAGS use in h8300 and m68knommu
    kbuild: check for wrong use of CFLAGS
    kbuild: enable 'make CFLAGS=...' to add additional options to CC
    kbuild: fix up CFLAGS usage
    kbuild: make modpost detect unterminated device id lists
    kbuild: call export_report from the Makefile
    kbuild: move Kai Germaschewski to CREDITS
    kconfig/menuconfig: distinguish between selected-by-another options and comments
    kconfig: tristate choices with mixed tristate and boolean values
    include/linux/Kbuild: remove duplicate entries
    kbuild: kill backward compatibility checks
    kbuild: kill EXTRA_ARFLAGS
    kbuild: fix documentation in makefiles.txt
    kbuild: call make once for all targets when O=.. is used
    kbuild: pass -g to assembler under CONFIG_DEBUG_INFO
    kbuild: update _shipped files for kconfig syntax cleanup
    ...

    Fix up conflicts in arch/um/sys-{x86_64,i386}/Makefile manually.

    Linus Torvalds
     
  • * 'linus' of master.kernel.org:/pub/scm/linux/kernel/git/perex/alsa: (264 commits)
    [ALSA] version 1.0.15
    [ALSA] Fix thinko in cs4231 mce down check
    [ALSA] sun-cs4231: improved waiting after MCE down
    [ALSA] sun-cs4231: use cs4231-regs.h
    [ALSA] This simplifies and fixes waiting loops of the mce_down()
    [ALSA] This patch adds support for a wavetable chip on
    [ALSA] This patch removes open_mutex from the ad1848-lib as
    [ALSA] fix bootup crash in snd_gus_interrupt()
    [ALSA] hda-codec - Fix SKU ID function for realtek codecs
    [ALSA] Support ASUS P701 eeepc [0x1043 0x82a1] support
    [ALSA] hda-codec - Add array terminator for dmic in STAC codec
    [ALSA] hdsp - Fix zero division
    [ALSA] usb-audio - Fix double comment
    [ALSA] hda-codec - Fix STAC922x volume knob control
    [ALSA] Changed Jaroslav Kysela's e-mail from perex@suse.cz to perex@perex.cz
    [ALSA] hda-codec - Fix for Fujitsu Lifebook C1410
    [ALSA] mpu-401: remove MPU401_INFO_UART_ONLY flag
    [ALSA] mpu-401: do not require an ACK byte for the ENTER_UART command
    [ALSA] via82xx - Add DXS quirk for Shuttle AK31v2
    [ALSA] hda-codec - Fix input_mux numbers for vaio stac92xx
    ...

    Linus Torvalds
     
  • New URL due to local reorganization.

    Mikael Pettersson
     

16 Oct, 2007

1 commit


13 Oct, 2007

1 commit


11 Oct, 2007

1 commit


27 Jul, 2007

1 commit


20 Jul, 2007

1 commit


21 Jun, 2007

1 commit


12 May, 2007

1 commit


09 May, 2007

3 commits

  • Signed-off-by: John Anthony Kazos Jr.
    Signed-off-by: Adrian Bunk

    John Anthony Kazos Jr
     
  • CREDITS:
    - Summarize 3 lines into one.
    - Add webpage.

    MAINTAINERS:
    - Add auxdisplay drivers/tree webpages.

    Signed-off-by: Miguel Ojeda Sandonis
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Miguel Ojeda
     
  • The /proc/pid/ "maps", "smaps", and "numa_maps" files contain sensitive
    information about the memory location and usage of processes. Issues:

    - maps should not be world-readable, especially if programs expect any
    kind of ASLR protection from local attackers.
    - maps cannot just be 0400 because "-D_FORTIFY_SOURCE=2 -O2" makes glibc
    check the maps when %n is in a *printf call, and a setuid(getuid())
    process wouldn't be able to read its own maps file. (For reference
    see http://lkml.org/lkml/2006/1/22/150)
    - a system-wide toggle is needed to allow prior behavior in the case of
    non-root applications that depend on access to the maps contents.

    This change implements a check using "ptrace_may_attach" before allowing
    access to read the maps contents. To control this protection, the new knob
    /proc/sys/kernel/maps_protect has been added, with corresponding updates to
    the procfs documentation.

    [akpm@linux-foundation.org: build fixes]
    [akpm@linux-foundation.org: New sysctl numbers are old hat]
    Signed-off-by: Kees Cook
    Cc: Arjan van de Ven
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Kees Cook
     

03 May, 2007

1 commit


28 Apr, 2007

1 commit


26 Apr, 2007

2 commits


27 Feb, 2007

1 commit


12 Feb, 2007

1 commit

  • Add support for auxiliary displays, the ks0108 LCD controller, the
    cfag12864b LCD and adds a framebuffer device: cfag12864bfb.

    - Add a "auxdisplay/" folder in "drivers/" for auxiliary display
    drivers.

    - Add support for the ks0108 LCD Controller as a device driver. (uses
    parport interface)

    - Add support for the cfag12864b LCD as a device driver. (uses ks0108
    LCD Controller driver)

    - Add a framebuffer device called cfag12864bfb. (uses cfag12864b LCD
    driver)

    - Add the usual Documentation, includes, Makefiles, Kconfigs,
    MAINTAINERS, CREDITS...

    - Miguel Ojeda will maintain all the stuff above.

    [rdunlap@xenotime.net: workqueue fixups]
    [akpm@osdl.org: kconfig fix]
    Signed-off-by: Miguel Ojeda Sandonis
    Cc: Greg KH
    Acked-by: Paulo Marques
    Cc: "Randy.Dunlap"
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Miguel Ojeda Sandonis
     

24 Jan, 2007

1 commit


31 Dec, 2006

1 commit


09 Dec, 2006

1 commit

  • This modifies Makefiles and Kconfigs to properly reflect the creation of
    generic HID layer.

    It also removes the dependency of BROKEN, which was introduced by the
    first patch in series (see the comment). Also updates credits.

    Signed-off-by: Jiri Kosina
    Signed-off-by: Marcel Holtmann
    Cc: Dmitry Torokhov
    Signed-off-by: Greg Kroah-Hartman

    Jiri Kosina
     

03 Dec, 2006

1 commit


18 Nov, 2006

1 commit

  • I moved from Sweden to Finland 2.5 years ago, thought it might be time
    to update my CREDITS entry (simply removing the address completely
    seemed the sanest option).

    Signed-off-by: David Weinehall
    Signed-off-by: Linus Torvalds

    David Weinehall
     

09 Nov, 2006

1 commit


05 Oct, 2006

1 commit

  • * git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6: (292 commits)
    [GFS2] Fix endian bug for de_type
    [GFS2] Initialize SELinux extended attributes at inode creation time.
    [GFS2] Move logging code into log.c (mostly)
    [GFS2] Mark nlink cleared so VFS sees it happen
    [GFS2] Two redundant casts removed
    [GFS2] Remove uneeded endian conversion
    [GFS2] Remove duplicate sb reading code
    [GFS2] Mark metadata reads for blktrace
    [GFS2] Remove iflags.h, use FS_
    [GFS2] Fix code style/indent in ops_file.c
    [GFS2] streamline-generic_file_-interfaces-and-filemap gfs fix
    [GFS2] Remove readv/writev methods and use aio_read/aio_write instead (gfs bits)
    [GFS2] inode-diet: Eliminate i_blksize from the inode structure
    [GFS2] inode_diet: Replace inode.u.generic_ip with inode.i_private (gfs)
    [GFS2] Fix typo in last patch
    [GFS2] Fix direct i/o logic in filemap.c
    [GFS2] Fix bug in Makefiles for lock modules
    [GFS2] Remove (extra) fs_subsys declaration
    [GFS2/DLM] Fix trailing whitespace
    [GFS2] Tidy up meta_io code
    ...

    Linus Torvalds
     

04 Oct, 2006

3 commits


03 Oct, 2006

1 commit

  • Whomever said...

    "When you meet someone now who is writing a compiler or hacking a Unix
    kernel, at least you know they're not just doing it to pick up chicks."

    ...has obviously never met a _Linux_ kernel hacker.

    Anyway, sometimes people confuse my email addresses, which is why I
    really should add the proper one to CREDITS ;-).

    Signed-off-by: Pekka Enberg
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Pekka Enberg
     

02 Oct, 2006

1 commit


30 Sep, 2006

2 commits


26 Sep, 2006

1 commit

  • This fixes up a couple of conflicts when merging up with
    Linus' latest kernel. This will hopefully allow GFS2 to
    be more easily merged into forthcoming -mm and FC kernels
    due to the "one line per header" format now used for the
    kernel headers.

    Signed-off-by: Steven Whitehouse

    Conflicts:

    include/linux/Kbuild
    include/linux/kernel.h

    Steven Whitehouse