diff mbox

[2/2] iser-target: Remove duplicate function names

Message ID 1423181345-18449-2-git-send-email-linux@rasmusvillemoes.dk (mailing list archive)
State Not Applicable, archived
Headers show

Commit Message

Rasmus Villemoes Feb. 6, 2015, 12:09 a.m. UTC
The macro isert_dbg already ensures that __func__ is part of the
output, so there's no reason to duplicate the function name in the
format string itself.

Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
---
 drivers/infiniband/ulp/isert/ib_isert.c | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

Comments

Nicholas A. Bellinger Feb. 6, 2015, 6:49 p.m. UTC | #1
On Fri, 2015-02-06 at 01:09 +0100, Rasmus Villemoes wrote:
> The macro isert_dbg already ensures that __func__ is part of the
> output, so there's no reason to duplicate the function name in the
> format string itself.
> 
> Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
> ---
>  drivers/infiniband/ulp/isert/ib_isert.c | 7 +++----
>  1 file changed, 3 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/infiniband/ulp/isert/ib_isert.c b/drivers/infiniband/ulp/isert/ib_isert.c
> index dafb3c531f96..20097de9ac45 100644
> --- a/drivers/infiniband/ulp/isert/ib_isert.c
> +++ b/drivers/infiniband/ulp/isert/ib_isert.c
> @@ -949,7 +949,7 @@ isert_post_recv(struct isert_conn *isert_conn, u32 count)
>  		isert_err("ib_post_recv() failed with ret: %d\n", ret);
>  		isert_conn->post_recv_buf_count -= count;
>  	} else {
> -		isert_dbg("isert_post_recv(): Posted %d RX buffers\n", count);
> +		isert_dbg("Posted %d RX buffers\n", count);
>  		isert_conn->conn_rx_desc_head = rx_head;
>  	}
>  	return ret;
> @@ -1709,8 +1709,7 @@ isert_put_cmd(struct isert_cmd *isert_cmd, bool comp_err)
>  		 * associated cmd->se_cmd needs to be released.
>  		 */
>  		if (cmd->se_cmd.se_tfo != NULL) {
> -			isert_dbg("Calling transport_generic_free_cmd from"
> -				 " isert_put_cmd for 0x%02x\n",
> +			isert_dbg("Calling transport_generic_free_cmd for 0x%02x\n",
>  				 cmd->iscsi_opcode);
>  			transport_generic_free_cmd(&cmd->se_cmd, 0);
>  			break;
> @@ -3136,7 +3135,7 @@ accept_wait:
>  	spin_lock_bh(&np->np_thread_lock);
>  	if (np->np_thread_state >= ISCSI_NP_THREAD_RESET) {
>  		spin_unlock_bh(&np->np_thread_lock);
> -		isert_dbg("np_thread_state %d for isert_accept_np\n",
> +		isert_dbg("np_thread_state %d\n",
>  			 np->np_thread_state);
>  		/**
>  		 * No point in stalling here when np_thread

Applied to target-pending/for-next.

Thanks Rasmus!

--nab

--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Sagi Grimberg Feb. 8, 2015, 7:03 p.m. UTC | #2
On 2/6/2015 8:49 PM, Nicholas A. Bellinger wrote:
> On Fri, 2015-02-06 at 01:09 +0100, Rasmus Villemoes wrote:
>> The macro isert_dbg already ensures that __func__ is part of the
>> output, so there's no reason to duplicate the function name in the
>> format string itself.
>>
>> Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
>> ---
>>   drivers/infiniband/ulp/isert/ib_isert.c | 7 +++----
>>   1 file changed, 3 insertions(+), 4 deletions(-)
>>
>> diff --git a/drivers/infiniband/ulp/isert/ib_isert.c b/drivers/infiniband/ulp/isert/ib_isert.c
>> index dafb3c531f96..20097de9ac45 100644
>> --- a/drivers/infiniband/ulp/isert/ib_isert.c
>> +++ b/drivers/infiniband/ulp/isert/ib_isert.c
>> @@ -949,7 +949,7 @@ isert_post_recv(struct isert_conn *isert_conn, u32 count)
>>   		isert_err("ib_post_recv() failed with ret: %d\n", ret);
>>   		isert_conn->post_recv_buf_count -= count;
>>   	} else {
>> -		isert_dbg("isert_post_recv(): Posted %d RX buffers\n", count);
>> +		isert_dbg("Posted %d RX buffers\n", count);
>>   		isert_conn->conn_rx_desc_head = rx_head;
>>   	}
>>   	return ret;
>> @@ -1709,8 +1709,7 @@ isert_put_cmd(struct isert_cmd *isert_cmd, bool comp_err)
>>   		 * associated cmd->se_cmd needs to be released.
>>   		 */
>>   		if (cmd->se_cmd.se_tfo != NULL) {
>> -			isert_dbg("Calling transport_generic_free_cmd from"
>> -				 " isert_put_cmd for 0x%02x\n",
>> +			isert_dbg("Calling transport_generic_free_cmd for 0x%02x\n",
>>   				 cmd->iscsi_opcode);
>>   			transport_generic_free_cmd(&cmd->se_cmd, 0);
>>   			break;
>> @@ -3136,7 +3135,7 @@ accept_wait:
>>   	spin_lock_bh(&np->np_thread_lock);
>>   	if (np->np_thread_state >= ISCSI_NP_THREAD_RESET) {
>>   		spin_unlock_bh(&np->np_thread_lock);
>> -		isert_dbg("np_thread_state %d for isert_accept_np\n",
>> +		isert_dbg("np_thread_state %d\n",
>>   			 np->np_thread_state);
>>   		/**
>>   		 * No point in stalling here when np_thread
>
> Applied to target-pending/for-next.
>
> Thanks Rasmus!

You can add my ack if you want:

Acked-by: Sagi Grimberg <sagig@mellanox.com>

Sagi.
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/drivers/infiniband/ulp/isert/ib_isert.c b/drivers/infiniband/ulp/isert/ib_isert.c
index dafb3c531f96..20097de9ac45 100644
--- a/drivers/infiniband/ulp/isert/ib_isert.c
+++ b/drivers/infiniband/ulp/isert/ib_isert.c
@@ -949,7 +949,7 @@  isert_post_recv(struct isert_conn *isert_conn, u32 count)
 		isert_err("ib_post_recv() failed with ret: %d\n", ret);
 		isert_conn->post_recv_buf_count -= count;
 	} else {
-		isert_dbg("isert_post_recv(): Posted %d RX buffers\n", count);
+		isert_dbg("Posted %d RX buffers\n", count);
 		isert_conn->conn_rx_desc_head = rx_head;
 	}
 	return ret;
@@ -1709,8 +1709,7 @@  isert_put_cmd(struct isert_cmd *isert_cmd, bool comp_err)
 		 * associated cmd->se_cmd needs to be released.
 		 */
 		if (cmd->se_cmd.se_tfo != NULL) {
-			isert_dbg("Calling transport_generic_free_cmd from"
-				 " isert_put_cmd for 0x%02x\n",
+			isert_dbg("Calling transport_generic_free_cmd for 0x%02x\n",
 				 cmd->iscsi_opcode);
 			transport_generic_free_cmd(&cmd->se_cmd, 0);
 			break;
@@ -3136,7 +3135,7 @@  accept_wait:
 	spin_lock_bh(&np->np_thread_lock);
 	if (np->np_thread_state >= ISCSI_NP_THREAD_RESET) {
 		spin_unlock_bh(&np->np_thread_lock);
-		isert_dbg("np_thread_state %d for isert_accept_np\n",
+		isert_dbg("np_thread_state %d\n",
 			 np->np_thread_state);
 		/**
 		 * No point in stalling here when np_thread