From mboxrd@z Thu Jan 1 00:00:00 1970 From: mita@miraclelinux.com (Akinobu Mita) Date: Wed, 25 Jan 2006 11:26:25 +0000 Subject: [PATCH 0/6] RFC: use include/asm-generic/bitops.h Message-Id: <20060125112625.GA18584@miraclelinux.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: linux-kernel@vger.kernel.org Cc: Richard Henderson , Ivan Kokshaysky , Russell King , Ian Molton , dev-etrax@axis.com, David Howells , Yoshinori Sato , Linus Torvalds , linux-ia64@vger.kernel.org, Hirokazu Takata , linux-m68k@vger.kernel.org, Greg Ungerer , linux-mips@linux-mips.org, parisc-linux@parisc-linux.org, linuxppc-dev@ozlabs.org, linux390@de.ibm.com, linuxsh-dev@lists.sourceforge.net, linuxsh-shmedia-dev@lists.sourceforge.net, sparclinux@vger.kernel.org, ultralinux@vger.kernel.org, Miles Bader , Andi Kleen , Chris Zankel Large number of boilerplate bit operations written in C-language are scattered around include/asm-*/bitops.h. These patch series gather them into include/asm-generic/bitops.h. And - kill duplicated code and comment (about 4000lines) - use better C-language equivalents - help porting new architecture (now include/asm-generic/bitops.h is not referenced from anywhere) From mboxrd@z Thu Jan 1 00:00:00 1970 Received: with ECARTIS (v1.0.0; list linux-mips); Wed, 25 Jan 2006 11:22:19 +0000 (GMT) Received: from ns.miraclelinux.com ([219.118.163.66]:49817 "EHLO mail01.miraclelinux.com") by ftp.linux-mips.org with ESMTP id S8133456AbWAYLWC (ORCPT ); Wed, 25 Jan 2006 11:22:02 +0000 Received: from mail01 (localhost.localdomain [127.0.0.1]) by mail01.miraclelinux.com (Postfix) with ESMTP id EAF4831C180; Wed, 25 Jan 2006 20:26:19 +0900 (JST) Received: from localhost.localdomain (sshgate.miraclelinux.com []) by mail01.miraclelinux.com ([10.1.0.10]); Wed, 25 Jan 2006 11:26:19 +0000 Received: by localhost.localdomain (Postfix, from userid 1000) id F2B29420196; Wed, 25 Jan 2006 20:26:25 +0900 (JST) Date: Wed, 25 Jan 2006 20:26:25 +0900 To: linux-kernel@vger.kernel.org Cc: Richard Henderson , Ivan Kokshaysky , Russell King , Ian Molton , dev-etrax@axis.com, David Howells , Yoshinori Sato , Linus Torvalds , linux-ia64@vger.kernel.org, Hirokazu Takata , linux-m68k@lists.linux-m68k.org, Greg Ungerer , linux-mips@linux-mips.org, parisc-linux@parisc-linux.org, linuxppc-dev@ozlabs.org, linux390@de.ibm.com, linuxsh-dev@lists.sourceforge.net, linuxsh-shmedia-dev@lists.sourceforge.net, sparclinux@vger.kernel.org, ultralinux@vger.kernel.org, Miles Bader , Andi Kleen , Chris Zankel Subject: [PATCH 0/6] RFC: use include/asm-generic/bitops.h Message-ID: <20060125112625.GA18584@miraclelinux.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.9i From: mita@miraclelinux.com (Akinobu Mita) Return-Path: X-Envelope-To: <"|/home/ecartis/ecartis -s linux-mips"> (uid 0) X-Orcpt: rfc822;linux-mips@linux-mips.org Original-Recipient: rfc822;linux-mips@linux-mips.org X-archive-position: 10126 X-ecartis-version: Ecartis v1.0.0 Sender: linux-mips-bounce@linux-mips.org Errors-to: linux-mips-bounce@linux-mips.org X-original-sender: mita@miraclelinux.com Precedence: bulk X-list: linux-mips Large number of boilerplate bit operations written in C-language are scattered around include/asm-*/bitops.h. These patch series gather them into include/asm-generic/bitops.h. And - kill duplicated code and comment (about 4000lines) - use better C-language equivalents - help porting new architecture (now include/asm-generic/bitops.h is not referenced from anywhere) From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail01.miraclelinux.com (ns.miraclelinux.com [219.118.163.66]) by ozlabs.org (Postfix) with ESMTP id B84F968AAD for ; Wed, 25 Jan 2006 22:46:46 +1100 (EST) Date: Wed, 25 Jan 2006 20:26:25 +0900 To: linux-kernel@vger.kernel.org Subject: [PATCH 0/6] RFC: use include/asm-generic/bitops.h Message-ID: <20060125112625.GA18584@miraclelinux.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii From: mita@miraclelinux.com (Akinobu Mita) Cc: linux-mips@linux-mips.org, linux-ia64@vger.kernel.org, Ian Molton , David Howells , linuxppc-dev@ozlabs.org, Greg Ungerer , sparclinux@vger.kernel.org, Miles Bader , Linus Torvalds , Yoshinori Sato , Hirokazu Takata , linuxsh-shmedia-dev@lists.sourceforge.net, linux-m68k@lists.linux-m68k.org, Ivan Kokshaysky , Richard Henderson , Chris Zankel , dev-etrax@axis.com, ultralinux@vger.kernel.org, Andi Kleen , linuxsh-dev@lists.sourceforge.net, linux390@de.ibm.com, Russell King , parisc-linux@parisc-linux.org List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Large number of boilerplate bit operations written in C-language are scattered around include/asm-*/bitops.h. These patch series gather them into include/asm-generic/bitops.h. And - kill duplicated code and comment (about 4000lines) - use better C-language equivalents - help porting new architecture (now include/asm-generic/bitops.h is not referenced from anywhere) From mboxrd@z Thu Jan 1 00:00:00 1970 From: mita@miraclelinux.com (Akinobu Mita) Date: Wed, 25 Jan 2006 11:26:25 +0000 Subject: [PATCH 0/6] RFC: use include/asm-generic/bitops.h Message-Id: <20060125112625.GA18584@miraclelinux.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: linux-kernel@vger.kernel.org Cc: Richard Henderson , Ivan Kokshaysky , Russell King , Ian Molton , dev-etrax@axis.com, David Howells , Yoshinori Sato , Linus Torvalds , linux-ia64@vger.kernel.org, Hirokazu Takata , linux-m68k@lists.linux-m68k.org, Greg Ungerer , linux-mips@linux-mips.org, parisc-linux@parisc-linux.org, linuxppc-dev@ozlabs.org, linux390@de.ibm.com, linuxsh-dev@lists.sourceforge.net, linuxsh-shmedia-dev@lists.sourceforge.net, sparclinux@vger.kernel.org, ultralinux@vger.kernel.org, Miles Bader , Andi Kleen , Chris Zankel Large number of boilerplate bit operations written in C-language are scattered around include/asm-*/bitops.h. These patch series gather them into include/asm-generic/bitops.h. And - kill duplicated code and comment (about 4000lines) - use better C-language equivalents - help porting new architecture (now include/asm-generic/bitops.h is not referenced from anywhere) From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751131AbWAYL0X (ORCPT ); Wed, 25 Jan 2006 06:26:23 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751127AbWAYL0X (ORCPT ); Wed, 25 Jan 2006 06:26:23 -0500 Received: from ns.miraclelinux.com ([219.118.163.66]:46489 "EHLO mail01.miraclelinux.com") by vger.kernel.org with ESMTP id S1751122AbWAYL0V (ORCPT ); Wed, 25 Jan 2006 06:26:21 -0500 Date: Wed, 25 Jan 2006 20:26:25 +0900 To: linux-kernel@vger.kernel.org Cc: Richard Henderson , Ivan Kokshaysky , Russell King , Ian Molton , dev-etrax@axis.com, David Howells , Yoshinori Sato , Linus Torvalds , linux-ia64@vger.kernel.org, Hirokazu Takata , linux-m68k@vger.kernel.org, Greg Ungerer , linux-mips@linux-mips.org, parisc-linux@parisc-linux.org, linuxppc-dev@ozlabs.org, linux390@de.ibm.com, linuxsh-dev@lists.sourceforge.net, linuxsh-shmedia-dev@lists.sourceforge.net, sparclinux@vger.kernel.org, ultralinux@vger.kernel.org, Miles Bader , Andi Kleen , Chris Zankel Subject: [PATCH 0/6] RFC: use include/asm-generic/bitops.h Message-ID: <20060125112625.GA18584@miraclelinux.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.9i From: mita@miraclelinux.com (Akinobu Mita) Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Large number of boilerplate bit operations written in C-language are scattered around include/asm-*/bitops.h. These patch series gather them into include/asm-generic/bitops.h. And - kill duplicated code and comment (about 4000lines) - use better C-language equivalents - help porting new architecture (now include/asm-generic/bitops.h is not referenced from anywhere)