Christoph,

> +struct posix_acl *get_acl(struct inode *inode, int type)
> +{
> +     struct posix_acl *acl;
> +
> +     acl = get_cached_acl(inode, type);
> +     if (acl != ACL_NOT_CACHED)
> +             return acl;
> +
> +     if (!IS_POSIXACL(inode))
> +             return NULL;
> +
> +     /*
> +      * A filesystem can force a ACL callback by just never filling the
> +      * ACL cache. But normally you'd fill the cache either at inode
> +      * instantiation time, or on the first ->get_acl call.
> +      *
> +      * If the filesystem doesn't have a get_acl() function at all, we'll
> +      * just create the negative cache entry.
> +      */
> +     if (!inode->i_op->get_acl) {
> +             set_cached_acl(inode, type, NULL);
> +             return ERR_PTR(-EAGAIN);

The function should return NULL here.

Andreas

------------------------------------------------------------------------------
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET, & PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831&iu=/4140/ostg.clktrk
_______________________________________________
Linux-f2fs-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel

Reply via email to