aboutsummaryrefslogtreecommitdiffstats
path: root/man7/netlink.7
diff options
context:
space:
mode:
authorMichael Kerrisk <mtk.manpages@gmail.com>2012-10-21 08:04:42 +0200
committerMichael Kerrisk <mtk.manpages@gmail.com>2012-10-24 14:53:33 +0200
commit7fac88a949c7fdf554cc048bd9b47059830ebb68 (patch)
tree52171bcee3526213abcd6dd72a6e2abc0ddde394 /man7/netlink.7
parenta9c1e09721a2b9da554bf9e98466c1c5d41afa3f (diff)
downloadman-pages-7fac88a949c7fdf554cc048bd9b47059830ebb68.tar.gz
eventfd.2, futex.2, mmap2.2, open.2, pciconfig_read.2, ptrace.2, reboot.2, request_key.2, sched_rr_get_interval.2, splice.2, stat.2, sync_file_range.2, syscalls.2, timer_create.2, vm86.2, pthread_attr_setscope.3, core.5, proc.5, aio.7, futex.7, netlink.7, time.7: Global fix: "userspace" ==> "user space" or "user-space"
Existing pages variously use "userspace or "user space". But, "userspace" is not quite an English word. So change "userspace" to "user space" or, when used attributively, "user-space". Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Diffstat (limited to 'man7/netlink.7')
-rw-r--r--man7/netlink.718
1 files changed, 9 insertions, 9 deletions
diff --git a/man7/netlink.7 b/man7/netlink.7
index dfdba9a502..3d499e34fe 100644
--- a/man7/netlink.7
+++ b/man7/netlink.7
@@ -6,7 +6,7 @@
.\" $Id: netlink.7,v 1.8 2000/06/22 13:23:00 ak Exp $
.TH NETLINK 7 2012-08-05 "Linux" "Linux Programmer's Manual"
.SH NAME
-netlink \- Communication between kernel and userspace (AF_NETLINK)
+netlink \- Communication between kernel and user space (AF_NETLINK)
.SH SYNOPSIS
.nf
.B #include <asm/types.h>
@@ -17,8 +17,8 @@ netlink \- Communication between kernel and userspace (AF_NETLINK)
.fi
.SH DESCRIPTION
Netlink is used to transfer information between kernel and
-userspace processes.
-It consists of a standard sockets-based interface for userspace
+user-space processes.
+It consists of a standard sockets-based interface for user space
processes and an internal kernel API for kernel modules.
The internal kernel interface is not documented in this manual page.
There is also an obsolete netlink interface
@@ -53,7 +53,7 @@ Messages from 1-wire subsystem.
Reserved for user-mode socket protocols.
.TP
.B NETLINK_FIREWALL
-Transport IPv4 packets from netfilter to userspace.
+Transport IPv4 packets from netfilter to user space.
Used by
.I ip_queue
kernel module.
@@ -82,7 +82,7 @@ Auditing.
.TP
.B NETLINK_FIB_LOOKUP
.\" FIXME More details on NETLINK_FIB_LOOKUP needed.
-Access to FIB lookup from userspace.
+Access to FIB lookup from user space.
.TP
.B NETLINK_CONNECTOR
Kernel connector.
@@ -95,7 +95,7 @@ in the Linux kernel source tree for further information.
Netfilter subsystem.
.TP
.B NETLINK_IP6_FW
-Transport IPv6 packets from netfilter to userspace.
+Transport IPv6 packets from netfilter to user space.
Used by
.I ip6_queue
kernel module.
@@ -105,7 +105,7 @@ DECnet routing messages.
.TP
.B NETLINK_KOBJECT_UEVENT
.\" FIXME More details on NETLINK_KOBJECT_UEVENT needed.
-Kernel messages to userspace.
+Kernel messages to user space.
.TP
.B NETLINK_GENERIC
Generic netlink family for simplified netlink usage.
@@ -268,7 +268,7 @@ A user process should follow this convention too.
However, reliable transmissions from kernel to user are impossible
in any case.
The kernel can't send a netlink message if the socket buffer is full:
-the message will be dropped and the kernel and the userspace process will
+the message will be dropped and the kernel and the user-space process will
no longer have the same view of kernel state.
It is up to the application to detect when this happens (via the
.B ENOBUFS
@@ -300,7 +300,7 @@ struct sockaddr_nl {
.I nl_pid
is the unicast address of netlink socket.
It's always 0 if the destination is in the kernel.
-For a userspace process,
+For a user-space process,
.I nl_pid
is usually the PID of the process owning the destination socket.
However,