lkml.org 
[lkml]   [2002]   [Jan]   [12]   [last100]   RSS Feed
Views: [more markup]  [less markup]  [headers]  [forward] 
 
Messages in this thread
/
DateSat, 12 Jan 2002 08:55:39 -0500
FromWillem Riede <>
SubjectRe: Patch: linux-2.5.2-pre11/drivers/scsi/osst.c kdev_t compilation fixes
Though this makes osst compile, this is not the way I want the
changes made. Also, osst in 2.5 needs updating to match the
version already in 2.4. So I'd prefer this not be applied.

Willem Riede.
-------------
On 2002.01.12 01:17 Adam J. Richter wrote:
> 	Per advice by Jens Axboe and Arnaldo Carvalho de Melo,
> I am holding off on requesting integration most of my other
> drivers/scsi compilation fixes that I posted earlier today, pending
> some related changes that will require updates to those patches.  
> 	However, I think the changes to osst.c should go in now,
> since the changes to that file are only only kdev_t compilation fixes.
> Here is the patch.  If nobody complains, please apply.
> 
> -- 
> Adam J. Richter     __     ______________   4880 Stevens Creek Blvd, Suite 104
> adam@yggdrasil.com     \ /                  San Jose, California 95129-1034
> +1 408 261-6630         | g g d r a s i l   United States of America
> fax +1 408 261-6631      "Free Software For The Rest Of Us."
> 
> --- linux-2.5.2-pre11/drivers/scsi/osst.c	Thu Jan 10 07:59:28 2002
> +++ linux/drivers/scsi/osst.c	Thu Jan 10 07:32:08 2002
> @@ -125,8 +125,8 @@
>  #define OSST_TIMEOUT (200 * HZ)
>  #define OSST_LONG_TIMEOUT (1800 * HZ)
> 
> -#define TAPE_NR(x) (MINOR(x) & ~(128 | ST_MODE_MASK))
> -#define TAPE_MODE(x) ((MINOR(x) & ST_MODE_MASK) >> ST_MODE_SHIFT)
> +#define TAPE_NR(x) (minor(x) & ~(128 | ST_MODE_MASK))
> +#define TAPE_MODE(x) ((minor(x) & ST_MODE_MASK) >> ST_MODE_SHIFT)
> 
>  /* Internal ioctl to set both density (uppermost 8 bits) and blocksize (lower
>     24 bits) */
> @@ -4103,7 +4103,7 @@
>  		return (-EBUSY);
>  	}
>  	STp->in_use       = 1;
> -	STp->rew_at_close = (MINOR(inode->i_rdev) & 0x80) == 0;
> +	STp->rew_at_close = (minor(inode->i_rdev) & 0x80) == 0;
> 
>  	if (STp->device->host->hostt->module)
>  		 __MOD_INC_USE_COUNT(STp->device->host->hostt->module);
> @@ -4124,7 +4124,7 @@
>  	flags = filp->f_flags;
>  	STp->write_prot = ((flags & O_ACCMODE) == O_RDONLY);
> 
> -	STp->raw = (MINOR(inode->i_rdev) & 0x40) != 0;
> +	STp->raw = (minor(inode->i_rdev) & 0x40) != 0;
> 
>  	/* Allocate a buffer for this user */
>  	need_dma_buffer = STp->restr_dma;
> @@ -5407,7 +5407,7 @@
>  #endif
> 
>  	tpnt->device = SDp;
> -	tpnt->devt = MKDEV(MAJOR_NR, i);
> +	tpnt->devt = mk_kdev(MAJOR_NR, i);
>  	tpnt->dirty = 0;
>  	tpnt->in_use = 0;
>  	tpnt->drv_buffer = 1;  /* Try buffering if no mode sense */
> 
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2005-03-22 12:15    [W:0.168 / U:0.030 seconds]
©2003-2008 Jasper Spaans