1. 20 Jan, 2004 26 commits
    • Andrew Morton's avatar
      [PATCH] ppc64: iSeries virtual console · b64caf25
      Andrew Morton authored
      From: Stephen Rothwell <sfr@canb.auug.org.au>
      
      This is a forward port of a 2.4 driver that has been present in a couple of
      (enterprise) distributions for some time.  It works for me :-), I even get
      console output :-) This makes the machine almost usable - next we will get
      virtual disk.
      
      It has been considerably tidied up, but if you have any further worries
      with it, let me know.
      b64caf25
    • Andrew Morton's avatar
      [PATCH] ppc64: Bug fix for hugepages on ppc64 · 00fbc4fc
      Andrew Morton authored
      From: David Gibson <david@gibson.dropbear.id.au>
      
      Currently the flag indicating whether or not hugepages are allowed below
      4GB is not correctly propagated across fork(), which can lead to oopses.
      The patch below fixes this.
      00fbc4fc
    • Andrew Morton's avatar
      [PATCH] get PPC64 iSeries closer to building · 810839dd
      Andrew Morton authored
      From: Stephen Rothwell <sfr@canb.auug.org.au>
      
      This patch allows iSeries to come much closer to building.
      
      This is a precurser to my trying to merge the virtual device drivers for
      iSeries (console, disk and cdrom).
      810839dd
    • Andrew Morton's avatar
      [PATCH] Fix for 32-bit execve() error path · 65b7ee8a
      Andrew Morton authored
      From: David Gibson <david@gibson.dropbear.id.au>
      
      The patch below fixes a bug in ppc64's 32-bit execve() path.  It duplicates
      logic already in the normal fs/exec.c do_execve() to avoid dropping a NULL
      mm.  The bprm.mm becomes NULL once the exec passes the "point of no
      return".  Without this patch a failure past that point (e.g.  mmap()
      failure) will cause an oops, with it just a killed process.
      65b7ee8a
    • Linus Torvalds's avatar
      Merge bk://kernel.bkbits.net/gregkh/linux/usb-2.6 · d050b394
      Linus Torvalds authored
      into home.osdl.org:/home/torvalds/v2.5/linux
      d050b394
    • Pete Zaitcev's avatar
      [PATCH] USB: Band-aid for mct_u232 in 2.6.1 · b5206660
      Pete Zaitcev authored
      On Sun, 18 Jan 2004 00:37:44 -0800
      Pete Zaitcev <zaitcev@redhat.com> wrote:
      
      > My Magic Control Technology adapter causes an oops in the following way.
      > Connect the thing, run "cat < /dev/ttyUSB0", disconnect, kill cat with ^C.
      > The result looks like this:
      
      I played with it a little more, and pretty much got everything working,
      thus fixing two Fedora bugs.
       https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=112889
       https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=113700
      b5206660
    • Felipe Alfaro Solana's avatar
      [PATCH] USB Storage: unusual_devs.h patch for Trumpion MP3 player · 701e91c8
      Felipe Alfaro Solana authored
      This patch is needed for the USB storage subsystem to recognize the
      Trumpion MP3 player as a valid USB mass storage.
      
      T:  Bus=01 Lev=01 Prnt=01 Port=00 Cnt=01 Dev#=  3 Spd=12  MxCh= 0
      D:  Ver= 1.00 Cls=00(>ifc ) Sub=00 Prot=00 MxPS= 8 #Cfgs=  1
      P:  Vendor=090a ProdID=1200 Rev= 1.00
      C:* #Ifs= 1 Cfg#= 1 Atr=a0 MxPwr=256mA
      I:  If#= 0 Alt= 0 #EPs= 3 Cls=08(stor.) Sub=01 Prot=01 Driver=usb-storage
      E:  Ad=81(I) Atr=02(Bulk) MxPS=  64 Ivl=0ms
      E:  Ad=02(O) Atr=02(Bulk) MxPS=  64 Ivl=0ms
      E:  Ad=83(I) Atr=03(Int.) MxPS=   8 Ivl=255ms
      701e91c8
    • Axel Waggershauser's avatar
      a5e3bda2
    • Matthew Dharm's avatar
      [PATCH] USB Storage: Sysfs attribute file for max_sectors · 18cdc0b3
      Matthew Dharm authored
      After much discussion with the SCSI folks, here's a patch to export
      max_sectors as a sysfs attribute.  Turning this down makes some people's
      devices more stable, but at a significant cost in performance.  Now, users
      can adjust it without recompilation.
      
      This is YAASP (yet another Alan Stern patch).
      18cdc0b3
    • Alan Stern's avatar
      [PATCH] USB Storage: Notify the SCSI layer about device resets · 27ea252f
      Alan Stern authored
      According to James Bottomley, we need to notify the SCSI midlayer whenever
      we issue a driver-initiated device reset.  That can happen in several
      places, most notably following a transport error.  This patch adds
      code to the reset routine to take care of it.  (Notifying about resets
      requested by the midlayer itself is unnecessary but harmless.)
      
      Alan Stern
      
      On 15 Dec 2003, James Bottomley wrote:
      
      > It looks like the driver sent a reset to the device on its own without
      > reporting it to the mid-layer.
      >
      > There's an expecting_cc_ua flag in the scsi_device.  It gets set on
      > error recovery actions, or if the device does something to detect or
      > trigger a reset (that's the scsi_report_device_reset() and
      > scsi_report_bus_reset() API's).
      >
      > James
      27ea252f
    • Adam Kropelin's avatar
      [PATCH] USB: hiddev HIDIOCGREPORT not blocking in 2.6 · f3c64148
      Adam Kropelin authored
      I've noticed in 2.6 kernels that HIDIOCGREPORT does not wait for io
      completion before returning to the caller. This creates a few unpleasant
      issues for userspace:
      
      First, code sequences such as...
      
              ioctl(fd, HIDIOCGREPORT, &rinfo);
              ioctl(fd, HIDIOCGUSAGE, &uinfo);
              ioctl(fd, HIDIOCGSTRING, &sdesc);
      
      ...that used to work in 2.4 now fail in 2.6 if the device takes more
      than a few milliseconds to respond to HIDIOCGREPORT. (I'm seeing this
      issue on APC UPSes, FWIW.)
      
      Second, userspace code can easily flood the kernel with control messages
      since the kernel provides no "backpressure". The result is a lot of
      "hid-core.c: control queue full" errors and lost reports.
      
      2.6 hid-core.c appears to submit the request and return immediately.
      Although the 2.4 code differs significantly, I traced the call path to
      usb-core.c, which seems to block with a timeout, so the code supports my
      userspace observation. (Assuming I didn't misread it.)
      f3c64148
    • Greg Kroah-Hartman's avatar
    • Greg Kroah-Hartman's avatar
    • Linus Torvalds's avatar
      Merge bk://bk.arm.linux.org.uk/linux-2.6-rmk · 1c23361e
      Linus Torvalds authored
      into home.osdl.org:/home/torvalds/v2.5/linux
      1c23361e
    • Frank Becker's avatar
      [ARM PATCH] 1703/1: SA Cerf update (cleanup) · b7c5d0b8
      Frank Becker authored
      Patch from Frank Becker
      
      Crud removal. Updated cerf doc.
      
      The SA CerfPDA/CerfPOD have long been gone. I see no
      community activity. The last official release was 2.4.9.
      
      Removed ifdefs for CERF_CPLD (which referred to the PDA/POD), go figure.
      Removed keyboard driver.
      Removed default configs for PDA/POD.
      Removed PDA/POD related LCD stuff.
      b7c5d0b8
    • Nicolas Pitre's avatar
      [ARM PATCH] 1735/1: correct memcpy return value on ARM · 9fa4d536
      Nicolas Pitre authored
      Patch from Nicolas Pitre
      9fa4d536
    • Tony Lindgren's avatar
      [ARM PATCH] 1741/1: Add ARM710T processor functions · fc1a59c5
      Tony Lindgren authored
      Patch from Tony Lindgren
      
      Following patch adds ARM710T processor support to proc-arm720.S.
      
      The preferred way to add support was discussed on the Linux-arm-kernel
      mailing list in December, with a link to the thread here:
      
      http://lists.arm.linux.org.uk/pipermail/linux-arm-kernel/2003-October/017596.html
      
      NEC ARM710T is used in Psion Windermere architecture, and possibly
      other systems.
      
      710T works fine with the 720T functions, except the high_mapping
      does not work for vectors_base(). Even if the high bit register is
      set, the vectors stay at 0x00000000 instead of 0xffff0000.
      fc1a59c5
    • Peter Teichmann's avatar
      [ARM PATCH] 1717/1: Add German umlauts to Acorn console font · b8dded80
      Peter Teichmann authored
      Patch from Peter Teichmann
      
      This adds German Umlauts (ÄÖÜäöüß) and some other Characters to the
      Acorn 8x8 console font.
      b8dded80
    • David Brownell's avatar
      [ARM PATCH] 1714/1: pxa2xx_udc (5/5) pxa2xx_udc driver · 29b473c1
      David Brownell authored
      Patch from David Brownell
      
      This patch adds the UDC driver itself.
      
      Depends on the udc platform_data patch (#3 this series)
      and on 1659/1 (kconfig/kbuild support).
      
      SUPERCEDES patch 1658/1 (against test5)
      29b473c1
    • David Brownell's avatar
      [ARM PATCH] 1713/1: pxa2xx_udc (4/5) mach-pxa/lubbock.c updates · 59256069
      David Brownell authored
      Patch from David Brownell
      
      This adds basic lubbock-specific customization for the UDC driver,
      and makes it use INIT_MACHINE.
      
      Depends on the INIT_MACHINE patch and the UDC platform_data patches
      (#1, #3 in this series).
      
      Be careful of patch conflicts applying to other kernels, mostly due
      to different platform devices being listed.
      
      59256069
    • David Brownell's avatar
      [ARM PATCH] 1711/1: pxa2xx_udc (3/5) add udc platform_device, platform_data · 4bec245f
      David Brownell authored
      Patch from David Brownell
      
      This declares the pxa2xx_udc platform device, defines
      the platform_data made available to that driver, and
      allows different machines to customize that platform_data.
      
      Same idea as in the FB driver.  Be careful of patch conflicts
      applying to other kernels, mostly due to different platform
      devices being listed.
      4bec245f
    • Russell King's avatar
      885abe07
    • Alan Stern's avatar
      [PATCH] USB UHCI: fix broken data toggles for queued control URBs · 93cab357
      Alan Stern authored
      This patch fixes a long-standing (albeit unidentified) problem in the
      queueing code for the UHCI HCD.  The code propagates data toggle settings
      between messages in a queue for control transfers just the same as bulk
      and interrupt transfers.  That is a mistake, since control messages always
      restart with data toggle 0.  With this patch, the UHCI driver now passes
      test 10 (control URB queueing) in David Brownell's usbtest suite.
      
      The patch appears to change more than it really does, because it alters
      the indentation level of a large section of code.
      93cab357
    • Greg Kroah-Hartman's avatar
      Merge kroah.com:/home/linux/BK/bleed-2.6 · 54d285d9
      Greg Kroah-Hartman authored
      into kroah.com:/home/linux/BK/usb-2.6
      54d285d9
    • Dave Jones's avatar
      [PATCH] Prevent false positives in non-fatal MCE check. · d00ea9a1
      Dave Jones authored
      non-fatal didn't get the same change that k7.c did a few months
      back, so it reads from banks that actually _cause_ MCEs.
      
      This patch also adds a bunch of copyright headers whilst we're
      in that neighborhood.
      d00ea9a1
    • Jeff Garzik's avatar
      Merge redhat.com:/spare/repo/linux-2.5 · e98fd32c
      Jeff Garzik authored
      into redhat.com:/spare/repo/libata-2.5
      e98fd32c
  2. 19 Jan, 2004 14 commits