From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756363Ab1HXIa5 (ORCPT ); Wed, 24 Aug 2011 04:30:57 -0400 Received: from mail-bw0-f46.google.com ([209.85.214.46]:57561 "EHLO mail-bw0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751073Ab1HXIaz (ORCPT ); Wed, 24 Aug 2011 04:30:55 -0400 Date: Wed, 24 Aug 2011 12:30:50 +0400 From: Cyrill Gorcunov To: Andrew Morton Cc: Al Viro , 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 Subject: Re: [PATCH resend] vfs: Add ->statfs callback for pipefs Message-ID: <20110824083050.GI29452@sun> References: <20110824080924.GG29452@sun> <20110824012328.f7bfc68a.akpm@linux-foundation.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20110824012328.f7bfc68a.akpm@linux-foundation.org> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Aug 24, 2011 at 01:23:28AM -0700, Andrew Morton wrote: > On Wed, 24 Aug 2011 12:09:24 +0400 Cyrill Gorcunov wrote: > > > 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, > > }; > > > > /* > > OK, I give up - how does it work? > > > > So it appears that the statfs call would previously return -ENOSYS, but > with this change the statfs will succeed and userspace can then inspect > f_type. Yes? I will fix your changelog by adding a description along these > lines. Yes, it allows to distinguish pipes from anything else. Initially this patch was a part of early rfc on checkpoint/restore facility (mostly implemented in userspace). So we need to distinguish somehow pipes when we dump data from /proc/pid/fd. That's the main reason. BUT since this patch can be used without any other c/r bits and can be treated separately I've sent it alone without any mention of c/r at all. > > And I'll ask you to fix it further by telling us why we want to do > this? The kernel has had this issue for a long time - why does it now > matter? Cyrill