From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755276AbXKSWBR (ORCPT ); Mon, 19 Nov 2007 17:01:17 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752125AbXKSWBF (ORCPT ); Mon, 19 Nov 2007 17:01:05 -0500 Received: from ebiederm.dsl.xmission.com ([166.70.28.69]:53684 "EHLO ebiederm.dsl.xmission.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751784AbXKSWBE (ORCPT ); Mon, 19 Nov 2007 17:01:04 -0500 From: ebiederm@xmission.com (Eric W. Biederman) To: Andrew Morton Cc: Pavel Emelyanov , linux-kernel@vger.kernel.org, Oleg Nesterov Subject: [PATCH 0/4] proc: Cleanup status files. References: <20071117183109.GA2605@tv-sign.ru> Date: Mon, 19 Nov 2007 14:59:57 -0700 In-Reply-To: <20071117183109.GA2605@tv-sign.ru> (Oleg Nesterov's message of "Sat, 17 Nov 2007 21:31:09 +0300") Message-ID: User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/21.4 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org There is a long standing ugliness with /proc//stat, /proc//statm, and /proc//status that they do not use the seqfile API. In addition they are currently reporting pids in the pid namespace of the current task instead of the pid namespace with which proc was mounted which is confusing. This patch series first build the infrastructure to allow these problems to be fixed and then it converts the individual proc status files. Eric