aboutsummaryrefslogtreecommitdiff
path: root/sys/netgraph/ng_base.c
diff options
context:
space:
mode:
authorGleb Smirnoff <glebius@FreeBSD.org>2004-12-01 11:56:32 +0000
committerGleb Smirnoff <glebius@FreeBSD.org>2004-12-01 11:56:32 +0000
commitf9d9e1b4ecea993a101005af130bd4db9fa2b010 (patch)
tree993048ef397a314598d7acf4cda3afeaf0b93717 /sys/netgraph/ng_base.c
parentbe392b40255efde144eacc0c3d5af66fbbec3243 (diff)
downloadsrc-f9d9e1b4ecea993a101005af130bd4db9fa2b010.tar.gz
src-f9d9e1b4ecea993a101005af130bd4db9fa2b010.zip
Mechanically rename s/ng_timeout/ng_callout/g, s/ng_untimeout/ng_uncallout/g.
This is done to keep both versions in RELENG_5 and support both APIs. Reviewed by: scottl Approved by: julian (mentor), implicitly
Notes
Notes: svn path=/head/; revision=138268
Diffstat (limited to 'sys/netgraph/ng_base.c')
-rw-r--r--sys/netgraph/ng_base.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/netgraph/ng_base.c b/sys/netgraph/ng_base.c
index 5c364800f5a9..9ba7b80d1f44 100644
--- a/sys/netgraph/ng_base.c
+++ b/sys/netgraph/ng_base.c
@@ -3587,7 +3587,7 @@ ng_send_fn(node_p node, hook_p hook, ng_item_fn *fn, void * arg1, int arg2)
* Official timeout routines for Netgraph nodes.
*/
static void
-ng_timeout_trapoline(void *arg)
+ng_callout_trapoline(void *arg)
{
item_p item = arg;
@@ -3596,7 +3596,7 @@ ng_timeout_trapoline(void *arg)
int
-ng_timeout(struct callout *c, node_p node, hook_p hook, int ticks,
+ng_callout(struct callout *c, node_p node, hook_p hook, int ticks,
ng_item_fn *fn, void * arg1, int arg2)
{
item_p item;
@@ -3614,13 +3614,13 @@ ng_timeout(struct callout *c, node_p node, hook_p hook, int ticks,
NGI_FN(item) = fn;
NGI_ARG1(item) = arg1;
NGI_ARG2(item) = arg2;
- callout_reset(c, ticks, &ng_timeout_trapoline, item);
+ callout_reset(c, ticks, &ng_callout_trapoline, item);
return (0);
}
/* A special modified version of untimeout() */
int
-ng_untimeout(struct callout *c, node_p node)
+ng_uncallout(struct callout *c, node_p node)
{
item_p item;
int rval;
@@ -3635,7 +3635,7 @@ ng_untimeout(struct callout *c, node_p node)
mtx_unlock_spin(&callout_lock);
item = c->c_arg;
/* Do an extra check */
- if ((rval > 0) && (c_func == &ng_timeout_trapoline) &&
+ if ((rval > 0) && (c_func == &ng_callout_trapoline) &&
(NGI_NODE(item) == node)) {
/*
* We successfully removed it from the queue before it ran