Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1347915 > unrolled thread

[patch] sbp-target: checking for NULL instead of IS_ERR

Started byDan Carpenter <dan.carpenter@oracle.com>
First post2016-03-02 11:10 +0100
Last post2016-03-02 11:10 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [patch] sbp-target: checking for NULL instead of IS_ERR Dan Carpenter <dan.carpenter@oracle.com> - 2016-03-02 11:10 +0100

#1347915 — [patch] sbp-target: checking for NULL instead of IS_ERR

FromDan Carpenter <dan.carpenter@oracle.com>
Date2016-03-02 11:10 +0100
Subject[patch] sbp-target: checking for NULL instead of IS_ERR
Message-ID<r8bTe-6bA-37@gated-at.bofh.it>
We changed this from kzalloc to sbp_mgt_get_req() so we need to change
from checking for NULL to check for error pointers.

Fixes: c064b2a78989 ('sbp-target: Conversion to percpu_ida tag pre-allocation')
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>

diff --git a/drivers/target/sbp/sbp_target.c b/drivers/target/sbp/sbp_target.c
index 251d532..a04b0605f 100644
--- a/drivers/target/sbp/sbp_target.c
+++ b/drivers/target/sbp/sbp_target.c
@@ -951,7 +951,7 @@ static void tgt_agent_fetch_work(struct work_struct *work)
 
 	while (next_orb && tgt_agent_check_active(agent)) {
 		req = sbp_mgt_get_req(sess, sess->card, next_orb);
-		if (!req) {
+		if (IS_ERR(req)) {
 			spin_lock_bh(&agent->lock);
 			agent->state = AGENT_STATE_DEAD;
 			spin_unlock_bh(&agent->lock);

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web