From mboxrd@z Thu Jan 1 00:00:00 1970 From: Akinobu Mita Subject: [PATCH v3 17/22] ufs: use little-endian bitops Date: Tue, 23 Nov 2010 22:38:19 +0900 Message-ID: <1290519504-3958-18-git-send-email-akinobu.mita@gmail.com> References: <1290519504-3958-1-git-send-email-akinobu.mita@gmail.com> Return-path: In-Reply-To: <1290519504-3958-1-git-send-email-akinobu.mita@gmail.com> Sender: linux-kernel-owner@vger.kernel.org To: linux-kernel@vger.kernel.org, linux-arch@vger.kernel.org, Andrew Morton Cc: Akinobu Mita , Evgeniy Dushistov List-Id: linux-arch.vger.kernel.org As a preparation for removing ext2 non-atomic bit operations from asm/bitops.h. This converts ext2 non-atomic bit operations to little-endian bit operations. Signed-off-by: Akinobu Mita Cc: Evgeniy Dushistov --- No change from previous submission fs/ufs/util.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/fs/ufs/util.h b/fs/ufs/util.h index 9f8775c..64f7559 100644 --- a/fs/ufs/util.h +++ b/fs/ufs/util.h @@ -408,7 +408,7 @@ static inline unsigned _ubh_find_next_zero_bit_( for (;;) { count = min_t(unsigned int, size + offset, uspi->s_bpf); size -= count - offset; - pos = ext2_find_next_zero_bit (ubh->bh[base]->b_data, count, offset); + pos = find_next_zero_le_bit((unsigned long *)ubh->bh[base]->b_data, count, offset); if (pos < count || !size) break; base++; -- 1.7.3.2 From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pz0-f46.google.com ([209.85.210.46]:57002 "EHLO mail-pz0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754509Ab0KWNkR (ORCPT ); Tue, 23 Nov 2010 08:40:17 -0500 From: Akinobu Mita Subject: [PATCH v3 17/22] ufs: use little-endian bitops Date: Tue, 23 Nov 2010 22:38:19 +0900 Message-ID: <1290519504-3958-18-git-send-email-akinobu.mita@gmail.com> In-Reply-To: <1290519504-3958-1-git-send-email-akinobu.mita@gmail.com> References: <1290519504-3958-1-git-send-email-akinobu.mita@gmail.com> Sender: linux-arch-owner@vger.kernel.org List-ID: To: linux-kernel@vger.kernel.org, linux-arch@vger.kernel.org, Andrew Morton Cc: Akinobu Mita , Evgeniy Dushistov Message-ID: <20101123133819.9KD9c09t5hN9mePK9NYiCkc7yS1j3-64SVyYM_EUkMg@z> As a preparation for removing ext2 non-atomic bit operations from asm/bitops.h. This converts ext2 non-atomic bit operations to little-endian bit operations. Signed-off-by: Akinobu Mita Cc: Evgeniy Dushistov --- No change from previous submission fs/ufs/util.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/fs/ufs/util.h b/fs/ufs/util.h index 9f8775c..64f7559 100644 --- a/fs/ufs/util.h +++ b/fs/ufs/util.h @@ -408,7 +408,7 @@ static inline unsigned _ubh_find_next_zero_bit_( for (;;) { count = min_t(unsigned int, size + offset, uspi->s_bpf); size -= count - offset; - pos = ext2_find_next_zero_bit (ubh->bh[base]->b_data, count, offset); + pos = find_next_zero_le_bit((unsigned long *)ubh->bh[base]->b_data, count, offset); if (pos < count || !size) break; base++; -- 1.7.3.2