search for: name_cache

Displaying 2 results from an estimated 2 matches for "name_cache".

Did you mean: names_cache
2013 Jan 07
3
[PATCH] btrfs: add "no file data" flag to btrfs send ioctl
...@@ static int send_write_or_clone(struct send_ctx *sctx, pos += ret; } ret = 0; - } else { - ret = send_clone(sctx, offset, len, clone_root); } - out: return ret; } @@ -4570,6 +4605,8 @@ long btrfs_ioctl_send(struct file *mnt_file, void __user *arg_) INIT_RADIX_TREE(&sctx->name_cache, GFP_NOFS); INIT_LIST_HEAD(&sctx->name_cache_list); + sctx->flags = arg->flags; + sctx->send_filp = fget(arg->send_fd); if (IS_ERR(sctx->send_filp)) { ret = PTR_ERR(sctx->send_filp); diff --git a/fs/btrfs/send.h b/fs/btrfs/send.h index 1bf4f32..8bb18f7 100644 ---...
2006 Jan 21
0
logmerge including ip2name for fast log DNS lookups
...ng ip2name Simply pass in the log files you want to perform DNS lookups on the command line or via STDIN. ip2name gives you the looked-up log lines on STDOUT. ip2name < merged.log > resolved.log ip2name merged.log > resolved.log In order to speed DNS lookups, ip2name creates a .name_cache file in the current directory. ip2name uses double the DNS record TTL value so rapidly-changing names may not be correctly resolved. = Read More http://dev.robotcoop.com/Tools/logmerge/index.html = Rubyforge http://rubyforge.org/projects/rctools -- Eric Hodel - drbrain@segment7.net - http...