1. 13 Jan, 2003 28 commits
    • Trond Myklebust's avatar
      [PATCH] XDR 'encode' phase move [2/6] · 6d52fdcb
      Trond Myklebust authored
      The RPCSEC_GSS user context defines a 'sequence number' in the AUTH header
      fields in order to provide protection against replay attacks. This
      number needs to lie within a given 'window', and is required to be updated
      even when retransmitting dropped requests.
      
      In order to allow this update to occur, move the XDR 'encode' phase
      so that it is done immediately before writing the data to the socket.
      6d52fdcb
    • Trond Myklebust's avatar
      [PATCH] Clean up RPC client credcache lookups [1/6] · 756a93f7
      Trond Myklebust authored
      Clean up RPC client credcache lookups.
      
          - Remove the limitation whereby the RPC client may only look up
            credentials for the current task.
      
      The ability to lookup arbitrary credentials is needed in order to allow
      a user daemon to set the RPCSEC_GSS private information once it
      has finished negotiating the RPCSEC user context with the server.
      756a93f7
    • Jens Axboe's avatar
      [PATCH] rbtree core for io scheduler · 68fc0a78
      Jens Axboe authored
      This patch has a bunch of io scheduler goodies that are, by now, well
      tested in -mm and by self and Nick Piggin. In order of interest:
      
      - Use rbtree data structure for sorting of requests. Even with the
        default queue lengths that are fairly short, this cuts a lot of run
        time for io scheduler intensive work loads. If we go to longer queue
        lengths, it very quickly becomes a necessity.
      
      - Add sysfs interface for the tunables. At the same time, finally kill
        the BLKELVGET/BLKELVSET completely. I made these return -ENOTTY in
        2.5.1, but there are left-overs around the kernel. This old interface
        was never any good, it was centered around just one io scheduler.
      
      The io scheduler core itself has received count less hours of tuning by
      myself and Nick, should be in pretty good shape. Please apply.
      
      Andrew, I made some sysfs changes to the version from 2.5.56-mm1. It
      didn't even compile without warnings (or work, for that matter), as the
      sysfs store/show procedures needed updating. Hmm?
      68fc0a78
    • Matthew Wilcox's avatar
      [PATCH] parisc updates for 2.5.56 · 54779e07
      Matthew Wilcox authored
      Updates for 2.5.56:
       - Integrate Stephen Rothwell's compat code
       - OProfile support for Randolph Chung
       - Makefile updates from Sam Ravnborg
       - Regenerated defconfig as requested by Rusty
       - Generic device model updates (James Bottomley)
       - And lots of general updating bugfixing, etc.
      54779e07
    • Dominik Brodowski's avatar
      [PATCH] cpufreq: add driver for NatSemi Geode / Cyrix MediaGX · 6977f04f
      Dominik Brodowski authored
      This patch by Hiroshi Miura adds a cpufreq driver for Cyrix MediaGX and
      National Semiconductor Geode processors using "Suspend Modulation". It's
      partly based on Zwane Mwaikambo's work.
      6977f04f
    • Dominik Brodowski's avatar
      [PATCH] cpufreq: add sysfs interface · 74e7a24b
      Dominik Brodowski authored
      This patch adds a sysfs interface to the cpufreq core, and marks the
      previous /proc/cpufreq interface as deprecated.
      
      As in drivers/base/cpu.c a "CPU driver" is registered, cpufreq acts as
      "interface" to this, offering the following files for each CPU
      (in /system/devices/sys/cpu.../) where CPUfreq support is present
      
      cpuinfo_min_freq (ro)	- minimum frequency (in kHz) the CPU supports
      cpuinfo_max_freq (ro)	- maximum frequency (in kHz) the CPU supports
      scaling_min_freq (rw)	- minimum frequency (in kHz) cpufreq may scale
      			     the CPU core to
      scaling_max_freq (rw)	- maximum frequency (in kHz) cpufreq may scale
      			     the CPU core to
      scaling_governor (rw)	- governor == "A feedback device on a machine
      			      or engine that is used to provide
      			      automatic control, as of speed,
      			      pressure, or temperature" [1, as noted
      			      by David Kimdon]. Decides what frequency
      			      is used. Currently, only "performance"
      			      and "powersave" are supported, more may
      			      be added later.
      
      (In future, a file scaling_driver (ro) which shows what CPUfreq driver
      is used (arm-sa1100,  gx-suspmod, speedstep, longrun, powernow-k6,
      ...) might be added, and this driver will be allowed to add files
      scaling_driver_* for driver-specific settings like "prefer fast FSB".
      And scaling_governor_* files might offer settings for the governor.)
      
      To implement this sysfs interface, the driver model "interface" code
      is used. Unfortunately, it has a non-trivial locking bug in
      drivers/base/intf.c: there's a down_write call for
      cls->subsys.rwsem in add_intf(), which then calls add(), which may call
      intf->add_device(), which may call interface_add_data(), which calls
      kobject_register(), which calls kobject_add(), which then tries to
      down_write cls->subsys.rwsem. Remember, that was already locked writable
      in add_intf().
      
      Because of that, interface_add_data() is commented out; this means
      that no link in /system/class/cpu/cpufreq is added, and that the
      dev-removal code isn't called. This shouldn't be a problem yet,
      though; as no cpufreq driver I know of is capable of CPU hotplugging.
      
          Dominik
      
      [1] http://dictionary.reference.com/search?q=governor
      74e7a24b
    • Corey Minyard's avatar
    • Jochen Friedrich's avatar
      [PATCH] NFSv2 READDIR encoding fix · af1dbde2
      Jochen Friedrich authored
      When mounting a Linux partition with NFSv2, READDIR fills in the last
      cookie without properly byte-swapping it.  The following READDIR will
      fail, so the NFS client sees a truncated directory.
      
      Fix it thus.
      af1dbde2
    • Linus Torvalds's avatar
      Merge bk://ldm.bkbits.net/linux-2.5-core · fb4532b5
      Linus Torvalds authored
      into penguin.transmeta.com:/home/penguin/torvalds/repositories/kernel/linux
      fb4532b5
    • Patrick Mochel's avatar
      Merge osdl.org:/home/mochel/src/kernel/devel/linux-2.5-virgin · bb8d2379
      Patrick Mochel authored
      into osdl.org:/home/mochel/src/kernel/devel/linux-2.5-core
      bb8d2379
    • Patrick Mochel's avatar
      sysfs: Fixup NUMA sysfs file. · 71b9ad66
      Patrick Mochel authored
      - Remove count and off parameters from per-node meminfo show() method.
      71b9ad66
    • Patrick Mochel's avatar
      sysfs: Fixup MCA sysfs files. · b61ea41d
      Patrick Mochel authored
      - Remove count and off parameters from show() methods.
      - Remove manual handling of reading from an offset, since the sysfs core
        handles that now. 
      - Remove temp. buffer. 
      b61ea41d
    • Patrick Mochel's avatar
      sysfs: Fixup s390 sysfs files. · 8066e9a8
      Patrick Mochel authored
      - Remove count and off parameters from show() methods.
      - Remove off parameter from store() methods.
      
      Note 1: These have not been tested, but should be obviously correct.
      
      Note 2: snprintf() was replaced with sprintf() where the filled buffer 
      would obviously be < PAGE_SIZE. (like when printing single integer values).
      In places where strings were printed, PAGE_SIZE is used as the max string
      size.
      8066e9a8
    • Patrick Mochel's avatar
      sysfs: fixup SCSI sysfs files · 3f47b64a
      Patrick Mochel authored
      - Reinstate count parameter for store() methods.
      - Remove off parameter from st.c and osst.c sysfs methods.
      - Remove count parameter from st.c and osst.c show() methods.
      3f47b64a
    • Patrick Mochel's avatar
    • Patrick Mochel's avatar
      sysfs: reinstate count parameter to sysfs_ops.store() methods. · 72a1e8c1
      Patrick Mochel authored
      - Fixup struct device_attribute.
      - Fix the default device attributes.
      72a1e8c1
    • Patrick Mochel's avatar
      sysfs: reinstate count parameter for sysfs_ops.store() methods. · 67eeb0b5
      Patrick Mochel authored
      - Fixup bus, driver, and class methods.
      67eeb0b5
    • Patrick Mochel's avatar
      sysfs: restore count parameter to struct sysfs_ops::store(). · ef43a6db
      Patrick Mochel authored
      - Fixup subsys_sysfs_ops along the way.
      ef43a6db
    • Patrick Mochel's avatar
      sysfs: return -EFAULT if copy_{to,from}_user() doesn't copy all bytes. · 8deb34fe
      Patrick Mochel authored
      ...instead of returning the error value (which is number of bytes remaining).
      8deb34fe
    • Linus Torvalds's avatar
      Merge bk://are.twiddle.net/mod-2.5 · 21846253
      Linus Torvalds authored
      into penguin.transmeta.com:/home/penguin/torvalds/repositories/kernel/linux
      21846253
    • Linus Torvalds's avatar
      Merge · 7a362921
      Linus Torvalds authored
      7a362921
    • Jaroslav Kysela's avatar
      PnP update · dd62ebc4
      Jaroslav Kysela authored
        - ISA PnP - removed isapnp_card_protocol reference
        - NE1000/2000 - fixed exit sequence and bugs in PnP code
        - aironet4500 - fixed exit sequence
        - ISDN - hisax_fcpcipnp - fixed compilation
        - OSS sound drivers - ad1848, cs4232 - updated to latest PnP code
      dd62ebc4
    • Linus Torvalds's avatar
      Linux v2.5.57 · 29b49883
      Linus Torvalds authored
      29b49883
    • Richard Henderson's avatar
    • Robert Love's avatar
      [PATCH] P4-based Celeron comments · e167c48b
      Robert Love authored
      As you mentioned, we do not correctly identify the P4-based Celeron in
      the kernel configuration help.  Unfortunately, Intel has called all
      Celeron products simply "Celeron", so we call these "P4-based Celerons".
      e167c48b
    • Linus Torvalds's avatar
      e524d3b6
    • Brian Gerst's avatar
      [PATCH] Fix PnP BIOS fault handling · 9b2ea4ae
      Brian Gerst authored
      Check for PnP BIOS in all fault paths, not just in do_trap().
      9b2ea4ae
    • Linus Torvalds's avatar
      Merge http://ppc.bkbits.net/for-linus-ppc64 · 8e517818
      Linus Torvalds authored
      into home.transmeta.com:/home/torvalds/v2.5/linux
      8e517818
  2. 14 Jan, 2003 6 commits
  3. 13 Jan, 2003 5 commits
  4. 14 Jan, 2003 1 commit