svn commit: r303611 - head/sys/netgraph
Julian Elischer
julian at FreeBSD.org
Mon Aug 1 11:34:14 UTC 2016
Author: julian
Date: Mon Aug 1 11:34:12 2016
New Revision: 303611
URL: https://svnweb.freebsd.org/changeset/base/303611
Log:
slite style changes. There is an incoming patch that rewrites a
lot of this module and I want to get the style and whitespace changes in
a separate commit (or maybe more).
PR: 206185
Submitted by: Dmitry Vagin
MFC after: 1 month
Modified:
head/sys/netgraph/ng_patch.c
head/sys/netgraph/ng_patch.h
Modified: head/sys/netgraph/ng_patch.c
==============================================================================
--- head/sys/netgraph/ng_patch.c Mon Aug 1 10:36:58 2016 (r303610)
+++ head/sys/netgraph/ng_patch.c Mon Aug 1 11:34:12 2016 (r303611)
@@ -1,5 +1,5 @@
/*-
- * Copyright (C) 2010 by Maxim Ignatenko <gelraen.ua at gmail.com>
+ * Copyright (c) 2010 Maxim Ignatenko <gelraen.ua at gmail.com>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -50,11 +50,12 @@ static int
ng_patch_config_getlen(const struct ng_parse_type *type,
const u_char *start, const u_char *buf)
{
- const struct ng_patch_config *p;
+ const struct ng_patch_config *conf;
- p = (const struct ng_patch_config *)(buf -
+ conf = (const struct ng_patch_config *)(buf -
offsetof(struct ng_patch_config, ops));
- return (p->count);
+
+ return (conf->count);
}
static const struct ng_parse_struct_field ng_patch_op_type_fields[]
@@ -64,13 +65,13 @@ static const struct ng_parse_type ng_pat
&ng_patch_op_type_fields
};
-static const struct ng_parse_array_info ng_patch_confarr_info = {
+static const struct ng_parse_array_info ng_patch_ops_array_info = {
&ng_patch_op_type,
&ng_patch_config_getlen
};
-static const struct ng_parse_type ng_patch_confarr_type = {
+static const struct ng_parse_type ng_patch_ops_array_type = {
&ng_parse_array_type,
- &ng_patch_confarr_info
+ &ng_patch_ops_array_info
};
static const struct ng_parse_struct_field ng_patch_config_type_fields[]
@@ -137,6 +138,7 @@ static struct ng_type typestruct = {
.disconnect = ng_patch_disconnect,
.cmdlist = ng_patch_cmdlist,
};
+
NETGRAPH_INIT(patch, &typestruct);
union patch_val {
@@ -146,6 +148,7 @@ union patch_val {
uint64_t v8;
};
+/* private data */
struct ng_patch_priv {
hook_p in;
hook_p out;
Modified: head/sys/netgraph/ng_patch.h
==============================================================================
--- head/sys/netgraph/ng_patch.h Mon Aug 1 10:36:58 2016 (r303610)
+++ head/sys/netgraph/ng_patch.h Mon Aug 1 11:34:12 2016 (r303611)
@@ -57,7 +57,7 @@ enum {
NG_PATCH_MODE_DIV = 5,
NG_PATCH_MODE_NEG = 6,
NG_PATCH_MODE_AND = 7,
- NG_PATCH_MODE_OR = 8,
+ NG_PATCH_MODE_OR = 8,
NG_PATCH_MODE_XOR = 9,
NG_PATCH_MODE_SHL = 10,
NG_PATCH_MODE_SHR = 11
@@ -66,16 +66,16 @@ enum {
struct ng_patch_op {
uint64_t value;
uint32_t offset;
- uint16_t length; /* 1,2,4 or 8 (bytes) */
+ uint16_t length; /* 1, 2, 4 or 8 (bytes) */
uint16_t mode;
};
-#define NG_PATCH_OP_TYPE_INFO { \
- { "value", &ng_parse_uint64_type }, \
- { "offset", &ng_parse_uint32_type }, \
- { "length", &ng_parse_uint16_type }, \
- { "mode", &ng_parse_uint16_type }, \
- { NULL } \
+#define NG_PATCH_OP_TYPE_INFO { \
+ { "value", &ng_parse_uint64_type }, \
+ { "offset", &ng_parse_uint32_type }, \
+ { "length", &ng_parse_uint16_type }, \
+ { "mode", &ng_parse_uint16_type }, \
+ { NULL } \
}
struct ng_patch_config {
@@ -84,11 +84,11 @@ struct ng_patch_config {
struct ng_patch_op ops[];
};
-#define NG_PATCH_CONFIG_TYPE_INFO { \
- { "count", &ng_parse_uint32_type }, \
- { "csum_flags", &ng_parse_uint32_type }, \
- { "ops", &ng_patch_confarr_type }, \
- { NULL } \
+#define NG_PATCH_CONFIG_TYPE_INFO { \
+ { "count", &ng_parse_uint32_type }, \
+ { "csum_flags", &ng_parse_uint64_type }, \
+ { "ops", &ng_patch_ops_array_type }, \
+ { NULL } \
}
struct ng_patch_stats {
@@ -97,11 +97,11 @@ struct ng_patch_stats {
uint64_t dropped;
};
-#define NG_PATCH_STATS_TYPE_INFO { \
- { "received", &ng_parse_uint64_type }, \
- { "patched", &ng_parse_uint64_type }, \
- { "dropped", &ng_parse_uint64_type }, \
- { NULL } \
+#define NG_PATCH_STATS_TYPE_INFO { \
+ { "Received", &ng_parse_uint64_type }, \
+ { "Patched", &ng_parse_uint64_type }, \
+ { "Dropped", &ng_parse_uint64_type }, \
+ { NULL } \
}
#endif /* _NETGRAPH_NG_PATCH_H_ */
More information about the svn-src-head
mailing list