From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S942478AbcJ0S2p (ORCPT ); Thu, 27 Oct 2016 14:28:45 -0400 Received: from Galois.linutronix.de ([146.0.238.70]:44660 "EHLO Galois.linutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S936570AbcJ0S2o (ORCPT ); Thu, 27 Oct 2016 14:28:44 -0400 Date: Thu, 27 Oct 2016 20:25:57 +0200 (CEST) From: Thomas Gleixner To: Fenghua Yu cc: "H. Peter Anvin" , Ingo Molnar , Tony Luck , Peter Zijlstra , Stephane Eranian , Borislav Petkov , Dave Hansen , Nilay Vaish , Shaohua Li , David Carrillo-Cisneros , Ravi V Shankar , Sai Prakhya , Vikas Shivappa , linux-kernel , x86 Subject: Re: [PATCH v5 12/18] x86/intel_rdt: Add "info" files to resctrl file system In-Reply-To: <20161027181715.GD1752@linux.intel.com> Message-ID: References: <1477142405-32078-1-git-send-email-fenghua.yu@intel.com> <1477142405-32078-13-git-send-email-fenghua.yu@intel.com> <20161027181715.GD1752@linux.intel.com> User-Agent: Alpine 2.20 (DEB 67 2015-01-07) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, 27 Oct 2016, Fenghua Yu wrote: > On Wed, Oct 26, 2016 at 04:45:50PM +0200, Thomas Gleixner wrote: > > On Sat, 22 Oct 2016, Fenghua Yu wrote: > > > +/* > > > + * Forcibly remove all of subdirectories under root. > > > + */ > > > +static void rmdir_all_sub(void) > > > +{ > > > + kernfs_remove(kn_info); > > > > What clears kn_info? > > Is the question "Why clears kn_info?" > > kn_info is created during mount time and has different contents > under "info" directory with CDP enabled or disabled by mount parameter "cdp". > > umount needs to remove kn_info so that it's ready to be created next time > during mount time. So user can do CAT mount, check "info", umount, and then > CDP mount, check "info". The user will see different contents in two "info" > checks. Lemme rephrase. What does: kn_info = NULL; ? We should clear static variables for correctness sake. The current code has no problem with that, but 5 month down the road something is going to trip over the stale reference. Thanks, tglx