From mboxrd@z Thu Jan 1 00:00:00 1970 From: Peter Jones Date: Sun, 18 Apr 1999 22:20:47 +0000 Subject: Re: ide-scsi on sparc64... Message-Id: List-Id: References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: ultralinux@vger.kernel.org Oh. Duh. I guess that is pretty obvious. Why not the second "unsigned int flags" as well though? -- Peter "Talking much about oneself can also be a means to conceal oneself." -- Nietzsche On Sun, 18 Apr 1999, David Miller wrote: > > --- drivers/scsi/ide-scsi.c.~1~ Mon Feb 22 11:36:13 1999 > +++ drivers/scsi/ide-scsi.c Sun Apr 18 14:37:07 1999 > @@ -67,7 +67,7 @@ > int b_count; /* Bytes transferred from current entry */ > Scsi_Cmnd *scsi_cmd; /* SCSI command */ > void (*done)(Scsi_Cmnd *); /* Scsi completion routine */ > - unsigned int flags; /* Status/Action flags */ > + unsigned long flags; /* Status/Action flags */ > unsigned long timeout; /* Command timeout */ > } idescsi_pc_t; > > @@ -93,8 +93,8 @@ > ide_drive_t *drive; > idescsi_pc_t *pc; /* Current packet command */ > unsigned int flags; /* Status/Action flags */ > - int transform; /* SCSI cmd translation layer */ > - int log; /* log flags */ > + unsigned long transform; /* SCSI cmd translation layer */ > + unsigned long log; /* log flags */ > } idescsi_scsi_t; > > /* >