From 7c62f718046a2204a35cfe8850f9006b686b1c22 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Wed, 21 Mar 2018 12:18:36 +0100 Subject: sys/linux: add netlink fou descriptions --- prog/resources.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'prog/resources.go') diff --git a/prog/resources.go b/prog/resources.go index 299e8571c..e6ef080cd 100644 --- a/prog/resources.go +++ b/prog/resources.go @@ -33,7 +33,9 @@ func (target *Target) calcResourceCtors(kind []string, precise bool) []*Syscall // isCompatibleResource returns true if resource of kind src can be passed as an argument of kind dst. func (target *Target) isCompatibleResource(dst, src string) bool { - if dst == target.any.res32.TypeName || dst == target.any.res64.TypeName { + if dst == target.any.res16.TypeName || + dst == target.any.res32.TypeName || + dst == target.any.res64.TypeName { return true } dstRes := target.resourceMap[dst] -- cgit mrf-deployment