diff options
| author | Eric Dumazet <[email protected]> | 2007-03-19 00:33:16 +0000 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2007-04-26 05:24:04 +0000 |
| commit | ae40eb1ef30ab4120bd3c8b7e3da99ee53d27a23 (patch) | |
| tree | b5ae288b3c27d13bde9648c41d7db3cfe1884bc2 /net/netrom/af_netrom.c | |
| parent | [TCP/DCCP/RANDOM]: Remove unused exports. (diff) | |
| download | kernel-ae40eb1ef30ab4120bd3c8b7e3da99ee53d27a23.tar.gz kernel-ae40eb1ef30ab4120bd3c8b7e3da99ee53d27a23.zip | |
[NET]: Introduce SIOCGSTAMPNS ioctl to get timestamps with nanosec resolution
Now network timestamps use ktime_t infrastructure, we can add a new
ioctl() SIOCGSTAMPNS command to get timestamps in 'struct timespec'.
User programs can thus access to nanosecond resolution.
Signed-off-by: Eric Dumazet <[email protected]>
CC: Stephen Hemminger <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'net/netrom/af_netrom.c')
| -rw-r--r-- | net/netrom/af_netrom.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/net/netrom/af_netrom.c b/net/netrom/af_netrom.c index bf9837dd95c4..a54e7ef2568a 100644 --- a/net/netrom/af_netrom.c +++ b/net/netrom/af_netrom.c @@ -1209,6 +1209,12 @@ static int nr_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg) release_sock(sk); return ret; + case SIOCGSTAMPNS: + lock_sock(sk); + ret = sock_get_timestampns(sk, argp); + release_sock(sk); + return ret; + case SIOCGIFADDR: case SIOCSIFADDR: case SIOCGIFDSTADDR: |
