Lines Matching defs:error
51 int error = 0;
71 error = list_size;
80 error = -EIO;
88 error = security_inode_copy_up_xattr(name);
89 if (error < 0 && error != -EOPNOTSUPP)
91 if (error == 1) {
92 error = 0;
101 error = size;
110 error = -ENOMEM;
118 error = vfs_setxattr(new, name, value, size, 0);
119 if (error) {
120 if (error != -EOPNOTSUPP || ovl_must_copy_xattr(name))
124 error = 0;
130 return error;
144 int error = 0;
155 error = PTR_ERR(new_file);
178 error = -EINTR;
216 error = bytes;
224 if (!error && ovl_should_sync(ofs))
225 error = vfs_fsync(new_file, 0);
229 return error;