From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ingo Molnar Subject: Re: [PATCH] SLOW_WORK: Move slow_work's proc file to debugfs Date: Tue, 1 Dec 2009 17:14:55 +0100 Message-ID: <20091201161455.GB24897@elte.hu> References: <6941.1259681771@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Cc: nfsv4@linux-nfs.org, linux-kernel@vger.kernel.org, cluster-devel@redhat.com, torvalds@osdl.org, linux-cachefs@redhat.com, jens.axboe@oracle.com, linux-fsdevel@vger.kernel.org, akpm@linux-foundation.org, linux-cifs-client@lists.samba.org To: David Howells Return-path: Content-Disposition: inline In-Reply-To: <6941.1259681771@redhat.com> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: nfsv4-bounces@linux-nfs.org Errors-To: nfsv4-bounces@linux-nfs.org List-Id: linux-fsdevel.vger.kernel.org * David Howells wrote: > Move slow_work's debugging proc file to debugfs. > > Signed-off-by: David Howells > --- > > Documentation/slow-work.txt | 4 - > include/linux/slow-work.h | 8 +- > init/Kconfig | 8 +- > kernel/Makefile | 2 > kernel/slow-work-debugfs.c | 227 +++++++++++++++++++++++++++++++++++++++++++ > kernel/slow-work-proc.c | 227 ------------------------------------------- > kernel/slow-work.c | 18 ++- > kernel/slow-work.h | 6 + > 8 files changed, 253 insertions(+), 247 deletions(-) > create mode 100644 kernel/slow-work-debugfs.c > delete mode 100644 kernel/slow-work-proc.c Nice - thanks for doing this so quickly! It might sound like nitpicking but /proc ABIs tend to be a lot harder to get rid of than debugfs interfaces. Ingo