1. 10 Sep, 2003 10 commits
  2. 09 Sep, 2003 30 commits
    • Jens Axboe's avatar
      [PATCH] blk API update (and bug fix) to CDU535 cdrom driver · b11a8558
      Jens Axboe authored
      This is a lot better than what is there know.
      
      From: Felipe W Damasio <felipewd@terra.com.br>
      
       - cli-sti removal
       - blk API update
       - set_current_state
       - Remove 'panic' line.
      
      .. and we can now remove the BROKEN_ON_SMP Kconfig annotation.
      b11a8558
    • Jens Axboe's avatar
      [PATCH] get rid of warning in gscd · ee4cdfcc
      Jens Axboe authored
      From: Stephen Hemminger <shemminger@osdl.org>
      
      Compiler warning due to missing equal sign.
      ee4cdfcc
    • Andrew Morton's avatar
      [PATCH] CPU scheduler CAN_MIGRATE fix · 9e3a8956
      Andrew Morton authored
      From: Andrew Theurer <habanero@us.ibm.com>
      
      This change:
      http://linux.bkbits.net:8080/linux-2.5/diffs/kernel/sched.c@1.202
      
      does not seem to make sense:
      
      #define CAN_MIGRATE_TASK(p,rq,this_cpu)					\
      	((!idle || (jiffies - (p)->last_run > cache_decay_ticks)) &&    \
      		!task_running(rq, p) &&					\
      			cpu_isset(this_cpu, (p)->cpus_allowed))
      
      It should be just the opposite; an idle cpu should be able to have a more
      aggressive steal, and a busy cpu should not.
      9e3a8956
    • Andrew Morton's avatar
      [PATCH] sys_fadvise needs asmlinkage · dd3f51c2
      Andrew Morton authored
      dd3f51c2
    • Andrew Morton's avatar
      [PATCH] Reduce random driver lock contention · c3ee1c75
      Andrew Morton authored
      From: Matt Mackall <mpm@selenic.com>
      
      The new locking in the random driver is consuming 60% of CPU resources in
      Anton's monster power5 boxes.
      
      
      Basically, when the primary pool is 7/8th full, we shut off the firehose
      and go into a trickle mode to keep the pool fresh.  Saves CPU for everyone
      and should make the contention drop off the charts too (though the trickle
      factor might need adjusting again for Origin-class machines).
      c3ee1c75
    • Andrew Morton's avatar
      [PATCH] fix Summit srat.h includes · e623ce48
      Andrew Morton authored
      From: Dave Hansen <haveblue@us.ibm.com>
      
      I was compiling for my plain 'ol PC, and was getting unresolved symbols
      for get_memcfg_from_srat() and get_zholes_size().  The CONFIG_NUMA
      definition right now allows it to be turned on for plain old X86_PC. 
      Does anyone know why this is? 
      
      depends on SMP && HIGHMEM64G &&
                (X86_PC || X86_NUMAQ || X86_GENERICARCH ||
                        (X86_SUMMIT && ACPI && !ACPI_HT_ONLY))
      
      In any case, the summit code incorrectly assumes in at least 2 places
      that NUMA && !NUMAQ means summit.  Someone was evidently trying to cover
      the generic subarch case, but that's already taken care of by the lovely
      config system and CONFIG_ACPI_SRAT.  This patch fixes those assumptions
      and adds a nice little warning for people that try to #include srat.h
      without having srat support turned on.
      e623ce48
    • Andrew Morton's avatar
      [PATCH] mwave locking fixes · 5ee6ddc2
      Andrew Morton authored
      From: Manfred Spraul <manfred@colorfullife.com>
      
      The mwave driver uses a user space daemon for some modem operations. The
      user space daemon calls ioctl(,IOCTL_MW_GET_IPC), and the driver returns
      after an interrupt arrived. The actual wait used
      interruptible_sleep_on(), which can lead to lost wakeups. A local 
      spinlock on the stack is used to close that race, but this is broken on 
      SMP, perhaps even with preempt.
      
      The attached patch fixes that by switching to the normal 
      add_wait_queue/test_if_race_occured/schedule/remove_wait_queue sequence.
      5ee6ddc2
    • Andrew Morton's avatar
      [PATCH] ext3: remove debug code · 712c0c6f
      Andrew Morton authored
      ext3 has fancy test harness code which allows you to simulate crashes (for
      testing recovery).  It will make the underlying disk start ignoring writes a
      specified number of seconds after the mount.
      
      It's inoperative without an additional offline patch anyway, and it's doing
      hacky things which scared Al.  So kill it; I'll maintain it in the separate
      ext3 debug patch.
      712c0c6f
    • Andrew Morton's avatar
      [PATCH] tidy up lib/inflate.c error messages · 28160177
      Andrew Morton authored
      From: Andre McCurdy <armcc2000@yahoo.com>
      
      There is some inconsistency within lib/inflate.c and its users about
      whether the error message text or the error() function should provide
      the '\n'.
      
      This patch tries to make everyone consistent - by removing the
      newline from all message texts, and adding one to the only error()
      function which did not provide it (in init/do_mounts_rd.c).
      28160177
    • Andrew Morton's avatar
      [PATCH] really use english date in version string · fa5349be
      Andrew Morton authored
      From: Andrey Borzenkov <arvidjaar@mail.ru>
      
      LANG is not always enough to force date to english.
      fa5349be
    • Andrew Morton's avatar
      [PATCH] install_page pte use-after-unmap fix · 00dbb2ea
      Andrew Morton authored
      From: Rajesh Venkatasubramanian <vrajesh@eecs.umich.edu>
      
      Don't deref the pte pointer after having kunmapped the memory it points at.
      00dbb2ea
    • Andrew Morton's avatar
      [PATCH] remap file pages MAP_NONBLOCK fix · be98a9cd
      Andrew Morton authored
      From: Rajesh Venkatasubramanian <vrajesh@eecs.umich.edu>
      
      The remap_file_pages system call with MAP_NONBLOCK flag does not
      install file-ptes when the required pages are not found in the
      page cache. Modify the populate functions to install file-ptes
      if the mapping is non-linear and the required pages are not found
      in the page cache.
      
      Patch is for test4-mm6. Compiles and boots. Patch tested using the
      programs at:
      
      http://www-personal.engin.umich.edu/~vrajesh/linux/remap-file-pages/
      be98a9cd
    • Andrew Morton's avatar
      [PATCH] ia32 idle using PNI monitor/mwait · 5335712e
      Andrew Morton authored
      From: "Nakajima, Jun" <jun.nakajima@intel.com>
      
      Attached is a patch that enables PNI (Prescott New Instructions)
      monitor/mwait in the kernel idle handler.
      5335712e
    • Andrew Morton's avatar
      [PATCH] d_delete-d_lookup race fix · ee9966a5
      Andrew Morton authored
      From: Maneesh Soni <maneesh@in.ibm.com>
      
      d_delete() calls dentry_iput() after releasing the per dentry lock.  This
      can race with __d_lookup and lead to situation where we can make dentry
      negative with ref count > 1.  The following patch makes dentry_iput() to
      hold per dentry lock till d_inode is NULL and dentry has been removed from
      d_alias list.
      ee9966a5
    • Andrew Morton's avatar
      [PATCH] ppp devfs oops fix · 1a30ac21
      Andrew Morton authored
      From: Christoph Hellwig <hch@infradead.org>
      
      PPP leaves the chardev registered even if we're going to fail the modprobe.
      1a30ac21
    • Andrew Morton's avatar
      [PATCH] Handle NR_CPUS overflow · a5d77afe
      Andrew Morton authored
      From: john stultz <johnstul@us.ibm.com>
      
      Don't try to support more than NR_CPUS cpus: things overflow.
      
      Also, increase the default in config for some architectures.  (Dave
      Hansen).
      a5d77afe
    • Andrew Morton's avatar
      [PATCH] remove duplicate includes in kernel/ · 4f2a733a
      Andrew Morton authored
      From: "Randy.Dunlap" <rddunlap@osdl.org>
      
      remove duplicate #includes in kernel/
      4f2a733a
    • Andrew Morton's avatar
      [PATCH] sound: remove duplicate includes · f83793cb
      Andrew Morton authored
      From: "Randy.Dunlap" <rddunlap@osdl.org>
      
      remove duplicate #includes in sound/
      f83793cb
    • Andrew Morton's avatar
      [PATCH] make selinux enable param config option, enabled by · beb12afa
      Andrew Morton authored
      From: James Morris <jmorris@redhat.com>
      
      This patch against current bk makes the recently added SELinux boot
      parameter feature a configurable option, and enables SELinux by default
      when selected.  These changes were made following feedback including 
      discussion on the SELinux list.
      
      The rationale for the changes is to allow SELinux to be be configured and
      enabled unconditionally.  If the boot parameter option is selected, then
      SELinux is now enabled unless selinux=0 is specified at the kernel command
      line.
      beb12afa
    • Andrew Morton's avatar
      [PATCH] Fix imm.c again · 94c5d6eb
      Andrew Morton authored
      From: Adrian Bunk <bunk@fs.tum.de>
      
      Earlier patch wasn't correct especially in the !CONFIG_SCSI_IZIP_EPP16
      case, reading all uses of this array (IMM_MODE_STRING is used to print the
      corresponding string in printks).
      
      If I'm not misunderstanding it, CONFIG_SCSI_IZIP_EPP16 means "use 16bit 
      even when 32bit is requested".
      
      It seems the right solution is
      
      static char *IMM_MODE_STRING[] =
      {
              [IMM_AUTODETECT] = "Autodetect",
              [IMM_NIBBLE]     = "SPP",
              [IMM_PS2]        = "PS/2",
              [IMM_EPP_8]      = "EPP 8 bit",
              [IMM_EPP_16]     = "EPP 16 bit",
      #ifdef CONFIG_SCSI_IZIP_EPP16
              [IMM_EPP_32]     = "EPP 16 bit",
      #else
              [IMM_EPP_32]     = "EPP 32 bit",
      #endif
              [IMM_UNKNOWN]    = "Unknown",
      };
      94c5d6eb
    • Andrew Morton's avatar
      [PATCH] reiserfs direct-IO support · 3198c19a
      Andrew Morton authored
      From: Oleg Drokin <green@namesys.com>
      
      This patch implements DirectIO support for reiserfs v3.  This is mostly a
      port from 2.4.
      
      Thanks to Mingming Cao from IBM for some clues in porting.
      3198c19a
    • Andrew Morton's avatar
      [PATCH] Move ikconfig to /proc/config.gz · f261ecb2
      Andrew Morton authored
      From: "Randy.Dunlap" <randy.dunlap@verizon.net>
      
      
      The SuSE kernels place their ikconfig info at /proc/config.gz: in a
      different place, and compressed.  We thought it was a good idea to do it
      that way in 2.6 as well.
      
      - gzip the /proc config file, put it in /proc/config.gz;
      
      - Based on a SuSE patch by Oliver Xymoron <oxymoron@waste.org>, which was
        derived from a patch by Nicholas Leon <nicholas@binary9.net>
      
      - change /proc/ikconfig/built_with to /proc/config_build_info;
      
      - cleanup ikconfig init/exit entry points (static, __init, __exit);
      
      - Makefile help from Sam Ravnborg;
      
      DESC
      ikconfig cleanup
      EDESC
      From: Stephen Hemminger <shemminger@osdl.org>
      
      Simplify and cleanup the code:
      	- use single interface to seq_file where possible
      	- don't need to do as much of the /proc interface, only read
      	- use copy_to_user to avoid char at a time copy
      	- remove unneccesary globals
      	- use const char[] rather than const char * where possible.
      
      Didn't change the version since interface doesn't change.
      f261ecb2
    • Andrew Morton's avatar
      [PATCH] compiler warning fixes for DAC960 on alpha · f5347e30
      Andrew Morton authored
      From: Dave Olien <dmo@osdl.org>
      
      This patch is forwarded from Jay Estabrook at HP.  I've compiled the
      patch on ia32 and ia64 machines and it's good.  I also recreated
      the patch so it would apply to mm5 without fuzzy offsets.
      Here's Jay's summary of the patch:
      
      Here's a very small set of patches against 2.6.0-test4 that help the
      DAC960 driver compile cleaner (gets rid of warnings on Alpha) and help
      it to work on some old OEM'ed DAC960 cards that were sold in our older
      Alphas.
      
      The warnings are all concerned with "conversions to different size
      without cast", as pointers and longs are same size (8-bytes) but ints
      are 4-bytes, on Alpha. I don't believe the change to (long) from (int)
      will affect any 32-bit architectures, but those using LP64 like Alpha,
      ie SPARC64 and prolly IA64, will have the warnings go away.
      
      The change to make the oldest acceptable firmware version 2.70 instead
      of 2.73 is made spcific to Alpha, since it is only those cards that
      DEC OEM'ed from Mylex that would have such (as explained a bit better
      in the patch itself).
      f5347e30
    • Andrew Morton's avatar
      [PATCH] dac960 devfs_name initialisation fix · c6a4440f
      Andrew Morton authored
      From: Andrey Borzenkov <arvidjaar@mail.ru>
      
      DAC960.c does it incorrectly (at least in 2.6.0-test4). It will create
      _directory_ /dev/rd/cNdM making it impossible to create compat block device
      entry with the same name.
      
      The right thing it to create separate directory for each controller/target as 
      in attached trivial patch (untested due to lack of hardware). You will need
      devfsd support for this but then you will need it for cciss or cpqarray as 
      well and possibly for others. Which returns us to the problem of devfsd 
      maintenance ...
      c6a4440f
    • Andrew Morton's avatar
      [PATCH] monolitic_clock, timer_{tsc,hpet} and CPUFREQ · a39e2c39
      Andrew Morton authored
      From: Dmitry Torokhov <dtor_core@ameritech.net>
      
      I noticed that although timer_tsc registers cpufreq notifier to detect
      frequency changes and adjust cpu_khz it does not set cyc2ns_scale.
      a39e2c39
    • Andrew Morton's avatar
      [PATCH] Initialise devfs_name in various block drivers · 8e62b8a7
      Andrew Morton authored
      From: Andrey Borzenkov <arvidjaar@mail.ru>
      
      Various block drivers are currently devfs-unaware.  Andrey's patch attempts
      to give them reasonable representations in devfs.
      
      
       "The attached patch suggests some possible names for non-floppy devices
        based on reading driver source.  I have to ask if these make sense.  At
        least for cciss Mandrake devfsd patch expects different names but it
        seems to be mistake (it assumes single controller always)
      
       "For floppy it is not as simple.  Floppy cannot use genhd and must
        create names manually; but I do not know what names are appropriate or
        expected.
      
       "For acsi the target/lun name may have problem of creating compat names
        (if any) by devfsd.
      
       "Please note that none of them created any devfs name under 2.4 as well.
         So it is not a regression ..."
      8e62b8a7
    • Andrew Morton's avatar
      [PATCH] calibrate_tsc() fix and consolidation · ceffc556
      Andrew Morton authored
      From: "Pallipadi, Venkatesh" <venkatesh.pallipadi@intel.com>
      
      CONFIG_TIMER_CYCLONE doesn't build at present because calibrate_tsc() was
      made static.
      
      The patch fixes that up and moves all calibrate_tsc functions into a common
      file, avoiding the current code duplication.
      ceffc556
    • Andrew Morton's avatar
      [PATCH] s/spin_lock_irqrestore/spin_unlock_irqrestore · 58807f83
      Andrew Morton authored
      From: Vinay K Nallamothu <vinay-rc@naturesoft.net>
      
      Fix a couple of cut-n-paste errors.
      
      (Why on earth is a scsi driver poking at the RTC hardware?)
      58807f83
    • Linus Torvalds's avatar
      Fix ray_cs for new interrupt handling. · 50dea66b
      Linus Torvalds authored
      Damn 16-bit PCMCIA layer has no type checking. Complete crap.
      50dea66b
    • Linus Torvalds's avatar
      From Stephen Hemminger: we were trying to cast an "unsigned short" · eee4f071
      Linus Torvalds authored
      to a pointer. That was a typo.
      
      Ack'ed by Al Viro.
      eee4f071