Rainer Weikusat <r...@doppelsaurus.mobileactivedefense.com> writes:

[...]

> +     dentry = NULL;
> +     if (sun_path[0]) {
> +             /* Get the parent directory, calculate the hash for last
> +              * component.
> +              */
> +             dentry = kern_path_create(AT_FDCWD, sun_path, &path, 0);
> +
> +             err = PTR_ERR(dentry);
> +             if (IS_ERR(dentry))
> +                     goto out;
> +     }
> +

This is wrong because kern_path_create can return with -EEXIST which
needs to be translated to -EADDRINUSE for this case. I'll fix that.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to