[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20081116.223209.239966240.davem@davemloft.net>
Date: Sun, 16 Nov 2008 22:32:09 -0800 (PST)
From: David Miller <davem@...emloft.net>
To: dada1@...mosbay.com
Cc: netdev@...r.kernel.org
Subject: Re: [PATCH] net: Cleanup of af_unix
From: Eric Dumazet <dada1@...mosbay.com>
Date: Mon, 17 Nov 2008 07:10:47 +0100
> @@ -1998,7 +1990,8 @@ static unsigned int unix_poll(struct file * file, struct socket *sock, poll_tabl
> mask |= POLLIN | POLLRDNORM;
>
> /* Connection-based need to check for termination and startup */
> - if ((sk->sk_type == SOCK_STREAM || sk->sk_type == SOCK_SEQPACKET) && sk->sk_state == TCP_CLOSE)
> + if ((sk->sk_type == SOCK_STREAM || sk->sk_type == SOCK_SEQPACKET) &&
> + sk->sk_state == TCP_CLOSE)
> mask |= POLLHUP;
>
> /*
This should instead be:
if ((sk->sk_type == SOCK_STREAM || sk->sk_type == SOCK_SEQPACKET) &&
sk->sk_state == TCP_CLOSE)
> Some long lines (over 80 columns) were not changed, please tell me if you prefer
> them go.
I'm ambivalent, at which point it's just noise and merge hassles, so let's
just leave it alone.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists