Christoph Hellwig wrote:
>> +/*----------------------------------------------------------------------
>> + * optimized bitarray object - works like bitarrays in bitops, but uses 
>> + * a summary field to accelerate lookups.  Assumes external locking 
>> + *---------------------------------------------------------------------*/
>> +
>> +struct bitarray {
>> +    unsigned long summary; /* 1 per word in pending */
>> +    unsigned long pending[NR_IRQ_WORDS];
>> +};
>> +
>>     
> This should go into a separate header, probably even in include/linux/
>   

It's limited to BITS_PER_LONG * BITS_PER_LONG bits (1K or 4K, depending 
on arch).  Do you see any potential users?

Making it generic would be difficult in C without preprocessor abuse.

-- 
Do not meddle in the internals of kernels, for they are subtle and quick to 
panic.


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
kvm-devel mailing list
kvm-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/kvm-devel

Reply via email to