ERROR: "scsi_tgt_it_nexus_create" [drivers/scsi/scsi_transport_srp.ko] undefined! ERROR: "scsi_tgt_it_nexus_destroy" [drivers/scsi/scsi_transport_srp.ko] undefined! This bug was reported about seven times against 2.6.23-rc1-mm1's git-scsi-target, and now it has been moved into git-scsi-misc. From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> - Fix this: ERROR: "scsi_tgt_it_nexus_create" [drivers/scsi/scsi_transport_srp.ko] undefined! ERROR: "scsi_tgt_it_nexus_destroy" [drivers/scsi/scsi_transport_srp.ko] undefined! - Also avoid anonymous args in the function prototypes: adding the names has commentary value, and makes it easier to check the stubbed inline function against the out-of-line declaration. Cc: James Bottomley <James.Bottomley@xxxxxxxxxxxx> Cc: FUJITA Tomonori <tomof@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/scsi/scsi_tgt.h | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff -puN include/scsi/scsi_tgt.h~scsi-fix-build-for-config_scsi_tgt=n include/scsi/scsi_tgt.h --- a/include/scsi/scsi_tgt.h~scsi-fix-build-for-config_scsi_tgt=n +++ a/include/scsi/scsi_tgt.h @@ -17,5 +17,20 @@ extern int scsi_tgt_tsk_mgmt_request(str extern struct scsi_cmnd *scsi_host_get_command(struct Scsi_Host *, enum dma_data_direction, gfp_t); extern void scsi_host_put_command(struct Scsi_Host *, struct scsi_cmnd *); -extern int scsi_tgt_it_nexus_create(struct Scsi_Host *, u64, char *); -extern int scsi_tgt_it_nexus_destroy(struct Scsi_Host *, u64); + +#ifdef CONFIG_SCSI_TGT +extern int scsi_tgt_it_nexus_create(struct Scsi_Host *shost, u64 itn_id, + char *initiator); +extern int scsi_tgt_it_nexus_destroy(struct Scsi_Host *shost, u64 itn_id); +#else +static inline int scsi_tgt_it_nexus_create(struct Scsi_Host *shost, + u64 itn_id, char *initiator) +{ + return 0; +} + +static inline int scsi_tgt_it_nexus_destroy(struct Scsi_Host *shost, u64 itn_id) +{ + return 0; +} +#endif _ - 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