From: Christoph Hellwig Date: Thu, 31 May 2007 18:12:26 +0000 (+0200) Subject: [SCSI] introduce shost_priv helper X-Git-Tag: v2.6.23-rc1~1053^2~99 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=bcd92c9fbcc679ee95003083056f0441a1f474fa;p=~emulex%2Finfiniband.git [SCSI] introduce shost_priv helper Currently accessing the scsi host private data is rather messy because it comes as an unsigned long that always needs a cast first. This patch introduces a helper that does the cast called shost_priv. It's similar in spirit to netdev_priv for network drivers. This is the first patch introducing the macro, and the second patch in the series will convert esp and it's subdrivers as an example. Further conversion will wait until the helper is in the tree to make patch juggling easier. Signed-off-by: Christoph Hellwig Signed-off-by: James Bottomley --- diff --git a/include/scsi/scsi_host.h b/include/scsi/scsi_host.h index 4a2e490abfe..ba07cf7c04b 100644 --- a/include/scsi/scsi_host.h +++ b/include/scsi/scsi_host.h @@ -671,6 +671,10 @@ struct Scsi_Host { #define shost_printk(prefix, shost, fmt, a...) \ dev_printk(prefix, &(shost)->shost_gendev, fmt, ##a) +static inline void *shost_priv(struct Scsi_Host *shost) +{ + return (void *)shost->hostdata; +} int scsi_is_host_device(const struct device *);