diff options
author | Roland McGrath <roland@gnu.org> | 2002-05-29 08:34:38 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-05-29 08:34:38 +0000 |
commit | 6f0783f05f1ec037bea1619306aff367b7f50d47 (patch) | |
tree | 8fd48932d43cbc00c599e627a0b0946996dbbcd1 /pfinet/linux-src | |
parent | a3820c3a3c372fc54a47d397e19db700023b5b06 (diff) |
2002-05-29 Roland McGrath <roland@frob.com>
* linux-src/include/linux/net.h (struct socket) [_HURD_]:
New member `st_ino'.
* io-ops.c (S_io_stat, S_io_identity): Use that.
* socket.c (sock_alloc): Initialize it with a monotonic counter.
Diffstat (limited to 'pfinet/linux-src')
-rw-r--r-- | pfinet/linux-src/include/linux/net.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pfinet/linux-src/include/linux/net.h b/pfinet/linux-src/include/linux/net.h index 781b9453..b224c49e 100644 --- a/pfinet/linux-src/include/linux/net.h +++ b/pfinet/linux-src/include/linux/net.h @@ -69,6 +69,7 @@ struct socket #ifdef _HURD_ uint_fast32_t refcnt; /* # of sock_user's pointing to this */ mach_port_t identity; /* for io_identity */ + ino_t st_ino; #else struct fasync_struct *fasync_list; /* Asynchronous wake up list */ struct file *file; /* File back pointer for gc */ |