Skip to content
Snippets Groups Projects
  1. Jul 04, 2008
  2. May 23, 2008
  3. Apr 29, 2008
  4. Apr 21, 2008
  5. Mar 04, 2008
  6. Feb 06, 2008
  7. Feb 05, 2008
  8. Feb 01, 2008
  9. Jan 28, 2008
  10. Jan 27, 2008
    • Adrian McMenamin's avatar
      cdrom: Add support for Sega Dreamcast GD-ROM. · 74ee1a75
      Adrian McMenamin authored
      
      This patch adds support for the GD-Rom drive, SEGA's proprietary
      implementation of an IDE CD Rom for the SEGA Dreamcast. This driver
      implements Sega's Packet Interface (SPI) - at least partially. It will
      also read disks in SEGA's propreitary GD format.
      
      Unlike previous drivers (which were never in mainline) this uses DMA and
      not PIO to read disks. It is a new driver, not a refactoring of old
      drivers.
      
      Signed-off by: Adrian McMenamin <adrian@mcmen.demon.co.uk>
      Acked-by: default avatarJens Axboe <jens.axboe@oracle.com>
      Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
      74ee1a75
  11. Oct 24, 2007
  12. Oct 19, 2007
  13. Oct 18, 2007
  14. Oct 11, 2007
  15. Sep 26, 2007
  16. Jul 24, 2007
  17. Jul 16, 2007
  18. Jul 10, 2007
    • Jens Axboe's avatar
      Remove legacy CDROM drivers · f3f541f9
      Jens Axboe authored
      
      They are all broken beyond repair. Given that nobody has complained
      about them (most haven't worked in 2.6 AT ALL), remove them from the
      tree.
      
      A new mitsumi driver that actually works is in progress, it'll get
      added when completed.
      
      Signed-off-by: default avatarJens Axboe <jens.axboe@oracle.com>
      f3f541f9
    • Boaz Harrosh's avatar
      [PATCH] fix request->cmd == INT cases · e654bc43
      Boaz Harrosh authored
      
       - I have unearthed very old bugs in stale drivers that still
         used request->cmd as a READ|WRITE int
       - This patch is maybe a proof that these drivers have not been
         used for a long time. Should they be removed completely?
      
      Drivers that currently do not work for sure:
       drivers/acorn/block/fd1772.c |    2 +-
       drivers/acorn/block/mfmhd.c  |    8 ++++----
       drivers/cdrom/aztcd.c        |    2 +-
       drivers/cdrom/cm206.c        |    2 +-
       drivers/cdrom/gscd.c         |    2 +-
       drivers/cdrom/mcdx.c         |    2 +-
       drivers/cdrom/optcd.c        |    2 +-
       drivers/cdrom/sjcd.c         |    2 +-
      
      Drivers with cosmetic fixes only:
        b/drivers/block/amiflop.c
        b/drivers/block/nbd.c
        b/drivers/ide/legacy/hd.c
      
      Signed-off-by: default avatarBoaz Harrosh <bharrosh@panasas.com>
      Signed-off-by: default avatarJens Axboe <jens.axboe@oracle.com>
      e654bc43
    • Dave Young's avatar
      [PATCH] cdrom_sysctl_info fix · 554988d6
      Dave Young authored
      
      Fix the cdrom_sysctl_info possible buffer overwrite bug. Also
      fix the locking of accessing topCdromPtr pointer.
      
      Signed-off-by: default avatarDave Young <hidave.darkstar@gmail.com>
      Signed-off-by: default avatarJens Axboe <jens.axboe@oracle.com>
      554988d6
  19. Jun 08, 2007
  20. May 07, 2007
  21. Mar 05, 2007
  22. Feb 14, 2007
  23. Feb 12, 2007
  24. Jan 03, 2007
  25. Dec 19, 2006
  26. Dec 13, 2006
    • Robert P. J. Day's avatar
      [PATCH] getting rid of all casts of k[cmz]alloc() calls · 5cbded58
      Robert P. J. Day authored
      
      Run this:
      
      	#!/bin/sh
      	for f in $(grep -Erl "\([^\)]*\) *k[cmz]alloc" *) ; do
      	  echo "De-casting $f..."
      	  perl -pi -e "s/ ?= ?\([^\)]*\) *(k[cmz]alloc) *\(/ = \1\(/" $f
      	done
      
      And then go through and reinstate those cases where code is casting pointers
      to non-pointers.
      
      And then drop a few hunks which conflicted with outstanding work.
      
      Cc: Russell King <rmk@arm.linux.org.uk>, Ian Molton <spyro@f2s.com>
      Cc: Mikael Starvik <starvik@axis.com>
      Cc: Yoshinori Sato <ysato@users.sourceforge.jp>
      Cc: Roman Zippel <zippel@linux-m68k.org>
      Cc: Geert Uytterhoeven <geert@linux-m68k.org>
      Cc: Ralf Baechle <ralf@linux-mips.org>
      Cc: Paul Mackerras <paulus@samba.org>
      Cc: Kyle McMartin <kyle@mcmartin.ca>
      Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
      Cc: Martin Schwidefsky <schwidefsky@de.ibm.com>
      Cc: "David S. Miller" <davem@davemloft.net>
      Cc: Jeff Dike <jdike@addtoit.com>
      Cc: Greg KH <greg@kroah.com>
      Cc: Jens Axboe <jens.axboe@oracle.com>
      Cc: Paul Fulghum <paulkf@microgate.com>
      Cc: Alan Cox <alan@lxorguk.ukuu.org.uk>
      Cc: Karsten Keil <kkeil@suse.de>
      Cc: Mauro Carvalho Chehab <mchehab@infradead.org>
      Cc: Jeff Garzik <jeff@garzik.org>
      Cc: James Bottomley <James.Bottomley@steeleye.com>
      Cc: Ian Kent <raven@themaw.net>
      Cc: Steven French <sfrench@us.ibm.com>
      Cc: David Woodhouse <dwmw2@infradead.org>
      Cc: Neil Brown <neilb@cse.unsw.edu.au>
      Cc: Jaroslav Kysela <perex@suse.cz>
      Cc: Takashi Iwai <tiwai@suse.de>
      Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
      Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
      5cbded58
Loading