All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH trivial] IB/srp: Allow newline separator for connection string
@ 2014-10-19 15:19 Sagi Grimberg
       [not found] ` <1413731942-3317-1-git-send-email-sagig-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: Sagi Grimberg @ 2014-10-19 15:19 UTC (permalink / raw)
  To: bvanassche-HInyCGIudOg, roland-DgEjT+Ai2ygdnm+yROfE0A
  Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA

In case last argument of the connection string is
processed as a string (destination gid for example).

Signed-off-by: Sagi Grimberg <sagig-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
---
 drivers/infiniband/ulp/srp/ib_srp.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/infiniband/ulp/srp/ib_srp.c b/drivers/infiniband/ulp/srp/ib_srp.c
index 62d2a18..5f590cf 100644
--- a/drivers/infiniband/ulp/srp/ib_srp.c
+++ b/drivers/infiniband/ulp/srp/ib_srp.c
@@ -2760,7 +2760,7 @@ static int srp_parse_options(const char *buf, struct srp_target_port *target)
 		return -ENOMEM;
 
 	sep_opt = options;
-	while ((p = strsep(&sep_opt, ",")) != NULL) {
+	while ((p = strsep(&sep_opt, ",\n")) != NULL) {
 		if (!*p)
 			continue;
 
-- 
1.7.1

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

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

* Re: [PATCH trivial] IB/srp: Allow newline separator for connection string
       [not found] ` <1413731942-3317-1-git-send-email-sagig-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
@ 2014-10-20 15:08   ` Bart Van Assche
       [not found]     ` <54452561.1050508-HInyCGIudOg@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: Bart Van Assche @ 2014-10-20 15:08 UTC (permalink / raw)
  To: Sagi Grimberg, roland-DgEjT+Ai2ygdnm+yROfE0A
  Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA

On 10/19/14 17:19, Sagi Grimberg wrote:
> In case last argument of the connection string is
> processed as a string (destination gid for example).
>
> Signed-off-by: Sagi Grimberg <sagig-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
> ---
>   drivers/infiniband/ulp/srp/ib_srp.c |    2 +-
>   1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/infiniband/ulp/srp/ib_srp.c b/drivers/infiniband/ulp/srp/ib_srp.c
> index 62d2a18..5f590cf 100644
> --- a/drivers/infiniband/ulp/srp/ib_srp.c
> +++ b/drivers/infiniband/ulp/srp/ib_srp.c
> @@ -2760,7 +2760,7 @@ static int srp_parse_options(const char *buf, struct srp_target_port *target)
>   		return -ENOMEM;
>
>   	sep_opt = options;
> -	while ((p = strsep(&sep_opt, ",")) != NULL) {
> +	while ((p = strsep(&sep_opt, ",\n")) != NULL) {
>   		if (!*p)
>   			continue;

Hello Sagi,

It has already happened that users were confused by a write into the 
"add_target" sysfs attribute that failed because of a newline not being 
accepted as a separator. This patch will avoid such confusion so I think 
it's an improvement. Hence,

Acked-by: Bart Van Assche <bvanassche-HInyCGIudOg@public.gmane.org>

Roland, can you queue this patch for kernel 3.19 ?

Thanks,

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

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

* Re: [PATCH trivial] IB/srp: Allow newline separator for connection string
       [not found]     ` <54452561.1050508-HInyCGIudOg@public.gmane.org>
@ 2014-10-21 11:01       ` Sagi Grimberg
  0 siblings, 0 replies; 3+ messages in thread
From: Sagi Grimberg @ 2014-10-21 11:01 UTC (permalink / raw)
  To: Bart Van Assche, Sagi Grimberg, roland-DgEjT+Ai2ygdnm+yROfE0A
  Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA

On 10/20/2014 6:08 PM, Bart Van Assche wrote:
> On 10/19/14 17:19, Sagi Grimberg wrote:
>> In case last argument of the connection string is
>> processed as a string (destination gid for example).
>>
>> Signed-off-by: Sagi Grimberg <sagig-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
>> ---
>>   drivers/infiniband/ulp/srp/ib_srp.c |    2 +-
>>   1 files changed, 1 insertions(+), 1 deletions(-)
>>
>> diff --git a/drivers/infiniband/ulp/srp/ib_srp.c
>> b/drivers/infiniband/ulp/srp/ib_srp.c
>> index 62d2a18..5f590cf 100644
>> --- a/drivers/infiniband/ulp/srp/ib_srp.c
>> +++ b/drivers/infiniband/ulp/srp/ib_srp.c
>> @@ -2760,7 +2760,7 @@ static int srp_parse_options(const char *buf,
>> struct srp_target_port *target)
>>           return -ENOMEM;
>>
>>       sep_opt = options;
>> -    while ((p = strsep(&sep_opt, ",")) != NULL) {
>> +    while ((p = strsep(&sep_opt, ",\n")) != NULL) {
>>           if (!*p)
>>               continue;
>
> Hello Sagi,
>
> It has already happened that users were confused by a write into the
> "add_target" sysfs attribute that failed because of a newline not being
> accepted as a separator. This patch will avoid such confusion so I think
> it's an improvement. Hence,
>

I would consider it a minor bug fix (and CC it to stable).

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

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

end of thread, other threads:[~2014-10-21 11:01 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-19 15:19 [PATCH trivial] IB/srp: Allow newline separator for connection string Sagi Grimberg
     [not found] ` <1413731942-3317-1-git-send-email-sagig-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
2014-10-20 15:08   ` Bart Van Assche
     [not found]     ` <54452561.1050508-HInyCGIudOg@public.gmane.org>
2014-10-21 11:01       ` Sagi Grimberg

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.