summaryrefslogtreecommitdiffstats
path: root/sys/netgraph/netgraph.h
diff options
context:
space:
mode:
authorpfg <pfg@FreeBSD.org>2016-04-29 21:25:05 +0000
committerpfg <pfg@FreeBSD.org>2016-04-29 21:25:05 +0000
commit79a1fafeb42e583ed21b9d628a7f5843af2363c6 (patch)
treea105ac679aa23495f95998203cdb54c8ba79d19b /sys/netgraph/netgraph.h
parentd3b6c9c90faa979f0fbec505c7207a8414476c8d (diff)
downloadFreeBSD-src-79a1fafeb42e583ed21b9d628a7f5843af2363c6.zip
FreeBSD-src-79a1fafeb42e583ed21b9d628a7f5843af2363c6.tar.gz
sys/netgraph: spelling fixes in comments.
No functional change.
Diffstat (limited to 'sys/netgraph/netgraph.h')
-rw-r--r--sys/netgraph/netgraph.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netgraph/netgraph.h b/sys/netgraph/netgraph.h
index 9fc8986..c7b0e67 100644
--- a/sys/netgraph/netgraph.h
+++ b/sys/netgraph/netgraph.h
@@ -109,7 +109,7 @@ typedef int ng_rcvitem (node_p node, hook_p hook, item_p item);
*/
struct ng_hook {
char hk_name[NG_HOOKSIZ]; /* what this node knows this link as */
- void *hk_private; /* node dependant ID for this hook */
+ void *hk_private; /* node dependent ID for this hook */
int hk_flags; /* info about this hook/link */
int hk_type; /* tbd: hook data link type */
struct ng_hook *hk_peer; /* the other end of this link */
@@ -362,7 +362,7 @@ struct ng_node {
struct ng_type *nd_type; /* the installed 'type' */
int nd_flags; /* see below for bit definitions */
int nd_numhooks; /* number of hooks */
- void *nd_private; /* node type dependant node ID */
+ void *nd_private; /* node type dependent node ID */
ng_ID_t nd_ID; /* Unique per node */
LIST_HEAD(hooks, ng_hook) nd_hooks; /* linked list of node hooks */
LIST_ENTRY(ng_node) nd_nodes; /* name hash collision list */
@@ -1066,7 +1066,7 @@ struct ng_cmdlist {
* Note the input queueing system is to allow modules
* to 'release the stack' or to pass data across spl layers.
* The data will be redelivered as soon as the NETISR code runs
- * which may be almost immediatly. A node may also do it's own queueing
+ * which may be almost immediately. A node may also do it's own queueing
* for other reasons (e.g. device output queuing).
*/
struct ng_type {
OpenPOWER on IntegriCloud