I'm getting this in testing: drivers/scsi/pmcraid.c: In function 'pmcraid_request_sense': drivers/scsi/pmcraid.c:2254: warning: large integer implicitly truncated to unsigned type drivers/scsi/pmcraid.c: In function 'pmcraid_build_ioadl': drivers/scsi/pmcraid.c:3020: warning: large integer implicitly truncated to unsigned type drivers/scsi/pmcraid.c: In function 'pmcraid_build_passthrough_ioadls': drivers/scsi/pmcraid.c:3390: warning: large integer implicitly truncated to unsigned type drivers/scsi/pmcraid.c: In function 'pmcraid_querycfg': drivers/scsi/pmcraid.c:5317: warning: large integer implicitly truncated to unsigned type It's code like this: ioadl->flags = cpu_to_le32(IOADL_FLAGS_LAST_DESC); But ->flags is only u8, so that cpu_to_le32() will cause the flag to be too big to fit on a BE architecture. James -- To unsubscribe from this list: send the line "unsubscribe linux-scsi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html