summaryrefslogtreecommitdiffstats
path: root/sys/netgraph/ng_pred1.c
diff options
context:
space:
mode:
authorglebius <glebius@FreeBSD.org>2007-01-15 05:55:56 +0000
committerglebius <glebius@FreeBSD.org>2007-01-15 05:55:56 +0000
commit06a509ffdccab3389f6fa2984a2cf0d8e5679389 (patch)
tree7e883bec3bb24a2797f3897cf7303137152c041d /sys/netgraph/ng_pred1.c
parent3ff4e1770d32d5584e15768f76a32a3004edcf35 (diff)
downloadFreeBSD-src-06a509ffdccab3389f6fa2984a2cf0d8e5679389.zip
FreeBSD-src-06a509ffdccab3389f6fa2984a2cf0d8e5679389.tar.gz
Whitespace cleanup.
Checked with: cvs diff -b
Diffstat (limited to 'sys/netgraph/ng_pred1.c')
-rw-r--r--sys/netgraph/ng_pred1.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/netgraph/ng_pred1.c b/sys/netgraph/ng_pred1.c
index 28dff36..e637a9d 100644
--- a/sys/netgraph/ng_pred1.c
+++ b/sys/netgraph/ng_pred1.c
@@ -235,7 +235,7 @@ ng_pred1_rcvmsg(node_p node, item_p item, hook_p lasthook)
if (msg->header.typecookie != NGM_PRED1_COOKIE)
ERROUT(EINVAL);
-
+
switch (msg->header.cmd) {
case NGM_PRED1_CONFIG:
{
@@ -272,7 +272,7 @@ ng_pred1_rcvmsg(node_p node, item_p item, hook_p lasthook)
if (resp == NULL)
ERROUT(ENOMEM);
bcopy(&priv->stats, resp->data,
- sizeof(struct ng_pred1_stats));
+ sizeof(struct ng_pred1_stats));
}
if (msg->header.cmd != NGM_PRED1_GET_STATS)
@@ -305,7 +305,7 @@ ng_pred1_rcvdata(hook_p hook, item_p item)
NG_FREE_ITEM(item);
return (ENXIO);
}
-
+
NGI_GET_M(item, m);
/* Compress. */
if (priv->compress) {
@@ -399,7 +399,7 @@ ng_pred1_compress(node_p node, struct mbuf *m, struct mbuf **resultp)
NG_FREE_M(m);
return (ENOMEM);
}
-
+
/* Work with contiguous regions of memory. */
m_copydata(m, 0, inlen, (caddr_t)(priv->inbuf + 2));
@@ -464,7 +464,7 @@ ng_pred1_decompress(node_p node, struct mbuf *m, struct mbuf **resultp)
*resultp = NULL;
inlen = m->m_pkthdr.len;
-
+
if (inlen > PRED1_BUF_SIZE) {
priv->stats.Errors++;
NG_FREE_M(m);
@@ -475,7 +475,7 @@ ng_pred1_decompress(node_p node, struct mbuf *m, struct mbuf **resultp)
m_copydata(m, 0, inlen, (caddr_t)priv->inbuf);
priv->stats.InOctets += inlen;
-
+
/* Get initial length value. */
len = priv->inbuf[0] << 8;
len += priv->inbuf[1];
@@ -486,7 +486,7 @@ ng_pred1_decompress(node_p node, struct mbuf *m, struct mbuf **resultp)
/* Is data compressed or not really? */
if (cf) {
NG_FREE_M(m);
-
+
priv->stats.FramesComp++;
len1 = Pred1Decompress(node, priv->inbuf + 2, priv->outbuf,
inlen - 4, PRED1_BUF_SIZE);
OpenPOWER on IntegriCloud