1. 04 Feb, 2004 40 commits
    • Jeroen Vreeken's avatar
      [PATCH] hamradio driver fixes · b0f4ffe8
      Jeroen Vreeken authored
      I send these a while ago but didn't get a reply.
      Can you apply these patches for the hamradio drivers?
      
      details:
      
      + scc.c usage of rtnl lock and register_netdev.
      + scc.c properly initialize timers.
      + remove cli() call in 6pack.c
      + fix init of reused devices and remove cli()
      + scc.c statistics
      b0f4ffe8
    • Benjamin Herrenschmidt's avatar
      [PATCH] bmac network driver update · c32262de
      Benjamin Herrenschmidt authored
      Hi !
      
      I didn't include that with the bitkeeper based PowerMac updates so Jeff
      can assume his role as maintainer/filter of network driver updates :)
      
      Here's my latest update to this pmac-only driver, please apply if you
      are ok with it. The driver now uses the macio infrastructure for
      detection & power management notifications, getting into sysfs at
      the same time.
      
      Ben.
      
      
      # This is a BitKeeper generated diff -Nru style patch.
      #
      # ChangeSet
      #   2004/01/23 09:38:35+11:00 benh@kernel.crashing.org
      #   Update PowerMac "bmac" driver to the "macio" device so it fits in sysfs
      #   and gets proper power management ordering
      #
      # drivers/net/bmac.c
      #   2004/01/23 09:38:22+11:00 benh@kernel.crashing.org +185 -203
      #   Update PowerMac "bmac" driver to the "macio" device so it fits in sysfs
      #   and gets proper power management ordering
      #
      c32262de
    • Carl-Daniel Hailfinger's avatar
      [PATCH] [2.6] Update forcedeth to 0.23 · 92d3a215
      Carl-Daniel Hailfinger authored
      This is a multi-part message in MIME format.
      92d3a215
    • Jeff Garzik's avatar
      Merge redhat.com:/spare/repo/netdev-2.6/tulip · f5e52e1b
      Jeff Garzik authored
      into redhat.com:/spare/repo/net-drivers-2.5
      f5e52e1b
    • Jeff Garzik's avatar
      Merge redhat.com:/spare/repo/netdev-2.6/8139too · c43fb198
      Jeff Garzik authored
      into redhat.com:/spare/repo/net-drivers-2.5
      c43fb198
    • James Bottomley's avatar
      [PATCH] use cramfs as an initrd · 6791a22a
      James Bottomley authored
      Now that Al Viro fixed cramfs, it works beautifully as an initrd
      filesystem.
      
      So finally plumb it in.
      6791a22a
    • David S. Miller's avatar
      Merge davem@nuts.davemloft.net:/disk1/BK/sparc-2.6 · 3ba4cb0a
      David S. Miller authored
      into kernel.bkbits.net:/home/davem/sparc-2.6
      3ba4cb0a
    • David S. Miller's avatar
    • Yoshinori Sato's avatar
      [PATCH] H8/300 support update (3/3): bitops · 25b160e3
      Yoshinori Sato authored
      o Cleanup reduced and faster code
      25b160e3
    • Yoshinori Sato's avatar
      [PATCH] H8/300 support update (2/3): compiler warnings · 8432cdd0
      Yoshinori Sato authored
      o gcc-3.4 warning fix.
      8432cdd0
    • Yoshinori Sato's avatar
      [PATCH] H8/300 support update (1/3): obsolete header · a899e3c1
      Yoshinori Sato authored
      o Deleted obsolute header include
      a899e3c1
    • Linus Torvalds's avatar
      Merge bk://linux-scsi.bkbits.net/scsi-for-linus-2.6 · a4c91676
      Linus Torvalds authored
      into home.osdl.org:/home/torvalds/v2.5/linux
      a4c91676
    • Linus Torvalds's avatar
      Merge bk://gkernel.bkbits.net/net-drivers-2.5 · 13d06909
      Linus Torvalds authored
      into home.osdl.org:/home/torvalds/v2.5/linux
      13d06909
    • Stephen C. Tweedie's avatar
      [PATCH] Fix block device inode list corruptions · 2cecfc0f
      Stephen C. Tweedie authored
      I've been chasing a weird SELinux bug which shows up mostly when doing
      installs of a dev-* rpm (ie. creating and overwriting lots of block
      device inodes), but which I've also seen when doing mkinitrd.
      
      It turned out not to be an SELinux problem at all, but a core VFS
      S_ISBLK bug.  It seems that SELinux simply widens the race window.
      
      The code at fault is fs/fs-writeback.c:__mark_inode_dirty():
      
      		/*
      		 * Only add valid (hashed) inodes to the superblock's
      		 * dirty list.  Add blockdev inodes as well.
      		 */
      		if (!S_ISBLK(inode->i_mode)) {
      			if (hlist_unhashed(&inode->i_hash))
      				goto out;
      			if (inode->i_state & (I_FREEING|I_CLEAR))
      				goto out;
      		}
      
      The "I_FREEING|I_CLEAR" condition was added after the ISBLK/unhashed
      tests were already in the source, but I can't see any reason why we'd
      want the I_FREEING test not to apply to block devices.  And indeed, this
      results in all sorts of inode list corruptions.  Simply moving the
      I_FREEING|I_CLEAR test out of the protection of the S_ISBLK() condition
      fixes things entirely.
      
      The existing 2.6 kernel will reliably fail on me in about 2 seconds once
      "rpm -Uvh --force dev*.rpm" starts its actual installation of the new
      inodes.  With the patch below I can't reproduce it at all.
      2cecfc0f
    • Andrew Morton's avatar
      [PATCH] Fix ptrace in the vsyscall dso area · 4df5d868
      Andrew Morton authored
      From: Roland McGrath <roland@redhat.com>
      
      The #include is the part of this patch that matters, so the #ifdef below
      works.
      
      The rest of the patch removes gratuitous duplication due to some strange
      aversion to concision in the presence of #ifdef, the kind that is all too
      common, utterly pointless, and error prone.
      4df5d868
    • Andrew Morton's avatar
      [PATCH] Altix update: pci_bus_cvlink.c fixes · f33ce2f4
      Andrew Morton authored
      From: Pat Gefre <pfg@sgi.com>
      
      rch/ia64/sn/io/machvec/pci_bus_cvlink.c
          Some pretty-print mods
          Use pin instead of slot for dma_flush init
      f33ce2f4
    • Andrew Morton's avatar
      [PATCH] Altix update: pci_bus_cvlink.c fixes · 0edc3a3c
      Andrew Morton authored
      From: Pat Gefre <pfg@sgi.com>
      
      arch/ia64/sn/io/machvec/pci_bus_cvlink.c
          Couple of checks for kmalloc <= 0 were fixed
          Some __init and static fixes
      0edc3a3c
    • Andrew Morton's avatar
      [PATCH] Altix update: irq fixes · 1140a0c3
      Andrew Morton authored
      From: Pat Gefre <pfg@sgi.com>
      
      arch/ia64/sn/kernel/irq.c
          Need to get the cpu from the passed in pcibr struct
          Made the interrupt list static and gave it a better name - credit jes
          Some lindent'isms
          Took out some code that isn't used ..... yet
      1140a0c3
    • Andrew Morton's avatar
      [PATCH] Altix update: remove pcibr_intr_func() · 4046f9fb
      Andrew Morton authored
      From: Pat Gefre <pfg@sgi.com>
      
      arch/ia64/sn/io/sn2/pcibr/pcibr_intr.c
          Kill pcibr_intr_func()
      4046f9fb
    • Andrew Morton's avatar
      [PATCH] Altix update: VGA, keyboard, other changes · 15809d37
      Andrew Morton authored
      From: Pat Gefre <pfg@sgi.com>
      
      arch/ia64/sn/kernel/setup.c
      
          If generic enabled legacy VGA or kbd - disable them
          Slightly different check for work arounds and only do it once
          If there is no klconfig info and we are in the simulator - ignore it
          Update the pxm_to_nasid() routine. It failed for SP configurations and some
          SMP configurations where M-bricks used pxm numbers lower that the first
          c-brick.
          If we don't find the cpu for pxm, search the memblks for it.
      15809d37
    • Andrew Morton's avatar
      [PATCH] Altix update: early_probe_for_widget() improvement · e1612f52
      Andrew Morton authored
      From: Pat Gefre <pfg@sgi.com>
      
      arch/ia64/sn/io/sn2/ml_iograph.c
          Better code for early_probe_for_widget()
      e1612f52
    • Andrew Morton's avatar
      [PATCH] Altix update: pcibr_invalidate_ate check · f64cae79
      Andrew Morton authored
      From: Pat Gefre <pfg@sgi.com>
      
      arch/ia64/sn/io/sn2/pcibr/pcibr_ate.c
          check for pcibr_invalidate_ate 0 used for debugging
      f64cae79
    • Andrew Morton's avatar
      [PATCH] Altix update: io changes · c03b9444
      Andrew Morton authored
      From: Pat Gefre <pfg@sgi.com>
      
      arch/ia64/sn/io/platform_init/sgi_io_init.c
         use numionodes instead of numnodes
      
      arch/ia64/sn/io/sn2/klconflib.c
          find_lboard changes - generalized a number of the interface funcs
      
      arch/ia64/sn/io/sn2/klgraph.c
          call the more general find_lboard funcs
      
      arch/ia64/sn/io/sn2/ml_iograph.c
          call the more general lboard funcs
      
      arch/ia64/sn/io/sn2/module.c
          lboard changes
          mod for headless/memless nodes
      
      arch/ia64/sn/io/sn2/pcibr/pcibr_dvr.c
          isIO9 mod
      
      arch/ia64/sn/kernel/setup.c
          headless/memless mod
      
      include/asm-ia64/sn/klconfig.h
          generalized find_lboard funs
      c03b9444
    • Andrew Morton's avatar
      [PATCH] Altix update: add MINIMAL_ATE_FLAG · f1128252
      Andrew Morton authored
      From: Pat Gefre <pfg@sgi.com>
      
      arch/ia64/sn/io/machvec/pci_dma.c
          Add MINIMAL_ATE_FLAGS() macro usage
      
      include/asm-ia64/sn/pci/pcibr.h
          Add MINIMAL_ATE_FLAG() macro
      f1128252
    • Andrew Morton's avatar
      [PATCH] Altix update: misc changes · 7e18f50e
      Andrew Morton authored
      From: Pat Gefre <pfg@sgi.com>
      
      arch/ia64/sn/io/sn2/pcibr/pcibr_dvr.c
          extern for pcibr_rrb_alloc_more()
      
      include/asm-ia64/sn/pci/pcibr_private.h
          more unsigned to unsigned int
      7e18f50e
    • Andrew Morton's avatar
      [PATCH] Altix update: small cleanups · 19cb8137
      Andrew Morton authored
      From: Pat Gefre <pfg@sgi.com>
      
      arch/ia64/sn/io/io.c@1.12
          misc code cleanup
          no parens on returns
          remove __psunsigned_t
      
      arch/ia64/sn/io/sn2/ml_iograph.c@1.18
          no parens on returns
      
      arch/ia64/sn/io/sn2/pcibr/pcibr_dvr.c@1.25
          no parens on returns
          use -errno
      
      arch/ia64/sn/io/sn2/pcibr/pcibr_hints.c@1.8
          no parens on returns
      
      arch/ia64/sn/io/sn2/pcibr/pcibr_intr.c@1.15
          no parens on returns
          unsigned to unsigned int
      
      arch/ia64/sn/io/sn2/pcibr/pcibr_rrb.c@1.13
          no parens on returns
          use -errno
      
      arch/ia64/sn/io/sn2/pcibr/pcibr_slot.c@1.18
          no parens on returns
          use -errno
      
      arch/ia64/sn/io/sn2/pciio.c@1.14
          oom handling
          removed ASSERT and funcs not needed
      
      arch/ia64/sn/io/sn2/pic.c@1.13
          use -errno
      
      arch/ia64/sn/io/sn2/shuberror.c@1.12
          add delay.h
      
      arch/ia64/sn/io/sn2/xbow.c@1.10
          include file clean up
      
      arch/ia64/sn/io/sn2/xtalk.c@1.9
          misc code cleanup
          no parens on returns
      
      arch/ia64/sn/io/xswitch.c@1.11
          misc code cleanup
      
      arch/ia64/sn/kernel/bte.c@1.5
          include file clean up
      
      arch/ia64/sn/kernel/mca.c@1.8
          include file clean up
      
      arch/ia64/sn/kernel/probe.c@1.5
          include file clean up
      
      arch/ia64/sn/kernel/sn2/prominfo_proc.c@1.3
          include file clean up
      
      arch/ia64/sn/kernel/sn2/sn2_smp.c@1.9
          include file clean up
      
      arch/ia64/sn/kernel/sn2/sn_proc_fs.c@1.4
          include file clean up
      
      drivers/char/sn_serial.c@1.3
          include file clean up
      
      include/asm-ia64/sn/addrs.h@1.8
          include file clean up
          remove __psunsigned_t
      
      include/asm-ia64/sn/alenlist.h@1.8
          unsigned to unsigned int
      
      include/asm-ia64/sn/arch.h@1.7
          include file clean up
      
      include/asm-ia64/sn/bte.h@1.6
          include file clean up
      
      include/asm-ia64/sn/clksupport.h@1.8
          include file clean up
      
      include/asm-ia64/sn/driver.h@1.5
          remove __psunsigned_t
      
      include/asm-ia64/sn/hcl.h@1.13
          include file clean up
      
      include/asm-ia64/sn/hcl_util.h@1.7
          include file clean up
      
      include/asm-ia64/sn/hwgfs.h@1.5
          include file clean up
      
      include/asm-ia64/sn/iograph.h@1.9
          include file clean up
      
      include/asm-ia64/sn/klconfig.h@1.14
          remove __psunsigned_t
      
      include/asm-ia64/sn/kldir.h@1.5
          remove __psunsigned_t
          include file clean up
      
      include/asm-ia64/sn/module.h@1.12
          include file clean up
      
      include/asm-ia64/sn/nodepda.h@1.14
          include file clean up
      
      include/asm-ia64/sn/pci/bridge.h@1.13
          uchar_t to unsigned char
      
      include/asm-ia64/sn/pci/pcibr_private.h@1.20
          move PVnnnnnn's
      
      include/asm-ia64/sn/pci/pciio.h@1.14
          unsigned to unsigned int
      
      include/asm-ia64/sn/pci/pciio_private.h@1.10
          unsigned to unsigned int
      
      include/asm-ia64/sn/pda.h@1.9
          include file clean up
      
      include/asm-ia64/sn/pio.h@1.7
          include file clean up
          ulong to unsigned long
      
      include/asm-ia64/sn/sgi.h@1.11
          include file clean up
          move PVnnnnnn's to here
      
      include/asm-ia64/sn/sn2/arch.h@1.6
          include file clean up
      
      include/asm-ia64/sn/sn2/sn_private.h@1.12
          include file clean up
          remove __psunsigned_t
      
      include/asm-ia64/sn/sn_cpuid.h@1.8
          include file clean up
      
      include/asm-ia64/sn/sn_private.h@1.6
          include file clean up
      
      include/asm-ia64/sn/types.h@1.6
          include file clean up
          remove __psunsigned_t
      
      include/asm-ia64/sn/vector.h@1.6
          include file clean up
      
      include/asm-ia64/sn/xtalk/xbow.h@1.9
          include file clean up
          misc code cleanup
      
      include/asm-ia64/sn/xtalk/xtalk.h@1.12
          unsigned to unsigned int
      
      include/asm-ia64/sn/xtalk/xwidget.h@1.8
          unsigned to unsigned int
      19cb8137
    • Andrew Morton's avatar
      [PATCH] Altix update: various, mainly cleanups · 4e15eda4
      Andrew Morton authored
      From: Pat Gefre <pfg@sgi.com>
      
      arch/ia64/sn/io/machvec/pci_bus_cvlink.c
          Changes for new pcireg_ interfaces
          pcibr reorg
          Some code cleanup/reorg
      
      arch/ia64/sn/io/machvec/pci_dma.c
          IS_PCIA64() not needed
      
      arch/ia64/sn/io/sn2/ml_iograph.c
          new pcireg_ interface
      
      arch/ia64/sn/io/sn2/pcibr/pcibr_ate.c
          code reorg/clean up
      
      arch/ia64/sn/io/sn2/pcibr/pcibr_config.c
          code reorg/cleanup
      
      arch/ia64/sn/io/sn2/pcibr/pcibr_dvr.c
          reorg/cleanup
      
      arch/ia64/sn/io/sn2/pcibr/pcibr_error.c
          reorg/cleanup
      
      arch/ia64/sn/io/sn2/pcibr/pcibr_intr.c
          reorg/cleanup
      
      arch/ia64/sn/io/sn2/pcibr/pcibr_reg.c
          Fixed the interface to these functions - one call/data type
      
      arch/ia64/sn/io/sn2/pcibr/pcibr_rrb.c
          reorg/cleanup
      
      arch/ia64/sn/io/sn2/pcibr/pcibr_slot.c
          reorg/cleanup
      
      arch/ia64/sn/io/sn2/pciio.c
          removed unused functions
      
      arch/ia64/sn/io/sn2/pic.c
          reorg/cleanup
      
      arch/ia64/sn/kernel/irq.c
          IS_PIC_SOFT not needed
          mod for new pcireg_ interfaces
      
      include/asm-ia64/sn/module.h
          nodes/geoid[] -> MAX_SLABS
      
      include/asm-ia64/sn/pci/bridge.h
          IS_[X]BRIDGE not needed
      
      include/asm-ia64/sn/pci/pci_bus_cvlink.h
          SET_PCIA64 and IS_PCIA64 not needed
          isa64, dma_buf_sync, xbow_buf_sync gone
      
      include/asm-ia64/sn/pci/pcibr.h
          mostly cleanup
          some reorg mods
      
      include/asm-ia64/sn/pci/pcibr_private.h
          some reorg code
          protos for new pcireg_ interfaces
      
      include/asm-ia64/sn/pci/pciio.h
          cleanup
      
      include/asm-ia64/sn/pci/pic.h
          cleanup
      
      include/asm-ia64/sn/sn2/intr.h
          changed IA64_SN2_FIRST_DEVICE_VECTOR and IA64_SN2_LAST_DEVICE_VECTOR
      4e15eda4
    • Andrew Morton's avatar
      [PATCH] Fix x86-64 boot problem · 839401aa
      Andrew Morton authored
      From: Andi Kleen <ak@muc.de>
      
      Fix a bug introduced with the last merge that prevented booting with
      CONFIG_DEBUG_INFO on on x86-64.  It would corrupt registers in interrupts.
      This has hit a few people, so I would consider it as a critical fix.
      839401aa
    • Andrew Morton's avatar
      [PATCH] fix memory leak while coredumping · 8d849f5b
      Andrew Morton authored
      From: IWAMOTO Toshihiro <iwamoto@valinux.co.jp>
      
      This patch fixes a memory leak that happens when a core file hits the
      process's resource limit.
      8d849f5b
    • Andrew Morton's avatar
      [PATCH] SElinux compile fix · 4ec5d5d2
      Andrew Morton authored
      From: Geert Uytterhoeven <geert@linux-m68k.org>
      
      Spinlock code needs <linux/sched.h>
      4ec5d5d2
    • Andrew Morton's avatar
      [PATCH] DVB compile fix · d01de692
      Andrew Morton authored
      From: Geert Uytterhoeven <geert@linux-m68k.org>
      
      Never include <asm/delay.h> directly
      d01de692
    • Andrew Morton's avatar
      [PATCH] Hisax compile fix · c33955b8
      Andrew Morton authored
      From: Geert Uytterhoeven <geert@linux-m68k.org>
      
      Never include <asm/delay.h> directly
      c33955b8
    • Andrew Morton's avatar
      [PATCH] Specialix compile fix · 7c24a8bc
      Andrew Morton authored
      From: Geert Uytterhoeven <geert@linux-m68k.org>
      
      Compile fix: add missing #include <linux/init.h>
      7c24a8bc
    • Andrew Morton's avatar
      [PATCH] Moxa serial compile fixes · 7ae28324
      Andrew Morton authored
      From: Geert Uytterhoeven <geert@linux-m68k.org>
      
      Compile fixes for the Moxa serial drivers:
      
      - Add missing #include <linux/init.h>
      
      - Kill warning if CONFIG_PCI is not set
      7ae28324
    • Andrew Morton's avatar
      [PATCH] istallion compile fix · 03c3da32
      Andrew Morton authored
      From: Geert Uytterhoeven <geert@linux-m68k.org>
      
      Fix compilation if CONFIG_PCI is not set
      03c3da32
    • Andrew Morton's avatar
      [PATCH] fix compilation warnings in neofb.c · 796de28a
      Andrew Morton authored
      From: Junio C Hamano <junkio@cox.net>
      
      Compiling neofb.c without MTRR results in two "unused variable" warnings.
      796de28a
    • Andrew Morton's avatar
      [PATCH] ppp: try harder to allocate the deflate buffer · ce62093d
      Andrew Morton authored
      We're using a 4-order allocation in there and it can fail.  Change it to just
      keep reclaiming memory until something gives.
      ce62093d
    • Andrew Morton's avatar
      [PATCH] Remove the unused kmalloc_percpu_init() · 30575f5d
      Andrew Morton authored
      From: Martin Hicks <mort@wildopensource.com>
      
      This patch removes kmalloc_percpu_init() from include/linux/percpu.h
      
      It is unused and doesn't seem to be required.
      30575f5d
    • Andrew Morton's avatar
      [PATCH] missing export of cpu_2_node · 93467f4c
      Andrew Morton authored
      From: Patrick Mansfield <patmans@us.ibm.com>
      
      On NUMAQ, any module which calls __alloc_pages() needs cpu_2_node() (via
      cpu_to_node()).
      
      This patch exports cpu_2_node.
      93467f4c
    • Andrew Morton's avatar
      [PATCH] Remove uneeded dentry assignment · eb36334a
      Andrew Morton authored
      From: James Morris <jmorris@redhat.com>
      
      It seems to me that this dentry assignment in open_namei is not needed per
      the patch below.  On this path, dentry is not referenced.
      eb36334a