Re: [PATCH] tipc: fix shutdown() of connection oriented socket

2020-09-10 Thread David Miller
From: Tetsuo Handa Date: Sat, 5 Sep 2020 15:14:47 +0900 > I confirmed that the problem fixed by commit 2a63866c8b51a3f7 ("tipc: fix > shutdown() of connectionless socket") also applies to stream socket. > > -- > #include > #include > #include > > int main(int argc, char *argv[]) > {

RE: [PATCH] tipc: fix shutdown() of connection oriented socket

2020-09-08 Thread Xue, Ying
-Original Message- From: Tetsuo Handa Sent: Saturday, September 5, 2020 2:15 PM To: Jon Maloy ; Xue, Ying ; Parthasarathy Bhuvaragan Cc: David S. Miller ; Jakub Kicinski ; netdev@vger.kernel.org; tipc-discuss...@lists.sourceforge.net; Tetsuo Handa Subject: [PATCH] tipc: fix shutdown

Re: [PATCH] tipc: fix shutdown() of connection oriented socket

2020-09-06 Thread Jakub Kicinski
On Sat, 5 Sep 2020 15:14:47 +0900 Tetsuo Handa wrote: > I confirmed that the problem fixed by commit 2a63866c8b51a3f7 ("tipc: fix > shutdown() of connectionless socket") also applies to stream socket. > > -- > #include > #include > #include > > int main(int argc, char *argv[]) > { >

[PATCH] tipc: fix shutdown() of connection oriented socket

2020-09-04 Thread Tetsuo Handa
I confirmed that the problem fixed by commit 2a63866c8b51a3f7 ("tipc: fix shutdown() of connectionless socket") also applies to stream socket. -- #include #include #include int main(int argc, char *argv[]) { int fds[2] = { -1, -1 }; socketpair(PF_TIPC, SOCK_STREAM /* or