diff options
Diffstat (limited to 'drivers/target/loopback')
-rw-r--r-- | drivers/target/loopback/tcm_loop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/target/loopback/tcm_loop.c b/drivers/target/loopback/tcm_loop.c index c2937b2035d3..083d6c51f052 100644 --- a/drivers/target/loopback/tcm_loop.c +++ b/drivers/target/loopback/tcm_loop.c | |||
@@ -1205,7 +1205,7 @@ struct se_portal_group *tcm_loop_make_naa_tpg( | |||
1205 | tpgt_str += 5; /* Skip ahead of "tpgt_" */ | 1205 | tpgt_str += 5; /* Skip ahead of "tpgt_" */ |
1206 | tpgt = (unsigned short int) simple_strtoul(tpgt_str, &end_ptr, 0); | 1206 | tpgt = (unsigned short int) simple_strtoul(tpgt_str, &end_ptr, 0); |
1207 | 1207 | ||
1208 | if (tpgt > TL_TPGS_PER_HBA) { | 1208 | if (tpgt >= TL_TPGS_PER_HBA) { |
1209 | printk(KERN_ERR "Passed tpgt: %hu exceeds TL_TPGS_PER_HBA:" | 1209 | printk(KERN_ERR "Passed tpgt: %hu exceeds TL_TPGS_PER_HBA:" |
1210 | " %u\n", tpgt, TL_TPGS_PER_HBA); | 1210 | " %u\n", tpgt, TL_TPGS_PER_HBA); |
1211 | return ERR_PTR(-EINVAL); | 1211 | return ERR_PTR(-EINVAL); |