All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: [MPTCP] [PATCH v3] mptcp: proto_ops cannot be const
@ 2019-06-17 13:32 Matthieu Baerts
  0 siblings, 0 replies; 2+ messages in thread
From: Matthieu Baerts @ 2019-06-17 13:32 UTC (permalink / raw)
  To: mptcp

[-- Attachment #1: Type: text/plain, Size: 1476 bytes --]

Hello,

On 17/06/2019 15:02, Matthieu Baerts wrote:
> This partially reverts 2cb651944bde (mptcp: fix checkpatch issues).
> 
> The proto_ops cannot be const as recommended by checkpatch because we
> start from inet_stream_ops and we modify only what we need to modify.
> 
> Signed-off-by: Matthieu Baerts <matthieu.baerts(a)tessares.net>
> ---
>  net/mptcp/protocol.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/net/mptcp/protocol.c b/net/mptcp/protocol.c
> index f3bb7646ac07..ce2374ea7871 100644
> --- a/net/mptcp/protocol.c
> +++ b/net/mptcp/protocol.c
> @@ -158,7 +158,7 @@ static int mptcp_stream_connect(struct socket *sock, struct sockaddr *uaddr,
>  	return inet_stream_connect(msk->subflow, uaddr, addr_len, flags);
>  }
>  
> -static const struct proto_ops mptcp_stream_ops;
> +static struct proto_ops mptcp_stream_ops;
>  
>  static struct inet_protosw mptcp_protosw = {
>  	.type		= SOCK_STREAM,
> 

I had to apply this patch after having applied all the other ones

- 98bdade702b1: "squashed" in "mptcp: Associate MPTCP context with TCP
socket"
- de4dbb2c0a8e: conflict in t/mptcp-add-mptcp_poll
- 1c436e0370c2: conflict in t/mptcp-Add-shutdown-socket-operation
- a083a2836977..8ea5282ba8cf: result

Cheers,
Matt

-- 
Matthieu Baerts | R&D Engineer
matthieu.baerts(a)tessares.net
Tessares SA | Hybrid Access Solutions
www.tessares.net
1 Avenue Jean Monnet, 1348 Louvain-la-Neuve, Belgium

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

* [MPTCP] [PATCH v3] mptcp: proto_ops cannot be const
@ 2019-06-17 13:02 Matthieu Baerts
  0 siblings, 0 replies; 2+ messages in thread
From: Matthieu Baerts @ 2019-06-17 13:02 UTC (permalink / raw)
  To: mptcp

[-- Attachment #1: Type: text/plain, Size: 878 bytes --]

This partially reverts 2cb651944bde (mptcp: fix checkpatch issues).

The proto_ops cannot be const as recommended by checkpatch because we
start from inet_stream_ops and we modify only what we need to modify.

Signed-off-by: Matthieu Baerts <matthieu.baerts(a)tessares.net>
---
 net/mptcp/protocol.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net/mptcp/protocol.c b/net/mptcp/protocol.c
index f3bb7646ac07..ce2374ea7871 100644
--- a/net/mptcp/protocol.c
+++ b/net/mptcp/protocol.c
@@ -158,7 +158,7 @@ static int mptcp_stream_connect(struct socket *sock, struct sockaddr *uaddr,
 	return inet_stream_connect(msk->subflow, uaddr, addr_len, flags);
 }
 
-static const struct proto_ops mptcp_stream_ops;
+static struct proto_ops mptcp_stream_ops;
 
 static struct inet_protosw mptcp_protosw = {
 	.type		= SOCK_STREAM,
-- 
2.20.1


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

end of thread, other threads:[~2019-06-17 13:32 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-06-17 13:32 [MPTCP] [PATCH v3] mptcp: proto_ops cannot be const Matthieu Baerts
  -- strict thread matches above, loose matches on Subject: below --
2019-06-17 13:02 Matthieu Baerts

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.