Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751492AbbK0FZP (ORCPT ); Fri, 27 Nov 2015 00:25:15 -0500 Received: from h2.hallyn.com ([78.46.35.8]:50698 "EHLO h2.hallyn.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750764AbbK0FZM (ORCPT ); Fri, 27 Nov 2015 00:25:12 -0500 Date: Thu, 26 Nov 2015 23:25:11 -0600 From: "Serge E. Hallyn" To: Tejun Heo Cc: serge@hallyn.com, linux-kernel@vger.kernel.org, adityakali@google.com, linux-api@vger.kernel.org, containers@lists.linux-foundation.org, cgroups@vger.kernel.org, lxc-devel@lists.linuxcontainers.org, akpm@linux-foundation.org, ebiederm@xmission.com Subject: Re: [PATCH 1/8] kernfs: Add API to generate relative kernfs path Message-ID: <20151127052511.GA25490@mail.hallyn.com> References: <1447703505-29672-1-git-send-email-serge@hallyn.com> <1447703505-29672-2-git-send-email-serge@hallyn.com> <20151124161630.GL17033@mtj.duckdns.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20151124161630.GL17033@mtj.duckdns.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 Content-Length: 1093 Lines: 28 On Tue, Nov 24, 2015 at 11:16:30AM -0500, Tejun Heo wrote: > Hello, > > On Mon, Nov 16, 2015 at 01:51:38PM -0600, serge@hallyn.com wrote: > > +static char * __must_check kernfs_path_from_node_locked( (Note I've rewritten this to find a common ancestor and walk back to and from that, as you suggested later in this email) > > + /* Short-circuit the easy case - kn_to is the root node. */ > > + if ((kn_from == kn_to) || (!kn_from && !kn_to->parent)) { > > + *p = '/'; > > + *(p + 1) = '\0'; > > Hmm... so if kn_from == kn_to, the output is "/"? Yes, that's what seems to make the most sense for cgroup namespaces. I could see a case for '.' being used instead in general, but for cgroup namespaces I think we'd have to convert those back to '/'. Otherwise we'll fail in being able to run legacy software, which would get confused. -serge -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/