summaryrefslogtreecommitdiffstats
path: root/xlators/performance/stat-prefetch
Commit message (Expand)AuthorAgeFilesLines
* fix memory leak in mkdir, mknod, symlink by freeing localRaghavendra Bhat2010-05-131-1/+1
* fix memory leak in stat-prefetch.Raghavendra G2010-05-031-0/+18
* performance/stat-prefetch: fix memory leak.v2.0.9Raghavendra G2009-12-061-1/+4
* performance/stat-prefetch: don't check whether previous lookups have been fai...Raghavendra G2009-12-061-9/+0
* performance/stat-prefetch: add "caller" arguement to sp_process_inode_ctx.Raghavendra G2009-12-061-23/+39
* performance/stat-prefetch: refactor sp_lookup_cbk to use sp_update_inode_ctx.Raghavendra G2009-12-061-25/+9
* performance/stat-prefetch: dont check for inode context in fops like create, ...Raghavendra G2009-12-061-317/+293
* performance/stat-prefetch: get inode context from local->loc.inode instead of...Raghavendra G2009-12-021-3/+9
* Add support in rbthash to make use of user provided mempool.Vijay Bellur2009-12-022-14/+71
* performance/stat-prefetch: make lookup to wait for the completion of another ...Raghavendra G2009-12-021-12/+104
* performance/stat-prefetch: fix errors in handling memory allocation failures ...Raghavendra G2009-12-021-3/+3
* performance/stat-prefetch: fix access to inode table.Raghavendra G2009-12-021-13/+23
* stat-prefetch: fix unsafe reference to @local in sp_lookup_cbk.Raghavendra G2009-12-011-2/+7
* performance/stat-prefetch: Add refcounting to cache objectsRaghavendra G2009-11-261-22/+109
* performance/stat-prefetch: remove lock member in sp_fd_ctx_t.Raghavendra G2009-11-262-36/+22
* performance/stat-prefetch: don't free the cache in readdir if the offset is n...Raghavendra G2009-11-261-5/+2
* performance/stat-prefetch: don't cache dentries corresponding to directory.Raghavendra G2009-11-191-0/+4
* performance/stat-prefetch: don't use pre-allocated dirent structure in sp_get...Raghavendra G2009-11-191-9/+22
* performance/stat-prefetch: allocate and init local only if cache-miss happens...Raghavendra G2009-11-131-4/+5
* performance/stat-prefetch: In sp_readdir_cbk op_ret is not handled correctly.vinayak hegde2009-11-051-0/+4
* performance/stat-prefetch: In lookup_cbk do not set error no to EINVAL, when ...vinayak hegde2009-11-051-3/+0
* performance/stat-prefetch: checking for cache and creation if not present is ...Raghavendra G2009-10-071-23/+64
* performance/stat-prefetch: lookup the path in xattrop if it is not already lo...Raghavendra G2009-10-071-10/+71
* performance/stat-prefetch: implement sp_entrylk.Raghavendra G2009-10-071-0/+85
* performance/stat-prefetch: implement sp_inodelk.Raghavendra G2009-10-071-1/+83
* performance/stat-prefetch: do lookup on path in removexattr if it is not alre...Raghavendra G2009-10-071-10/+71
* performance/stat-prefetch: implement sp_getxattr.Raghavendra G2009-10-071-0/+89
* performance/stat-prefetch: lookup path in setxattr if it is not already looke...Raghavendra G2009-10-071-10/+73
* performance/stat-prefetch: lookup path in opendir if it is not already looked...Raghavendra G2009-10-071-11/+73
* performance/stat-prefetch: lookup path in create if it is not already looked up.Raghavendra G2009-10-071-24/+88
* performance/stat-prefetch: remove stat corresponding to oldloc->path from cac...Raghavendra G2009-10-071-0/+10
* performance/stat-prefetch: lookup oldloc->path in link if it has not already ...Raghavendra G2009-10-071-13/+82
* performance/stat-prefetch: lookup oldpath and newpath in rename if they've no...Raghavendra G2009-10-072-19/+185
* performance/stat-prefetch: do lookup of path in symlink if it is not already ...Raghavendra G2009-10-071-13/+74
* performance/stat-prefetch: do lookup in rmdir if the path has not already bee...Raghavendra G2009-10-071-14/+71
* performance/stat-prefetch: lookup the path in mkdir if it is not already look...Raghavendra G2009-10-071-13/+75
* performance/stat-prefetch: do lookup in unlink if the path has not already be...Raghavendra G2009-10-071-12/+71
* performance/stat-prefetch: do lookup in readlink if the path is not already l...Raghavendra G2009-10-071-10/+71
* performance/stat-prefetch: do lookup in mknod if the path is not already look...Raghavendra G2009-10-071-13/+75
* performance/stat-prefetch: implement sp_access.Raghavendra G2009-10-071-0/+79
* performance/stat-prefetch: do lookup in utimens if the path is not already lo...Raghavendra G2009-10-071-10/+71
* performance/stat-prefetch: do lookup in truncate if the path is not already l...Raghavendra G2009-10-071-10/+72
* performance/stat-prefetch: lookup the path in chown if it is not already look...Raghavendra G2009-10-071-10/+71
* performance/stat-prefetch: lookup the path in chmod if it is not already look...Raghavendra G2009-10-071-10/+70
* performance/stat-prefetch: lookup the path in stat if the it is not already l...Raghavendra G2009-10-071-0/+79
* performance/stat-prefetch: do lookup on the path in checksum if it is not alr...Raghavendra G2009-10-071-10/+69
* performance/stat-prefetch: lookup the path in open if it is not already looke...Raghavendra G2009-10-071-11/+75
* performance/stat-prefetch: implement procedure sp_process_inode_ctx.Raghavendra G2009-10-071-0/+93
* performance/stat-prefetch: use op_errno instead of errno to store error code.Raghavendra G2009-10-071-147/+253
* performance/stat-prefetch: Add support code to implement lookup-behind.Raghavendra G2009-10-072-22/+203