diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2012-03-14 21:54:32 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-03-20 21:29:41 -0400 |
commit | 40ffe67d2e89c7a475421d007becc11a2f88ea3d (patch) | |
tree | 5373e71b18895b9ffd8370a88aec6c54438240a0 /include/net | |
parent | 38eff2892628fa5c4fc8962a17b7296f42833ebe (diff) |
switch unix_sock to struct path
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/af_unix.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/net/af_unix.h b/include/net/af_unix.h index 5a4e29b168c9..ca68e2cef230 100644 --- a/include/net/af_unix.h +++ b/include/net/af_unix.h @@ -49,8 +49,7 @@ struct unix_sock { /* WARNING: sk has to be the first member */ struct sock sk; struct unix_address *addr; - struct dentry *dentry; - struct vfsmount *mnt; + struct path path; struct mutex readlock; struct sock *peer; struct sock *other; |