diff options
author | Johannes Thumshirn <jthumshirn@suse.de> | 2016-11-17 12:31:20 +0300 |
---|---|---|
committer | Martin K. Petersen <martin.petersen@oracle.com> | 2016-11-18 04:15:25 +0300 |
commit | c00da4c90ffd066cdfe7f53ff3529c8ab4a35db0 (patch) | |
tree | d2cf6b3db87f8379926d039c6786947318cf7407 /include/linux/bsg-lib.h | |
parent | 75cc8cfc6e13d42d50c2bf4307d0a68c2a70f709 (diff) | |
download | linux-c00da4c90ffd066cdfe7f53ff3529c8ab4a35db0.tar.xz |
scsi: fc: Use bsg_destroy_job
fc_destroy_bsgjob() and bsg_destroy_job() are now 1:1 copies, so use the
latter. As bsg_destroy_job() comes from bsg-lib we need to select it in
Kconfig once CONFOG_SCSI_FC_ATTRS is active.
Signed-off-by: Johannes Thumshirn <jthumshirn@suse.de>
Reviewed-by: Hannes Reinecke <hare@suse.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Diffstat (limited to 'include/linux/bsg-lib.h')
-rw-r--r-- | include/linux/bsg-lib.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/bsg-lib.h b/include/linux/bsg-lib.h index 58e0717fda6e..67f7de6146c9 100644 --- a/include/linux/bsg-lib.h +++ b/include/linux/bsg-lib.h @@ -69,5 +69,6 @@ void bsg_job_done(struct bsg_job *job, int result, int bsg_setup_queue(struct device *dev, struct request_queue *q, char *name, bsg_job_fn *job_fn, int dd_job_size); void bsg_request_fn(struct request_queue *q); +void bsg_destroy_job(struct kref *kref); #endif |