![]() |
[SOLVED] 9.3.2: dmesg full with "mempolicy: Request to set policy to 3 ignored" messages - Printable Version +- Moode Forum (https://moodeaudio.org/forum) +-- Forum: moOde audio player (https://moodeaudio.org/forum/forumdisplay.php?fid=3) +--- Forum: Support (https://moodeaudio.org/forum/forumdisplay.php?fid=7) +--- Thread: [SOLVED] 9.3.2: dmesg full with "mempolicy: Request to set policy to 3 ignored" messages (/showthread.php?tid=7650) |
9.3.2: dmesg full with "mempolicy: Request to set policy to 3 ignored" messages - dheijl - 04-18-2025 Since installing Moode 9.3.2 the dmesg log is continually spammed with these messages: ``` [Fri Apr 18 17:20:31 2025] mempolicy: Request to set policy to 5 ignored [Fri Apr 18 17:20:31 2025] mempolicy: Request to set policy to 3 ignored [Fri Apr 18 17:20:31 2025] mempolicy: Request to set policy to 5 ignored [Fri Apr 18 17:20:31 2025] mempolicy: Request to set policy to 3 ignored [Fri Apr 18 17:20:31 2025] mempolicy: Request to set policy to 5 ignored [Fri Apr 18 17:20:31 2025] mempolicy: Request to set policy to 3 ignored [Fri Apr 18 17:20:31 2025] mempolicy: Request to set policy to 5 ignored [Fri Apr 18 17:20:31 2025] mempolicy: Request to set policy to 3 ignored [Fri Apr 18 17:20:37 2025] mempolicy: Request to set policy to 5 ignored [Fri Apr 18 17:20:37 2025] mempolicy: Request to set policy to 3 ignored [Fri Apr 18 17:20:37 2025] mempolicy: Request to set policy to 5 ignored [Fri Apr 18 17:20:37 2025] mempolicy: Request to set policy to 3 ignored [Fri Apr 18 17:20:37 2025] mempolicy: Request to set policy to 5 ignored [Fri Apr 18 17:20:37 2025] mempolicy: Request to set policy to 3 ignored [Fri Apr 18 17:20:38 2025] mempolicy: Request to set policy to 5 ignored [Fri Apr 18 17:20:38 2025] mempolicy: Request to set policy to 3 ignored ``` I know it's not a Moode problem, it's a Raspbian problem with kernel 6.12, see for instance this conversation: https://forums.raspberrypi.com/viewtopic.php?t=386126. I'm just signaling it, and I suppose we will have to live with it until it's solved in Raspbian. RE: 9.3.2: dmesg full with "mempolicy: Request to set policy to 3 ignored" messages - ils1974 - 04-18-2025 libnuma1 was the issue. I fixed it on my moOde instance by doing: sudo apt install libnuma1 This installed a newer version of the lib where the issue is fixed. RE: 9.3.2: dmesg full with "mempolicy: Request to set policy to 3 ignored" messages - Tim Curtis - 04-18-2025 Here's the version that ships with r932 Code: pi@moode9:~ $ dpkg -l | grep libnuma1 RE: 9.3.2: dmesg full with "mempolicy: Request to set policy to 3 ignored" messages - ils1974 - 04-18-2025 2.0.18-1 is indeed the version that works. However, if you do an inplace update, this one wasn't upgraded I believe, and this is when you've the issue. RE: 9.3.2: dmesg full with "mempolicy: Request to set policy to 3 ignored" messages - Tim Curtis - 04-18-2025 Correct. The in-place update only does the kernel and the list of moode packages below. Code: # Part 2: List of package updates (cumulative) There used to be some additional firmware- packages but those were removed to avoid any of them possibly failing and causing the entire update to be cancelled. Since moode packages are "apt-mark hold" its possible to "apt update && apt -y upgrade" a system and not break anything unless the upgrade contains a new Kernel or version of PHP. A kernel upgrade would cause the aloop and pcm1794a drivers to revert to stock and thus not support 384K rate. A new version of PHP always has its version string as part of its /etc dir and so it causes breakage in moode. Code: pi@moode9:~ $ cat /etc/moode-apt-mark.conf RE: 9.3.2: dmesg full with "mempolicy: Request to set policy to 3 ignored" messages - dheijl - 04-18-2025 (04-18-2025, 04:31 PM)ils1974 Wrote: libnuma1 was the issue. I can confirm that Code: sudo apt install libnuma1 |