mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 08:58:07 +00:00
7525236d0b
This adds minimum target driver support like the srp transport does: - fc_remote_port_{rolechg,delete} calls scsi_tgt_it_nexus_{create,destroy} for target drivers. - add callbacks to notify target drivers of the nexus and tmf operation results to fc_function_template. Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> Signed-off-by: Mike Christie <michaelc@cs.wisc.edu> Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
26 lines
584 B
C
26 lines
584 B
C
#include <scsi/scsi_tgt.h>
|
|
|
|
#ifdef CONFIG_SCSI_FC_TGT_ATTRS
|
|
static inline int fc_tgt_it_nexus_create(struct Scsi_Host *shost, u64 itn_id,
|
|
char *initiator)
|
|
{
|
|
return scsi_tgt_it_nexus_create(shost, itn_id, initiator);
|
|
}
|
|
|
|
static inline int fc_tgt_it_nexus_destroy(struct Scsi_Host *shost, u64 itn_id)
|
|
{
|
|
return scsi_tgt_it_nexus_destroy(shost, itn_id);
|
|
}
|
|
#else
|
|
static inline int fc_tgt_it_nexus_create(struct Scsi_Host *shost, u64 itn_id,
|
|
char *initiator)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static inline int fc_tgt_it_nexus_destroy(struct Scsi_Host *shost, u64 itn_id)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
#endif
|