[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <87vb7ak08l.fsf@doppelsaurus.mobileactivedefense.com>
Date: Sun, 03 Jan 2016 18:04:58 +0000
From: Rainer Weikusat <rweikusat@...ileactivedefense.com>
To: David Miller <davem@...emloft.net>
Cc: <dvyukov@...gle.com>, <netdev@...r.kernel.org>,
<linux-kernel@...r.kernel.org>, <viro@...IV.linux.org.uk>
Subject: Re: [PATCH] af_unix: Fix splice-bind deadlock
Rainer Weikusat <rw@...pelsaurus.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 linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists