target-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] scsi: target: core: Added a blank line after target_remove_from_tmr_list()
@ 2023-02-10 17:55 Alok Tiwari
  2023-02-11  7:48 ` Greg KH
  0 siblings, 1 reply; 4+ messages in thread
From: Alok Tiwari @ 2023-02-10 17:55 UTC (permalink / raw)
  To: linux-scsi
  Cc: alok.a.tiwari, darren.kenny, michael.christie, linux-kernel,
	stable, martin.petersen, d.bogdanov, r.bolshakov, target-devel

There is no separate blank line between target_remove_from_tmr_list() and
transport_cmd_check_stop_to_fabric
As per coding-style, it is require to separate functions with one blank line.

Fixes: 12b6fcd0ea7f ("scsi: target: core: Remove from tmr_list during LUN unlink")
Signed-off-by: Alok Tiwari <alok.a.tiwari@oracle.com>
---
 drivers/target/target_core_transport.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/target/target_core_transport.c b/drivers/target/target_core_transport.c
index 5926316252eb..f1cdf78fc5ef 100644
--- a/drivers/target/target_core_transport.c
+++ b/drivers/target/target_core_transport.c
@@ -691,6 +691,7 @@ static void target_remove_from_tmr_list(struct se_cmd *cmd)
 		spin_unlock_irqrestore(&dev->se_tmr_lock, flags);
 	}
 }
+
 /*
  * This function is called by the target core after the target core has
  * finished processing a SCSI command or SCSI TMF. Both the regular command
-- 
2.39.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] scsi: target: core: Added a blank line after target_remove_from_tmr_list()
  2023-02-10 17:55 [PATCH] scsi: target: core: Added a blank line after target_remove_from_tmr_list() Alok Tiwari
@ 2023-02-11  7:48 ` Greg KH
  2023-02-11  8:20   ` ALOK TIWARI
  0 siblings, 1 reply; 4+ messages in thread
From: Greg KH @ 2023-02-11  7:48 UTC (permalink / raw)
  To: Alok Tiwari
  Cc: linux-scsi, darren.kenny, michael.christie, linux-kernel, stable,
	martin.petersen, d.bogdanov, r.bolshakov, target-devel

On Fri, Feb 10, 2023 at 09:55:22AM -0800, Alok Tiwari wrote:
> There is no separate blank line between target_remove_from_tmr_list() and
> transport_cmd_check_stop_to_fabric
> As per coding-style, it is require to separate functions with one blank line.
> 
> Fixes: 12b6fcd0ea7f ("scsi: target: core: Remove from tmr_list during LUN unlink")
> Signed-off-by: Alok Tiwari <alok.a.tiwari@oracle.com>
> ---
>  drivers/target/target_core_transport.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/target/target_core_transport.c b/drivers/target/target_core_transport.c
> index 5926316252eb..f1cdf78fc5ef 100644
> --- a/drivers/target/target_core_transport.c
> +++ b/drivers/target/target_core_transport.c
> @@ -691,6 +691,7 @@ static void target_remove_from_tmr_list(struct se_cmd *cmd)
>  		spin_unlock_irqrestore(&dev->se_tmr_lock, flags);
>  	}
>  }
> +
>  /*
>   * This function is called by the target core after the target core has
>   * finished processing a SCSI command or SCSI TMF. Both the regular command
> -- 
> 2.39.1
> 

Why is a coding style change tagged with a "fixes:" line and cc: stable?

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] scsi: target: core: Added a blank line after target_remove_from_tmr_list()
  2023-02-11  7:48 ` Greg KH
@ 2023-02-11  8:20   ` ALOK TIWARI
  2023-02-11 10:04     ` ALOK TIWARI
  0 siblings, 1 reply; 4+ messages in thread
From: ALOK TIWARI @ 2023-02-11  8:20 UTC (permalink / raw)
  To: Greg KH
  Cc: linux-scsi, darren.kenny, michael.christie, linux-kernel, stable,
	martin.petersen, d.bogdanov, r.bolshakov, target-devel

commit "Fixes: 12b6fcd0ea7f" introduce that change in source code.
that's reason we are using "fixes:". back-porting that change is creating awkward manual conflict resolution.

Thanks,
Alok

On 2/11/2023 1:18 PM, Greg KH wrote:
> On Fri, Feb 10, 2023 at 09:55:22AM -0800, Alok Tiwari wrote:
>> There is no separate blank line between target_remove_from_tmr_list() and
>> transport_cmd_check_stop_to_fabric
>> As per coding-style, it is require to separate functions with one blank line.
>>
>> Fixes: 12b6fcd0ea7f ("scsi: target: core: Remove from tmr_list during LUN unlink")
>> Signed-off-by: Alok Tiwari <alok.a.tiwari@oracle.com>
>> ---
>>   drivers/target/target_core_transport.c | 1 +
>>   1 file changed, 1 insertion(+)
>>
>> diff --git a/drivers/target/target_core_transport.c b/drivers/target/target_core_transport.c
>> index 5926316252eb..f1cdf78fc5ef 100644
>> --- a/drivers/target/target_core_transport.c
>> +++ b/drivers/target/target_core_transport.c
>> @@ -691,6 +691,7 @@ static void target_remove_from_tmr_list(struct se_cmd *cmd)
>>   		spin_unlock_irqrestore(&dev->se_tmr_lock, flags);
>>   	}
>>   }
>> +
>>   /*
>>    * This function is called by the target core after the target core has
>>    * finished processing a SCSI command or SCSI TMF. Both the regular command
>> -- 
>> 2.39.1
>>
> Why is a coding style change tagged with a "fixes:" line and cc: stable?
>
> thanks,
>
> greg k-h

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] scsi: target: core: Added a blank line after target_remove_from_tmr_list()
  2023-02-11  8:20   ` ALOK TIWARI
@ 2023-02-11 10:04     ` ALOK TIWARI
  0 siblings, 0 replies; 4+ messages in thread
From: ALOK TIWARI @ 2023-02-11 10:04 UTC (permalink / raw)
  To: Greg KH
  Cc: linux-scsi, darren.kenny, michael.christie, linux-kernel,
	martin.petersen, d.bogdanov, target-devel


On 2/11/2023 1:50 PM, ALOK TIWARI wrote:
> commit "Fixes: 12b6fcd0ea7f" introduce that change in source code.
> that's reason we are using "fixes:". back-porting that change is 
> creating awkward manual conflict resolution.
>
> Thanks,
> Alok
>
> On 2/11/2023 1:18 PM, Greg KH wrote:
>> On Fri, Feb 10, 2023 at 09:55:22AM -0800, Alok Tiwari wrote:
>>> There is no separate blank line between 
>>> target_remove_from_tmr_list() and
>>> transport_cmd_check_stop_to_fabric
>>> As per coding-style, it is require to separate functions with one 
>>> blank line.
>>>
>>> Fixes: 12b6fcd0ea7f ("scsi: target: core: Remove from tmr_list 
>>> during LUN unlink")
>>> Signed-off-by: Alok Tiwari <alok.a.tiwari@oracle.com>
>>> ---
>>>   drivers/target/target_core_transport.c | 1 +
>>>   1 file changed, 1 insertion(+)
>>>
>>> diff --git a/drivers/target/target_core_transport.c 
>>> b/drivers/target/target_core_transport.c
>>> index 5926316252eb..f1cdf78fc5ef 100644
>>> --- a/drivers/target/target_core_transport.c
>>> +++ b/drivers/target/target_core_transport.c
>>> @@ -691,6 +691,7 @@ static void target_remove_from_tmr_list(struct 
>>> se_cmd *cmd)
>>>           spin_unlock_irqrestore(&dev->se_tmr_lock, flags);
>>>       }
>>>   }
>>> +
>>>   /*
>>>    * This function is called by the target core after the target 
>>> core has
>>>    * finished processing a SCSI command or SCSI TMF. Both the 
>>> regular command
>>> -- 
>>> 2.39.1
>>>
>> Why is a coding style change tagged with a "fixes:" line and cc: stable?
>>
>> thanks,
>>
>> greg k-h

I will send new version to remove  -> "fixes:" line and cc: stable

Thanks,

Alok


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-02-11 10:04 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-10 17:55 [PATCH] scsi: target: core: Added a blank line after target_remove_from_tmr_list() Alok Tiwari
2023-02-11  7:48 ` Greg KH
2023-02-11  8:20   ` ALOK TIWARI
2023-02-11 10:04     ` ALOK TIWARI

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).