Hi Greg, After merging the usb tree, today's linux-next build (powerpc ppc64_defconfig) failed like this: drivers/scsi/sd.c: In function 'read_capacity_10': drivers/scsi/sd.c:1637: error: 'struct scsi_disk' has no member named 'hw_sector_size' Caused by commit a488ec87ee2e79911d10425cb0c0264290905b38 ("scsi/sd: add a no_read_capacity_16 scsi_device flag") interacting with commit 526f7c7950bbf1271e59177d70d74438c2ef96de ("[SCSI] sd: Fix overflow with big physical blocks") from the scsi tree. I have applied the following patch for today and will carry it as a merge fix as necessary. From: Stephen Rothwell <sfr@xxxxxxxxxxxxxxxx> Date: Wed, 13 Oct 2010 14:15:15 +1100 Subject: [PATCH] scsi/sd: update for hw_sector_size rename Signed-off-by: Stephen Rothwell <sfr@xxxxxxxxxxxxxxxx> --- drivers/scsi/sd.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/scsi/sd.c b/drivers/scsi/sd.c index 8ca43e5..57d1e3e 100644 --- a/drivers/scsi/sd.c +++ b/drivers/scsi/sd.c @@ -1634,7 +1634,7 @@ static int read_capacity_10(struct scsi_disk *sdkp, struct scsi_device *sdp, 0xffffffff when the want to report a size of 0 (with which they really mean no media is present) */ sdkp->capacity = 0; - sdkp->hw_sector_size = sector_size; + sdkp->physical_block_size = sector_size; return sector_size; } -- 1.7.1 -- Cheers, Stephen Rothwell sfr@xxxxxxxxxxxxxxxx http://www.canb.auug.org.au/~sfr/ -- To unsubscribe from this list: send the line "unsubscribe linux-next" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html