博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
xarray的简单使用
阅读量:4215 次
发布时间:2019-05-26

本文共 1266 字,大约阅读时间需要 4 分钟。

xarray的实现在./lib/xarray.c中xarray 的解释如下:The XArray is an abstract data type which behaves like a very large arrayof pointers.  It meets many of the same needs as a hash or a conventionalresizable array.  Unlike a hash, it allows you to sensibly go to thenext or previous entry in a cache-efficient manner.  In contrast to aresizable array, there is no need to copy data or change MMU mappings inorder to grow the array.  It is more memory-efficient, parallelisableand cache friendly than a doubly-linked list.  It takes advantage ofRCU to perform lookups without locking.总结一下,就是比hash可更高效的前后搜索,比数组高效是在数组增长的时候不用改变mmu 映射等。用法很简单,文档中给出的例子如下:   void foo_init(struct foo *foo)    {        xa_init_flags(&foo->array, XA_FLAGS_LOCK_BH);    }    int foo_store(struct foo *foo, unsigned long index, void *entry)    {        int err;        xa_lock_bh(&foo->array);        err = xa_err(__xa_store(&foo->array, index, entry, GFP_KERNEL));        if (!err)            foo->count++;        xa_unlock_bh(&foo->array);        return err;    }    /* foo_erase() is only called from softirq context */    void foo_erase(struct foo *foo, unsigned long index)    {        xa_lock(&foo->array);        __xa_erase(&foo->array, index);        foo->count--;        xa_unlock(&foo->array);    }

 

转载地址:http://ppnmi.baihongyu.com/

你可能感兴趣的文章
yii2 - controller
查看>>
yii2 - 增加actions
查看>>
php图像处理函数大全(缩放、剪裁、缩放、翻转、旋转、透明、锐化的实例总结)
查看>>
magento url中 uenc 一坨编码 base64
查看>>
强大的jQuery焦点图无缝滚动走马灯特效插件cxScroll
查看>>
Yii2.0 数据库查询
查看>>
yii2 db 操作
查看>>
mongodb group 有条件的过滤组合个数。
查看>>
关于mongodb的 数组分组 array group
查看>>
MongoDB新的数据统计框架介绍
查看>>
mongodb 增加全文检索索引
查看>>
mysql数据库主从同步的问题解决方法
查看>>
QC数据库表结构
查看>>
测试工具厂商的编程语言什么时候“退休”?
查看>>
资源监控工具 - Hyperic HQ
查看>>
LoadRunner中Concurrent与Simultaneous的区别
查看>>
SiteScope - Agentless监控
查看>>
欢迎加入【亿能测试快讯】邮件列表!
查看>>
为什么我们的自动化测试“要”这么难
查看>>
LoadRunner性能脚本开发实战训练
查看>>