From mboxrd@z Thu Jan 1 00:00:00 1970 From: Cyrill Gorcunov Subject: [PATCH resend] vfs: Add ->statfs callback for pipefs Date: Wed, 24 Aug 2011 12:09:24 +0400 Message-ID: <20110824080924.GG29452@sun> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: James Bottomley , Tejun Heo , Glauber Costa , containers@lists.osdl.org, linux-kernel@vger.kernel.org, Pavel Emelyanov , Serge Hallyn , Nathan Lynch , Oren Laadan , Daniel Lezcano , LINUXFS-ML To: Andrew Morton , Al Viro Return-path: Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-Id: linux-fsdevel.vger.kernel.org From: Pavel Emelyanov This is done to make it possible to distinguish pipes from fifos when opening one via /proc//fd/ link. Signed-off-by: Pavel Emelyanov Reviewed-by: Tejun Heo Acked-by: Serge Hallyn Signed-off-by: Cyrill Gorcunov --- fs/pipe.c | 1 + 1 file changed, 1 insertion(+) Any objections to this one? It was a part of a patchset but can be treated independently so I'm re-sending it alone. Index: linux-2.6.git/fs/pipe.c =================================================================== --- linux-2.6.git.orig/fs/pipe.c +++ linux-2.6.git/fs/pipe.c @@ -1254,6 +1254,7 @@ out: static const struct super_operations pipefs_ops = { .destroy_inode = free_inode_nonrcu, + .statfs = simple_statfs, }; /*