diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2016-10-01 07:37:15 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-10-01 07:37:15 -0700 |
commit | f51fdffad5b7709d0ade40736b58a2da2707fa15 (patch) | |
tree | 6d188ad3361bf26446f3718d2c28f609082fd924 /include | |
parent | 2161a2a644a6d33a29d68395518d103ed805758f (diff) | |
parent | 539294b76af8922297702a7ebb8cafe68f7e5376 (diff) | |
download | linux-f51fdffad5b7709d0ade40736b58a2da2707fa15.tar.bz2 |
Merge tag 'scsi-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi
Pull SCSI fix from James Bottomley:
"One final fix before 4.8.
There was a memory leak triggered by turning scsi mq off due to the
fact that we assume on host release that the already running hosts
weren't mq based because that's the state of the global flag (even
though they were).
Fix it by tracking this on a per host host basis"
* tag 'scsi-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi:
scsi: Avoid that toggling use_blk_mq triggers a memory leak
Diffstat (limited to 'include')
-rw-r--r-- | include/scsi/scsi_host.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/include/scsi/scsi_host.h b/include/scsi/scsi_host.h index 0dee7afa93d6..7e4cd53139ed 100644 --- a/include/scsi/scsi_host.h +++ b/include/scsi/scsi_host.h @@ -771,12 +771,9 @@ static inline int scsi_host_in_recovery(struct Scsi_Host *shost) shost->tmf_in_progress; } -extern bool scsi_use_blk_mq; - static inline bool shost_use_blk_mq(struct Scsi_Host *shost) { - return scsi_use_blk_mq; - + return shost->use_blk_mq; } extern int scsi_queue_work(struct Scsi_Host *, struct work_struct *); |