github.com/olivere/camlistore@v0.0.0-20140121221811-1b7ac2da0199/third_party/code.google.com/p/rsc/fuse/xattr_linux.go (about)

     1  // Copyright 2013 The Go Authors.  All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  package fuse
     6  
     7  import "syscall"
     8  
     9  // This is mildly confusing, but the value to return when an attribute
    10  // doesn't exist seems to vary from system to system.
    11  // http://mail-index.netbsd.org/tech-kern/2012/04/30/msg013091.html
    12  
    13  // ENOATTR is a fuse.Error returned when a request is made for an
    14  // extended attribute that doesn't exist.
    15  var ENOATTR = Errno(syscall.ENODATA)