lkml.org 
[lkml]   [2006]   [Feb]   [3]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
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 10:58    [W:0.418 / U:0.368 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site