From 6bfd3dd23bb76adbc71f245930d5969243843641 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 25 Nov 2019 14:28:32 +0100 Subject: sys/linux: update to current linux-next Regenerate consts on linux-next next-20191125. DEVLINK_ATTR_NETNS_* consts were chifted by 1. __BPF_FUNC_MAX_ID increased as usual. CRYPTO_ALG_TYPE_BLKCIPHER, CRYPTO_ALG_TYPE_ABLKCIPHER were removed, replace them with CRYPTO_ALG_TYPE_SKCIPHER. --- sys/linux/init.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/linux/init.go') diff --git a/sys/linux/init.go b/sys/linux/init.go index 5ae9f001d..94565a9d3 100644 --- a/sys/linux/init.go +++ b/sys/linux/init.go @@ -57,7 +57,7 @@ func InitTarget(target *prog.Target) { "alg_name": arch.generateAlgName, "alg_aead_name": arch.generateAlgAeadName, "alg_hash_name": arch.generateAlgHashName, - "alg_blkcipher_name": arch.generateAlgBlkcipherhName, + "alg_skcipher_name": arch.generateAlgSkcipherhName, "ipt_replace": arch.generateIptables, "ip6t_replace": arch.generateIptables, "arpt_replace": arch.generateArptables, -- cgit mrf-deployment