From mboxrd@z Thu Jan 1 00:00:00 1970 From: Pavel Emelyanov Subject: [PATCH net-next] unix: Remove unused field from unix_sock Date: Fri, 19 Oct 2012 10:28:28 +0400 Message-ID: <5080F30C.2090206@parallels.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit To: David Miller , Linux Netdev List Return-path: Received: from mailhub.sw.ru ([195.214.232.25]:2052 "EHLO relay.sw.ru" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753252Ab2JSG2o (ORCPT ); Fri, 19 Oct 2012 02:28:44 -0400 Sender: netdev-owner@vger.kernel.org List-ID: The struct sock *other one seem to be unused. Grep and make do not object. Signed-off-by: Pavel Emelyanov --- diff --git a/include/net/af_unix.h b/include/net/af_unix.h index b5f8988..0a996a3 100644 --- a/include/net/af_unix.h +++ b/include/net/af_unix.h @@ -53,7 +53,6 @@ struct unix_sock { struct path path; struct mutex readlock; struct sock *peer; - struct sock *other; struct list_head link; atomic_long_t inflight; spinlock_t lock;