From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755506AbcH3PNf (ORCPT ); Tue, 30 Aug 2016 11:13:35 -0400 Received: from smtp02.citrix.com ([66.165.176.63]:24534 "EHLO SMTP02.CITRIX.COM" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755164AbcH3PNd (ORCPT ); Tue, 30 Aug 2016 11:13:33 -0400 X-IronPort-AV: E=Sophos;i="5.30,257,1470700800"; d="scan'208";a="383246676" Subject: Re: [Xen-devel] [PATCH] xenbus: Use proc_create_mount_point() to create /proc/xen To: Seth Forshee References: <1472483029-135090-1-git-send-email-seth.forshee@canonical.com> <57C59F73.5060503@citrix.com> <20160830151044.GB55509@ubuntu-hedt> CC: "Eric W. Biederman" , Boris Ostrovsky , Juergen Gross , , From: David Vrabel Message-ID: <57C5A293.1020305@citrix.com> Date: Tue, 30 Aug 2016 16:13:23 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Icedove/38.5.0 MIME-Version: 1.0 In-Reply-To: <20160830151044.GB55509@ubuntu-hedt> Content-Type: text/plain; charset="windows-1252" Content-Transfer-Encoding: 7bit X-DLP: MIA2 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 30/08/16 16:10, Seth Forshee wrote: > On Tue, Aug 30, 2016 at 04:00:03PM +0100, David Vrabel wrote: >> On 29/08/16 16:03, Seth Forshee wrote: >>> Mounting proc in user namespace containers fails if the xenbus >>> filesystem is mounted on /proc/xen because this directory fails >>> the "permanently empty" test. proc_create_mount_point() exists >>> specifically to create such mountpoints in proc but is currently >>> proc-internal. Export this interface to modules, then use it in >>> xenbus when creating /proc/xen. >> >> Acked-by: David Vrabel >> >> This either needs to be acked by the fs maintainer or go via their tree >> but you don't appear to have Cc'd the relevant people or lists. > > Huh. I use a script which uses get_maintainer.pl to add the relevant > maintainers and lists, but appaerntly that failed me this time. Even > running get_maintainer.pl by hand though it doesn't suggest > linux-fsdevel though, and it seems it should. I tend not rely on get_maintainer.pl because it isn't very reliable. >>From MAINTAINERS you want: FILESYSTEMS (VFS and infrastructure) M: Alexander Viro L: linux-fsdevel@vger.kernel.org S: Maintained F: fs/* David