File: [Development] / xfs-linux / Attic / xfs_rtbit.c (download)
Revision 1.5, Fri Jun 9 02:13:12 2000 UTC (17 years, 4 months ago) by dxm
Branch: MAIN
CVS Tags: DELETE Changes since 1.4: +0 -66
lines
initial architecture work
Merge of 2.3.99pre2-xfs:slinx:46678a by ananth.
Merge of 2.3.42-xfs:slinx:46678a by ananth.
|
/*
* Copyright (C) 2000 Silicon Graphics, Inc. All Rights Reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or (at
* your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write the Free Software Foundation,
* Inc., 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
*/
#ident "$Revision: 1.5 $"
/*
* XFS bit manipulation routines, used only in realtime code.
*/
#include <sys/types.h>
#include "xfs_bit.h"
/*
* xfs_lowbit32: get low bit set out of 32-bit argument, -1 if none set.
*/
int
xfs_lowbit32(
__uint32_t v)
{
int i;
if (v & 0x0000ffff)
if (v & 0x000000ff)
i = 0;
else
i = 8;
else if (v & 0xffff0000)
if (v & 0x00ff0000)
i = 16;
else
i = 24;
else
return -1;
return i + xfs_lowbit[(v >> i) & 0xff];
}