summaryrefslogtreecommitdiffstats
path: root/net/ceph/string_table.c
Commit message (Collapse)AuthorAgeFilesLines
* libceph: using kfree_rcu() to simplify the codeWei Yongjun2016-08-081-7/+1
| | | | | | | | The callback function of call_rcu() just calls a kfree(), so we can use kfree_rcu() instead of call_rcu() + callback function. Signed-off-by: Wei Yongjun <weiyj.lk@gmail.com> Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
* libceph: introduce reference counted stringYan, Zheng2016-07-281-0/+111
The data structure is for storing namesapce string. It allows namespace string to be shared between cephfs inodes with same layout. This data structure can also be referenced by OSD request. Signed-off-by: Yan, Zheng <zyan@redhat.com>