Christoph,

> +static int
> +posix_acl_xattr_set(struct dentry *dentry, const char *name,
> +             const void *value, size_t size, int flags, int type)
> +{
> +     struct inode *inode = dentry->d_inode;
> +     struct posix_acl *acl = NULL;
> +     int ret;
> +
> +     if (!IS_POSIXACL(inode))
> +             return -EOPNOTSUPP;
> +     if (S_ISLNK(inode->i_mode) || !inode->i_op->set_acl)
> +             return -EOPNOTSUPP;

Sama here, I would remove the S_ISLNK() check.

Andreas

Reply via email to