From: Eric Leblond Date: Sat, 2 Mar 2019 22:21:05 +0000 (+0100) Subject: ebpf: fix indentation in xdp_filter X-Git-Tag: suricata-5.0.0-rc1~365 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f93573ac5e79b3981932dee40ae0ce64d931e96b;p=thirdparty%2Fsuricata.git ebpf: fix indentation in xdp_filter --- diff --git a/ebpf/xdp_filter.c b/ebpf/xdp_filter.c index 07bf6f9d97..327da712e8 100644 --- a/ebpf/xdp_filter.c +++ b/ebpf/xdp_filter.c @@ -306,7 +306,7 @@ static int __always_inline filter_ipv4(struct xdp_md *ctx, void *data, __u64 nh_ xdp_hash = SuperFastHash((char *)&xdp_hash, 4, INITVAL + iph->protocol); ctx->rx_queue_index = xdp_hash % RSS_QUEUE_NUMBERS; #endif - return XDP_PASS; + return XDP_PASS; #endif }