lkml.org 
[lkml]   [2006]   [Feb]   [3]   [last100]   RSS Feed
Views: [more markup]  [less markup]  [headers]  [forward] 
 
Messages in this thread
/
DateFri, 3 Feb 2006 10:55:36 +0100
FromMartin Waitz <>
SubjectRe: [patch 05/44] generic {,test_and_}{set,clear,change}_bit()
hoi :)

On Wed, Feb 01, 2006 at 06:02:29PM +0900, Akinobu Mita wrote:
> +static __inline__ void set_bit(int nr, volatile unsigned long *addr)
> +{
> +	unsigned long mask = BITOP_MASK(nr);
> +	unsigned long *p = ((unsigned long *)addr) + BITOP_WORD(nr);
> +	unsigned long flags;
> +
> +	_atomic_spin_lock_irqsave(p, flags);
> +	*p  |= mask;
> +	_atomic_spin_unlock_irqrestore(p, flags);
> +}

You could even use your new generic non-atomic bitops to implement these

-- 
Martin Waitz
[unhandled content-type:application/pgp-signature]
\
 
 \ /
  Last update: 2006-02-03 09:58    [from the cache]
©2003-2008