From 665235b74a871df54d044902b494f1caeb421ca7 Mon Sep 17 00:00:00 2001 From: "Hongzhi.Song" Date: Sun, 22 Sep 2019 20:30:20 -0700 Subject: numactl: fix a error about lib32-numactl lib32-numactl has a error: root@intel-x86-64:~# numademo -t -e 1M Configured Nodes does not match available memory nodes That's because (long long int) is assigned to (long int). This will cause (long int) overflow on 32bit system. Unify variable types and fix it. Signed-off-by: Hongzhi.Song Signed-off-by: Khem Raj --- meta-oe/recipes-support/numactl/numactl_git.bb | 1 + 1 file changed, 1 insertion(+) (limited to 'meta-oe/recipes-support/numactl/numactl_git.bb') diff --git a/meta-oe/recipes-support/numactl/numactl_git.bb b/meta-oe/recipes-support/numactl/numactl_git.bb index f13b1795f1..20b7fed862 100644 --- a/meta-oe/recipes-support/numactl/numactl_git.bb +++ b/meta-oe/recipes-support/numactl/numactl_git.bb @@ -18,6 +18,7 @@ SRC_URI = "git://github.com/numactl/numactl \ file://Makefile \ file://run-ptest \ file://0001-define-run-test-target.patch \ + file://0001-numademo-fix-error-on-32bit-system.patch \ " S = "${WORKDIR}/git" -- cgit 1.2.3-korg