All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] sr: consider the last written sector when determining media size
@ 2009-09-04  2:38 Tejun Heo
  2009-09-14 21:54 ` Tejun Heo
  0 siblings, 1 reply; 3+ messages in thread
From: Tejun Heo @ 2009-09-04  2:38 UTC (permalink / raw)
  To: James Bottomley, linux-scsi, IDE/ATA development list, Milan Kocian

On certain cases, UDF disc doesn't report capacity correctly via
READ_CAPACITY but TOC or trackinfo contains valid information which
can be obtained using cdrom_get_last_written().  ide-cd considers both
values and uses the larger one.  Do the same in sr.  This fixes
bko#9668.

 http://bugzilla.kernel.org/show_bug.cgi?id=9668

Signed-off-by: Tejun Heo <tj@kernel.org>
Reported-by: Milan Kocian <milan.kocian@wq.cz>
Cc: Jan Kara <jack@suse.cz>
---
 drivers/scsi/sr.c |   22 ++++++++++++++--------
 1 file changed, 14 insertions(+), 8 deletions(-)

diff --git a/drivers/scsi/sr.c b/drivers/scsi/sr.c
index cce0fe4..76bdcfc 100644
--- a/drivers/scsi/sr.c
+++ b/drivers/scsi/sr.c
@@ -684,14 +684,20 @@ static void get_sectorsize(struct scsi_cd *cd)
 		cd->capacity = 0x1fffff;
 		sector_size = 2048;	/* A guess, just in case */
 	} else {
-#if 0
-		if (cdrom_get_last_written(&cd->cdi,
-					   &cd->capacity))
-#endif
-			cd->capacity = 1 + ((buffer[0] << 24) |
-						    (buffer[1] << 16) |
-						    (buffer[2] << 8) |
-						    buffer[3]);
+		long last_written;
+
+		cd->capacity = 1 + ((buffer[0] << 24) | (buffer[1] << 16) |
+				    (buffer[2] << 8) | buffer[3]);
+		/*
+		 * READ_CAPACITY doesn't return the correct size on
+		 * certain UDF media.  If last_written is larger, use
+		 * it instead.
+		 *
+		 * http://bugzilla.kernel.org/show_bug.cgi?id=9668
+		 */
+		if (!cdrom_get_last_written(&cd->cdi, &last_written))
+			cd->capacity = max_t(long, cd->capacity, last_written);
+
 		sector_size = (buffer[4] << 24) |
 		    (buffer[5] << 16) | (buffer[6] << 8) | buffer[7];
 		switch (sector_size) {

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] sr: consider the last written sector when determining media size
  2009-09-04  2:38 [PATCH] sr: consider the last written sector when determining media size Tejun Heo
@ 2009-09-14 21:54 ` Tejun Heo
  2009-09-15  7:05   ` Milan Kocian
  0 siblings, 1 reply; 3+ messages in thread
From: Tejun Heo @ 2009-09-14 21:54 UTC (permalink / raw)
  To: James Bottomley, linux-scsi, IDE/ATA development list, Milan Kocian

Tejun Heo wrote:
> On certain cases, UDF disc doesn't report capacity correctly via
> READ_CAPACITY but TOC or trackinfo contains valid information which
> can be obtained using cdrom_get_last_written().  ide-cd considers both
> values and uses the larger one.  Do the same in sr.  This fixes
> bko#9668.
> 
>  http://bugzilla.kernel.org/show_bug.cgi?id=9668
> 
> Signed-off-by: Tejun Heo <tj@kernel.org>
> Reported-by: Milan Kocian <milan.kocian@wq.cz>
> Cc: Jan Kara <jack@suse.cz>

PING.

-- 
tejun

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] sr: consider the last written sector when determining media size
  2009-09-14 21:54 ` Tejun Heo
@ 2009-09-15  7:05   ` Milan Kocian
  0 siblings, 0 replies; 3+ messages in thread
From: Milan Kocian @ 2009-09-15  7:05 UTC (permalink / raw)
  To: Tejun Heo
  Cc: James Bottomley, linux-scsi, IDE/ATA development list,
	Milan Kocian, Jan Kara

On Tue, Sep 15, 2009 at 06:54:02AM +0900, Tejun Heo wrote:
> Tejun Heo wrote:
> > On certain cases, UDF disc doesn't report capacity correctly via
> > READ_CAPACITY but TOC or trackinfo contains valid information which
> > can be obtained using cdrom_get_last_written().  ide-cd considers both
> > values and uses the larger one.  Do the same in sr.  This fixes
> > bko#9668.
> > 
> >  http://bugzilla.kernel.org/show_bug.cgi?id=9668
> > 
> > Signed-off-by: Tejun Heo <tj@kernel.org>
> > Reported-by: Milan Kocian <milan.kocian@wq.cz>
> > Cc: Jan Kara <jack@suse.cz>
> 
> PING.
> 
> -- 
> tejun
> 

yes, works for me. You can add :

Tested-by: Milan Kocian <milan.kocian@wq.cz>

:-)

-- 
Milan Kocian

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2009-09-15  7:42 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-09-04  2:38 [PATCH] sr: consider the last written sector when determining media size Tejun Heo
2009-09-14 21:54 ` Tejun Heo
2009-09-15  7:05   ` Milan Kocian

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.