# File lib/fuse/rfusefs-fuse.rb, line 439 def getxattr(ctx,path,name) return wrap_context(ctx,__method__,path,name) if ctx result = @root.xattr(path)[name] raise Errno::ENODATA.new("No attribute #{name}") unless result result.to_s end