From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758254Ab0JUOou (ORCPT ); Thu, 21 Oct 2010 10:44:50 -0400 Received: from mail-iw0-f174.google.com ([209.85.214.174]:48175 "EHLO mail-iw0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755061Ab0JUOoq (ORCPT ); Thu, 21 Oct 2010 10:44:46 -0400 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; b=LnBqzfzxNS00sTNTDVRYYefs0q2cPEQ6RMubA7ooLB0BJyW14VBASvotgsF5Uiww/o oSIqeFPbdv3AaQGTlcjJ17H+VuDgaME2Ui6zu3GDmLSYDi+uTDfxXhAGfxJ3EvUd9Ue7 kasz/nYjRa3aeecmEnHmu+rvD9YeDUXFDUR0U= From: Akinobu Mita To: linux-kernel@vger.kernel.org, linux-arch@vger.kernel.org, Arnd Bergmann , Christoph Hellwig , Andrew Morton Cc: Akinobu Mita , Evgeniy Dushistov Subject: [PATCH v2 17/22] ufs: use little-endian bitops Date: Thu, 21 Oct 2010 23:41:12 +0900 Message-Id: <1287672077-5797-18-git-send-email-akinobu.mita@gmail.com> X-Mailer: git-send-email 1.6.0.6 In-Reply-To: <1287672077-5797-1-git-send-email-akinobu.mita@gmail.com> References: <1287672077-5797-1-git-send-email-akinobu.mita@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@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.1.231.gd0b16