Commit 76c733c5 authored by David S. Miller's avatar David S. Miller

net/unix/af_unix.c: protinfo is dead, use unix_sk().

parent 551e7a61
...@@ -633,7 +633,7 @@ static unix_socket *unix_find_other(struct sockaddr_un *sunname, int len, ...@@ -633,7 +633,7 @@ static unix_socket *unix_find_other(struct sockaddr_un *sunname, int len,
u=unix_find_socket_byname(sunname, len, type, hash); u=unix_find_socket_byname(sunname, len, type, hash);
if (u) { if (u) {
struct dentry *dentry; struct dentry *dentry;
dentry = u->protinfo.af_unix.dentry; dentry = unix_sk(u)->dentry;
if (dentry) if (dentry)
UPDATE_ATIME(dentry->d_inode); UPDATE_ATIME(dentry->d_inode);
} else } else
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment