4/21/2025 at 1:33:47 PM
Linux added a busy polling feature for high performance networking. Most Linux software does not use it, but software used in datacenters (e.g. by CDNs) that does use it makes the system very energy inefficient when things are not busy. This patch gives the the kernel the ability to turn that off when not busy to regain energy efficiency until things become busy again.The article name is somewhat misleading, since it makes it sound like this would also apply to desktop workloads. The article says it is for datacenters and that is true, but it would have been better had the title ended with the words “in datacenters” to avoid confusion.
by ryao
4/21/2025 at 4:07:56 PM
It’s a lot more nuanced than that. Being in a data center doesn’t imply heavy network utilization. The caveat is clearly outlined in the article being workload based not deployment based. If you have a home machine doing network routing it would absolutely benefit from this. In fact I would say probably the vast majority of Linux installs are home network devices, just people don’t know it. Embedded Linux machines doing network routing or switching or IPS or NAS or whatever would benefit a lot from this. “Energy savings” can be seen as a green washing statement but on embedded budgets it’s a primary requirement.by fnordpiglet
4/21/2025 at 6:00:22 PM
> If you have a home machine doing network routing it would absolutely benefit from this.It most likely won't. This patch set only affects applications that enable epoll busy poll using the EPIOCSPARAMS ioctl. It's a very specialized option that's not commonly used by applications. Furthermore, network routing in Linux happens in the kernel, not in user space, so this patch set doesn't apply to it at all.
by Denvercoder9
4/21/2025 at 8:04:28 PM
NAPI is not busy poll, though, and the way the article is worded suggests it's about NAPI.Now, NAPI already was supposed to have some adaptiveness involved, so I guess it's possibly a matter of optimizing it.
But my system is compiling for now so will look at article more in depth later :V
by p_l
4/22/2025 at 6:47:59 AM
The article is terrible, this doesn't affect the default NAPI behaviour. See the LWN link posted elsewhere for a more detailed, technical discussion. From the patch set itself:> If this [new] parameter is set to a non-zero value and a user application has enabled preferred busy poll on a busy poll context (via the EPIOCSPARAMS ioctl introduced in commit 18e2bf0edf4d ("eventpoll: Add epoll ioctl for epoll_params")), then application calls to epoll_wait for that context will cause device IRQs and softirq processing to be suspended as long as epoll_wait successfully retrieves data from the NAPI. Each time data is retrieved, the irq_suspend_timeout is deferred.
by Denvercoder9
4/22/2025 at 2:18:01 AM
> I would say probably the vast majority of Linux installs are home network devicesI'm expect there are many, but the vast majority are likely massive datacenters with hundreds of thousands of machines each running multiple instances, and also Android phones are probably more common than home equipment. Edit: Also IoT, as someone else points out.
by mmooss
4/23/2025 at 8:51:36 PM
The vast majority of Linux kernels run on Android.I would be shocked if I am incorrect.
by chasil
4/24/2025 at 1:44:00 AM
I could see that being right. At the same time, how many servers running Linux are there, and how many instances per server?by mmooss
4/22/2025 at 5:45:34 AM
> It’s a lot more nuanced than that. Being in a data center doesn’t imply heavy network utilization.I suggest you reread “software used in datacenters (e.g. by CDNs) that does use it”. This is not a reference to software in a datacenter. It is a reference to software in a datacenter that uses it, which is a subset of the former.
by ryao
4/21/2025 at 4:11:10 PM
I was curious how much this would be applicable to home routers.I confess I'm dubious on major savings for most home users, though? At least, at an absolute level. 30% of less than five percent is still not that big of a deal. No reason not to do it, but don't expect to really see the results there.
by taeric
4/21/2025 at 4:43:56 PM
Practically none of it would be applicable (if using a commercial router). They all use hardware offloading, and traffic seldom touches the CPU. Only "logical" tasks are raised to the CPU, like ARP resolution and the likes (what’s called "trap to cpu").If you’re doing custom routing with a NUC or a basic Linux box, however, this would gain massive power savings because that box pretty much only does networking.
by tuetuopay
4/21/2025 at 8:13:09 PM
Only if you're using busy polling. Very little software uses it, because it's only a good fit if you think pegging a CPU to reduce latency responding to packets is a good trade.by ori_b
4/21/2025 at 10:46:21 PM
Yup, you’re right. I always forget this patch only applies to opted-in polling and not automatic polling for interrupt moderation.by tuetuopay
4/22/2025 at 1:55:23 AM
if you run a VPN server, i assume all the traffic will come to CPU to decrypt, right?by mrheosuper
4/21/2025 at 4:16:04 PM
For embedded it’s not about saving cost it’s about saving limited on board power. The lower the power demand of the device, the smaller and the more you can dedicate to other things.by fnordpiglet
4/21/2025 at 4:23:25 PM
Again, no reason not to do this change. I'm not clear it helps in this case, though? The savings is in low use time. During high use time, it is the same, right?by taeric
4/21/2025 at 8:24:14 PM
There should have been an off switch from the beginning though IMO, though perhaps there already is? But the number of corporates messing with the kernel for their own purposes greatly outnumbers the number of independent developers. That gives big tech a big influence. And the Linux Foundation is there to cement that influence.I much prefer grassroots projects. Made by and for people like me <3 That's why I moved to BSD (well there were other reasons too of course)
by wkat4242
4/21/2025 at 9:46:32 PM
Uh Linux is a grassroots project, quite unlike Berkley Software Distribution.Also no you are entirely unaffected by this unless you use a very specific and uncommon syscall.
by varjag
4/22/2025 at 4:17:22 AM
It was originally, yes. There's a lot of corporate influence now (just look at the monthly kernel submissions). https://news.itsfoss.com/huawei-kernel-contribution/Like others have mentioned, it's just a huge deal in the data center now. With that comes a lot of influence by corporates interests.
Whereas BSD has gone the opposite way. Started by Berkeley but abandoned to the community. Business is not really interested in that because anything they contribute can be used by anyone for anything (even their competitors can use it in closed source code). Netflix was the biggest user but I don't think they contribute anymore either. WhatsApp used it until Facebook acquired them. That leaves netgate and ix systems which are small. Netgate pushed a really terrible wireguard once but it was nipped in the bud luckily. https://arstechnica.com/gadgets/2021/03/buffer-overruns-lice... It also highlighted many trust issues which have been improved since.
Of course whether this is an issue for you is very personal. For me it is but clearly for a lot more people it isn't, as Linux is s lot more popular.
by wkat4242
4/22/2025 at 7:31:45 AM
No it's not an issue to me, just pointed out a factual mistake.by varjag
4/22/2025 at 5:19:56 AM
Linux has been a corporate project for at least 20 years.by Gud
4/22/2025 at 7:31:08 AM
That roots part in grassroots means something.by varjag
4/22/2025 at 1:19:13 PM
Yes, but I don't think it means what you think it means? Just because Linux was developed by basement dwelling hackers 20+ years ago, doesn't make it a grassroots project.Arguably, the only somewhat mainstream operating systems today that deserve that label are the *BSDs. Haiku OS gets an honorable mention but I wouldn't consider Haiku OS to be mainstream.
by Gud
4/22/2025 at 6:47:33 PM
It quite literally makes it a grassroots project.> Arguably, the only somewhat mainstream operating systems today that deserve that label are the *BSDs.
I think the word you're looking for is 'sidelined'.
by varjag
4/22/2025 at 8:47:27 PM
Meh not really. I'm running BSD with the very latest software. KDE, Firefox, Chrome, LibreOffice. All rolling unlike most Linux distros. I really don't care how 'big' my OS is.But yeah grassroots was perhaps not the right term. I meant the status quo, not the origin. I don't know what the right word is then though.
by wkat4242
4/21/2025 at 4:21:09 PM
What home router would be busy polling?by jeffbee
4/21/2025 at 4:52:00 PM
Someone who decided to turn their old PC into a router because a youtube video daid "recycling" an old PC is more green despite the massive power suck.by sandworm101
4/21/2025 at 5:47:24 PM
I feel like I'm repeating myself, but there are no people out there running Linux and unintentionally busy polling their network interface. This is something almost nobody does.by jeffbee
4/22/2025 at 2:14:03 AM
> The article name is somewhat misleading, since it makes it sound like this would also apply to desktop workloads.The article name is, Data Centers Can Slash Power Needs With One Coding Tweak: Reworking 30 lines of Linux code could cut power use by up to 30 percent
The article says, “It is sort of a best case because the 30 percent applies to the network stack or communication part of it,” Karsten explains. “If an application primarily does that, then it will see 30 percent improvement. If the application does a lot of other things and only occasionally uses the network, then the 30 percent will shrink to a smaller value.”
It seems you only read the HN title? If so, why bother to critique the article's title?
by mmooss
4/21/2025 at 6:47:00 PM
heh, will this become the equivalent of "in mice" for bio papers?by eichin
4/22/2025 at 3:03:04 AM
I appears that this academic is very good at public relations.They mix interrupts and polling depending on the load. The interrupt service routine and user-kernel context-switch overhead is tiny computationally and hence in power usage.
Also, most network hardware in the last twenty years has had buffer coalescing, reducing interrupt rates.
by RachelF
4/22/2025 at 2:17:56 AM
But linux use outside datacenters and server farms is irrelevant in terms of power use anyways I don't think anybody would be confused in the context of power usage.by casey2
4/21/2025 at 5:51:38 PM
So it's not even on by default, it needs to be turned on explicitly?by nottorp
4/21/2025 at 2:33:01 PM
you don’t have to say “in datacenters” when talking about linux, that is the obvious context in the vast majority of casesby jes5199
4/21/2025 at 2:49:30 PM
I'm reading this on an Android phone. The phone OS that has over 70% market share.by panzi
4/22/2025 at 2:19:07 AM
Linux is a tiny tiny part of the OS on phones. Power usage is most certainly not handled by android or linux in the vast majority of cases.Who in their right mind would leave something so critical to the success of their product to a general purpose OS designed for mainframes and slightly redesigned for PCs?
by casey2
4/21/2025 at 2:51:13 PM
Why you think so? Especially for HN readers decent chunk is using Linux.(I typed this on Linux PC).
by matkoniecz
4/21/2025 at 3:04:14 PM
Agree. On reading the headline, I was hoping it would extend my laptop battery life.by devsda
4/21/2025 at 3:14:44 PM
Same here, I have used Linux as my main for a long time. Though, I would imagine that data centers do have more instances than the desktops and laptops around the world combined.by tisdadd
4/21/2025 at 4:43:26 PM
And another one here!by helij
4/21/2025 at 3:21:34 PM
This is a naming mistake. You're taking "Linux" in the sense of "Linux Distribution", where the various competitors have seen most of their success in the datacenter.This is specifically a change to the Linux kernel, which is much, much more broadly successful.
by ajross
4/21/2025 at 2:38:32 PM
IME majority of linux systems are laptops and desktops.by ptero
4/21/2025 at 2:43:17 PM
Without looking at stats, I would think android phones.by jolmg
4/21/2025 at 4:46:47 PM
Android isn't Linux. While Android uses the Linux kernel, it's not a standard Linux distribution. It has its own user space and libraries, making it a distinct operating system.by billy99k
4/21/2025 at 5:08:56 PM
Linux is the kernel. Android uses a forked version of the mainline Linuxby hasperdi
4/21/2025 at 5:25:31 PM
Everyone uses a forked version of the mainline Linux.by murderfs
4/22/2025 at 3:16:19 AM
Some distributions apply patches to the kernel but they don’t fork it.by voidspark
4/21/2025 at 9:51:49 PM
This means it's not GNU/Linux, but that's not the only flavor of Linux. Alpine uses busybox and musl instead of GNU userland and glibc, but few would say it's not a Linux distribution.by kbolino
4/22/2025 at 4:36:59 PM
It's Android/Linux, not GNU/Linux.by panzi
4/22/2025 at 3:14:12 AM
Linux is a kernel, not an operating system.by voidspark
4/21/2025 at 2:43:36 PM
at least inside docker or wslby homarp
4/21/2025 at 4:30:53 PM
Docker wouldn’t be affected by this, the network stack is lower. WSL would, however.by jonhohle
4/21/2025 at 2:48:52 PM
IoT devices would like a wordby teeray
4/21/2025 at 3:44:19 PM
Indeed he has to.by Tireings