From e3f195777ee54c7a57aab932b64c6ecbd782f68f Mon Sep 17 00:00:00 2001 From: Florian Westphal Date: Fri, 8 Feb 2019 17:02:23 +0100 Subject: src: expr: remove expr_ops from struct expr size of struct expr changes from 144 to 128 bytes on x86_64. This doesn't look like much, but large rulesets can have tens of thousands of expressions (each set element is represented by an expression). Signed-off-by: Florian Westphal --- src/hash.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/hash.c') diff --git a/src/hash.c b/src/hash.c index a2d2314b..208f4b6b 100644 --- a/src/hash.c +++ b/src/hash.c @@ -56,7 +56,7 @@ static void hash_expr_clone(struct expr *new, const struct expr *expr) new->hash.type = expr->hash.type; } -static const struct expr_ops hash_expr_ops = { +const struct expr_ops hash_expr_ops = { .type = EXPR_HASH, .name = "hash", .print = hash_expr_print, @@ -73,7 +73,7 @@ struct expr *hash_expr_alloc(const struct location *loc, { struct expr *expr; - expr = expr_alloc(loc, &hash_expr_ops, &integer_type, + expr = expr_alloc(loc, EXPR_HASH, &integer_type, BYTEORDER_HOST_ENDIAN, 4 * BITS_PER_BYTE); expr->hash.mod = mod; expr->hash.seed_set = seed_set; -- cgit v1.2.3