diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-03-02 14:43:27 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-03-02 14:43:27 -0500 |
commit | 986248993d495aebffcdf0758ce28ab85aa4e9ff (patch) | |
tree | 850c037dc3cb992ae1eb93bb05038f2fed95d70a /drivers/target/sbp | |
parent | 426d266c12e9116497e3055212f823a56e1a6914 (diff) | |
parent | 2dbe10a202d2743582b5fb7c9864455ef6ecf9a6 (diff) |
Merge branch 'for-next' of git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending
Pull SCSI target patches from Nicholas Bellinger:
"Here are the remaining target-pending patches for v3.9-rc1.
The most important one here is the immediate queue starvation
regression fix for iscsi-target, which addresses a bug that's
effecting v3.5+ kernels under heavy sustained READ only workloads.
Thanks alot to Benjamin Estrabaud for helping to track this down!
Also included is a pSCSI exception bugfix from Asias, along with a
handful of other minor changes. Both bugfixes are CC'ed to stable."
* 'for-next' of git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending:
target/pscsi: Rename sg_num to nr_vecs in pscsi_get_bio()
target/pscsi: Fix page increment
target/pscsi: Drop unnecessary NULL assignment to bio->bi_next
target: Add __exit annotation for module_exit functions
iscsi-target: Fix immediate queue starvation regression with DATAIN
Diffstat (limited to 'drivers/target/sbp')
-rw-r--r-- | drivers/target/sbp/sbp_target.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/target/sbp/sbp_target.c b/drivers/target/sbp/sbp_target.c index 6917a9e938e7..d3536f57444f 100644 --- a/drivers/target/sbp/sbp_target.c +++ b/drivers/target/sbp/sbp_target.c | |||
@@ -2598,7 +2598,7 @@ static int __init sbp_init(void) | |||
2598 | return 0; | 2598 | return 0; |
2599 | }; | 2599 | }; |
2600 | 2600 | ||
2601 | static void sbp_exit(void) | 2601 | static void __exit sbp_exit(void) |
2602 | { | 2602 | { |
2603 | sbp_deregister_configfs(); | 2603 | sbp_deregister_configfs(); |
2604 | }; | 2604 | }; |