The reason "downsized" packet performance is important is that TCP-ACKs and other small packets exist organically. So packets-per-second is actually a relevant and important metric for router performance. With sufficiently large payloads, throughput is just a direct memory access benchmark because you're just copying stuff around and not doing that much "thinking."
@jamess178722 сағат бұрын
DPDK has a way to handle this, but you're right, it's optimized for heavier throughput, with smaller packets seeing higher latency then you would normally see. (Set your icmp packet sizes larger and you'll see the latency problem disappear) Think about DPDK like more of a "pipe" connecting the two end devices together, it doesn't matter how much volume of fluid you put in there and it'll get there in a timely fashion, especially if there is heavy throughout on the system. DPDK works great for things like SCTP. 🤘
@jfbeam3 сағат бұрын
Properly efficient routing (and switching) is done WITHOUT copying. The hardware receives the frame into memory, and that's where it stays. Any forwarding is done by reference to that memory buffer. Copying is what kept linux and BSD networking so slow for so long.
@alexgartrellwork33519 минут бұрын
@@jfbeam that’s kind of true but irrelevant because the Direct Memory Access thing I’m talking about is how the NIC gets the data from main memory via PCIe. en.m.wikipedia.org/wiki/Direct_memory_access
@BitZorgКүн бұрын
I'm very happy to hear that NXP was willing to open source what would be needed, both options seem very promising to me.
@hubertnnn18 сағат бұрын
Yep, with them open sourcing the necessary parts, proprietary solution starts to feel better than the vpp, due to compatibility with commonly used tools.
@jfbeam3 сағат бұрын
It's not so much "open source" as them not caring what you do with the SDK after your $40k check clears. (when almost everything is in a microcode blackbox, there's no secrets in the SDK.)
@BobWidlefish21 сағат бұрын
High-end networking geek here. Small packet performance is critical for core internet equipment. If you can’t send 14.4m 64 byte frames plus receive 14.4m 64 byte frames at the same time: your not doing 10 GbE. Bulk throughout is trivial and doesn’t require any fancy hardware: a mundane PC can easily do tens of Gbps with large packets.
@lyth1um19 сағат бұрын
there is linux vpp stuff, there is a guy doing a ring with x86 of the shelve hardware.
@desperateopportunist58619 сағат бұрын
@@lyth1umDo you know which guy is doing that stuff? I want to check it out
@Galileocrafter17 сағат бұрын
That’s what i have been saying all along. 10 Gb/s the easy way is 812743 Mpps with 1500 byte MTU packages. 10 Gb/s the hard way is 14,88 Mpps with 64 bytes MTU packets. 10 Gb/s the realistic way is a realistic IMIX traffic profile.
@bennetb01Күн бұрын
It's not that the packet size needs to be downsized but the PPS that VPP can do. There are a lot of things that use small packets like DNS, etc and there is specifically a test called IMIX. It's not perfect but the idea is to test throughput using various packet sizes that mimic more of a real world solution. A lot of commercial routers can put up huge numbers with 1500 (and more with 9000) byte packets but even when you MTU is set that high you will find the average package size is much lower. It would be good to know the performance of the router with 64-byte packets (the lowest) as well as IMIX (or something else that is not the ideal max packet size). Again it doesn't matter what your MTU is set to, it's the average sized packet. Thinks like DNS or ACKs are going to be a lot of smaller packets.
@minifig40418 сағат бұрын
Thank you for fighting through this. I'm really glad to hear you have fully open-source options on the table. CPU microcode being closed is not new, and I consider that just something that you have to put up with in this world (so far).
@salvadorseekatzrisquez2947Күн бұрын
The encryption-decryption part is really impressive
@morsikplКүн бұрын
That's true! Even many enteprise solutions guarantee about 3Gbps when encrypting/decrypting traffic on 10Gbps interface!
@BrinkGGКүн бұрын
Well I'm not getting anything done for the next 21 minutes. EDIT: I'm Glad NXP is allowing their binaries to be shared under the project's licensing. That's huge! Looking forward to seeing future parts of this project. :D
@originaljws21 сағат бұрын
Not only am I excited about the results (which are solid. nicely done.), I'm so grateful you listened to the comments here and the other people following this project. Thank You for listening. I can't wait for availability of these routers. This is a fun project to follow and at the end of this rainbow is a useful and maintainable tool.
@spx232718 сағат бұрын
Tomaz talks like an US drill sergeant, I am always stressed out after watching his video's. Sometimes I even start doing push ups 😅
@gcs8Күн бұрын
Nice, I am used to only seeing DPDK and it's other friends in the data center as part of NSX-T, I never brought it up as I only ever saw it for specific NICs and not on any embedded stuff outside of something like a DPU. I think this would be a super cool thing to get into more common use. I think if you make the router OS able to be virtualized with the same feature set when paired with a supported NIC (it was mostly Intel and Broadcom last I checked) that could really open up home lab stuff for some cool things like "pocket universes" or just an easier way to play with OSPF/BGP with enough oomph behind it to make it fun for the lab. This could open a lot of SDN fun up.
@danielberes309916 сағат бұрын
If you want the VPP interfaces to be visible in the kernel, you can use lcp plugin. Also using 2 workers for VPP could give you better performance, but there is the price of higher consumption...
@woobm13 сағат бұрын
Choosing DPDK & VPP and open sourcing everything is what makes this project to me very interesting! I´m glad you don´t go with a HW specific solution. This will make future HW updates much easier. I also hope you will give a push to DPDK adoption for other open source projects, helping to improve home networking equipment performance. As a side effect this might help to save some energy and resources. Bravo!
@ludufre9 сағат бұрын
Even though I am from Brazil and consequently will not be able to buy it when it is finished because of our import tax, I am following this project closely. I am amazed to see it being built in public. Congratulations to everyone involved.
@chrisdixon524112 сағат бұрын
Pleased to hear that NXP responded positively to the feedback and even could suggest an alternative
@mazensmz21 сағат бұрын
I liked your video because you put the answer in the title.
@SkeptiSquid20 сағат бұрын
Hats off to you, this is a great development.
@jfbeam2 сағат бұрын
For those having trouble following along, DPDK is network drivers and stack done entirely in userspace. ('tho in this case, it sounds like they still had hardware offload enabled.) For the record, there is nothing one can do in userspace that cannot be done faster in kernel space. But kernel code requires a great deal more detail. When your crap-code crashes in userspace, you just run it again. When your crap-code crashes in the kernel, at minimum, you'll need to reboot, at worst, _power cycle_ the whole system. (and in userland you can use whatever stupid programming language(s) you want.) In general, interrupts are significantly more efficient than polling. A "while(1) { are we there yet? }" system never stops, so it never goes into any low-power state. If your loop is "check everything and sleep (wait 1ms)", now you've artificially created latency and jitter. (hint: how does it know when to wakeup? Interrupts.) On an active networking device, one would _assume_ there's an unending stream of traffic to process, but there isn't; there are sizable gaps between packets, and a takes time to send and receive frames where the CPU isn't involved. Similarly, hardware routing and switching systems are unimaginably faster than a general purpose CPU. I've thrown away single-digit-dollar chips that did IPv4 route lookups in a single clock cycle. DRAM is not TCAM. No ARM core can do a route computation (much less a full table lookup) in a single clock cycle. In a consumer level device, with consumer level traffic, that's not such a big deal.
@tomazzamanСағат бұрын
Thank you for the explanation!
@raresmalene5569Күн бұрын
64 sized packets, or it is not 10gbit/s,small packets are quite important, if it doesn’t do it with the rfc 2544, on imix and both 64 packet size, not gonna do anything better than a 100 dollar router. Max mtu on your device is just the limit at which the computer starts to fragment the packets, it is like having an earthmover( mtu 9000) vs a wheelbarrow(mtu 64), yes you can carry more faster, but you are building a clay pot, you can not use an earthmover to carry the clay
@originaljws21 сағат бұрын
Recognize he's capping the CPU performance and testing the performance limits. Internet-Mix packet sizes and full clock rate operational benchmarks are obviously important as you point out, but that doesn't make a good thumbnail. All zero payload benchmarks are almost as useless as all max(MTU) without more context, I'm impressed with the metrics he shared, and am pleased to see the positive response to the kernel/source license problems. I look forward to this project continuing to develop and becoming a tangible, order-able device.
@hubertnnn18 сағат бұрын
I see two possible issues with this approach. First is the power usage and heat generation, since one of the cores is constantly at 100% even when your network does nothing at all. Second is possible latency increase, since when you poll instead of using interrupts then you don't respond to events immediately when they happen but on the next poll, so time between polls is your extra latency. This one may not be an issue, since 100% cpu suggests busywaiting without any sleep, but I would still like to see a test confirming if latency is not increased.
@BirknerAlex11 сағат бұрын
DPDK has no impacts on latency under real world circumstances. Many datacenters (ISPs) running DPDK applicances for DDoS mitigation. At my previous employeer we had a DPDK appliance to protect game server traffic from DDoS and maybe you know that but game server traffic is one of the most challenging things when it comes to latency. And guess, it worked like a charm, it used iBGP to route entire networks thru the appliance after being processed from the router before hitting the core switching stack.
@ZleekWolf6 сағат бұрын
@@BirknerAlexI'm sure ya right that latency isn't an issue. The cores only job is busy-waiting, when not already processing data currently anyway. It even saves on ISR entry/exit delays, so it should be rather faster than slower in my view. I'd still share the concern about the wasted energy tho. Sure those cores are more efficient than some beefy x86 Server CPU, but they're not "free", I mean that's why ARM also has power saving modes and dynamic frequency scaling for example. I also don't whine about one core on a 64 core server with a daily load overage of 40 being dedicated to burn 1% more energy in my rack at work, and that core will have plenty of real work to do as well. But let's be honest, any home router is going to spent 99% of it's time idling, or exchanging a few dozen packets a second processing background noise. I got a 6 core Xeon E-2146G in my server sipping like sub 10-12W System total with the 10G NIC (excluding SSDs and some other extensions/peripherals, don't have exact numbers in my head anymore rn), so this router core HW (without Wi-Fi and other stuff ofc) hopefully ain't gonna be sipping such numbers for way less performance, just because it's busy all day checking if maybe finally someone has a packet for DPDK. I'm very interested in this project, because hosting/running your Router/Firewall/Networking on your main server has plenty downsides, and I still run a separate AP for Wi-Fi ofc, but not if I'd be investing in yet another 24/7 energy hog 😅
@sasjadevries2 сағат бұрын
Polling *can* have way less latency than interrupts. Interrupts are good for occasional events, but when you have a lot of them you have to do context switching for every interrupt separately, and finish performing the previous thing, before you can take on the next one. When polling, you can bunch multiple events together into an array/vector, and process them in one go. So the result is that you have worse latency in optimal conditions and low load, but better performance under heavy conditions. In Computer graphics the same kind of optimisation is used. Graphics drivers when receiving data/drawcalls used to wait for more data, to send a bigger chunk of data, and the graphics driver would need some algorithm to estimate how much to wait, and how often to send data to GPU; but with the introduction of Vulkan this task (along with other tasks) moved to the application/game. And a lot of other optimisations and tweaks that used to be done in the driver (Kernelmode) during the directx11/openGL days, are now done inside of a game (Usermode) thanks to Vulkan. Do you see the resemblance to where DPDK+VPP is going 😉?
@schectermf35016 сағат бұрын
Great video, thanks for covering DPDK and VPP in depth. I've spent many hours reading and always been frustrated with how developer-centric the documentation is. Really looking forward to getting hands on with your product! Really hope VyOS will pull finger and get VPP working too in mainline.
@Seandotcom22 сағат бұрын
lmao as an embedded developer I totally feel the cross-compiling mess
@SwissPGO5 сағат бұрын
A hacker that somehow gets access to the terminal will be instantly lost because he can't use ping 😂
@geogmz827711 сағат бұрын
😊 I'm glad everyone said it.. PPS vs Throughput.. As a former WISP owner that used Mikrotik at first 😂 I had my days of sadness with Tilera vs MIPS vs ARM!
@sekanderbast452Күн бұрын
First, I‘m very impressed by the performance! One question though, as one Core is now constantly pegged, in what way does this impact power consumption? Is there a notable difference between this solution and the old proprietary sdk when at idle or when routing?
@xdevs23Күн бұрын
It's pegged, but probably not actually using much power. I guess it's just busy-waiting on packets, which should be just some conditional branches and compares, nothing too crazy. Nevertheless, it's taking CPU time that could have been used elsewhere.
@tomazzamanКүн бұрын
You're right, the core is at 100%, but it's basically just a constant loop of polling the interfaces.
@c0p0n13 сағат бұрын
I'm fine with the compromise that the microcode be proprietary. I do think the sources should be available, or at least they should have them security-audited and the results published.
@0zux45Күн бұрын
I really like performance graphing with grafana/prometheus or whatever else. I assume vpp already has the capabilities for an external software to pull that info?
@0zux4510 сағат бұрын
my previous answer was hidden, cause i linked to the vpp manual. Short answer: yes, yes there is. Long answer: they have a python package that can access a lot of statistics, it's really easy to use!
@cjcox8 сағат бұрын
Yeah, this was a bigger issue (10Gbit) in the pre-Nehalem days (talking DC side where you have more powerful processors, there was a day when there were struggles). Just like entropy exhaustion was also a huge issue. Advancements have made those things less of an issue.
@uis2463 сағат бұрын
Try to test flow offloading in kernel too. It might allow to process 10 Gb/s on vanilla kernel without any additional userspace software.
@RichardLofty10 сағат бұрын
1ghz is not that far from the today's standard 3ghz. The absolute recrod maximum today is 5ghz. I would understand a 100x difference, but everyone seems to forget how fast current tech is. And this is forgotten because of bad software.
@MarkoCloudКүн бұрын
Sweet! RoutSI is going to be super power efficient if that's all it takes to run 10Gb!
@outseeker18 сағат бұрын
mm i like what a few ppl have mentioned in the comments here about testing with 10gb/s each direction, with the data being all tiny packets like you might see on a super busy network. 10gb/s in a solid data stream isn't the same as 10gb/s of all varieties of packet hammering the device?
@deeeezel21 сағат бұрын
I need to get my hands on one of these router when it available
@JoJoDramo-ih7qk15 сағат бұрын
Pardon my ignorance, would it make any sense to replace the current Linux stack for dpdk + vpp for perf? Or would create a big hole in security in normal cliental pc without any real improvement because muticore bulk x86 CPUs?
@xdevs23Күн бұрын
I didn't know DPDK existed. Looks very promising. However, it feels like it is non-standard. I don't know if administrators really want to deal with DPDK/VPP if Linux already provides really good infrastructure.But hey, as long as it works and doesn't interfere with what I do - that's fine. It would be interesting to see the latency on this. The bandwidth may be high but latency is also something to keep in mind.
@jamess178722 сағат бұрын
DPDK is used in server environments where the host OS doesn't need to interfere with the data, when you can tunnel the traffic to separate containers or guest VM's. Cellular infrastructure/mobility cores for LTE infrastructure do this to optimize hardware requirements (and space available). It's really cool tech, weird to think about it's complexities tho. Not sure how Linus or any of the kernel maintainers agreed to implement it 😂
@hubertnnn18 сағат бұрын
Never heard of it either, but the interface looks like CISCO's router command line interface, and since it was made by cisco, I wouldn't be surprised if it actually is their router CLI. And if it is, then administrators already know it. It would be a bit worse for non administrators, because cisco's cli is a pain to learn with many non obvious things.
@xdevs235 сағат бұрын
@@hubertnnn but administrators don't necessarily know how to work with Cisco. I also don't quite trust Cisco as these are big corporations and you don't really know what you're getting into and it could turn out to be a huge enterprise mess.
@Adam13069418 сағат бұрын
All of that work for 2xSFP+ & 3x2.5GbE?
@sezam84Күн бұрын
Nice Video… are You planning to put this project on kickstarter or similar platform? I am interested in the product :)
@jamess178723 сағат бұрын
I ran an EPC (vEPC) LTE core using DPDK. It was "black box" aside from the usual sysadmin/sysop stuff. It's cool how fast you can push your hardware. Vendor had some weird DPE (data plane) bug but that's aside from the point.
@hasanismail.Күн бұрын
also huge fan of the project
@YonatanAvhar17 сағат бұрын
How does having a single core pinned to 100% affect "idle" power consumption over using Linux kernel based networking?
@SwissPGO5 сағат бұрын
Would some variable polling frequency be able to lower the worry some have about power consumption? With few traffic, the frequency could be lower with up to 100ms sleep, and if packets arrive, the sleep is eliminated ?
@pianoman4Jesus21 сағат бұрын
Oh wow! The magic of DPDK+VPP! +1 vote to go in that direction from me. And I do not do Twitter, or X, or BlueSky... I hope you still check your old fashion email address for when I need to get in touch with you outside of a KZbin reply comment. 😎 I will next send this to my "Right Hand Man in America" who built our custom Linux firewall platform 20 years ago. I really like your enthusiasm dedicated to this much needed space in the IT industry. Thank you SO much! Over time, I hope you will have enough volume growth that you would consider a next level up model with more network ports. 🥳🧐
@D9ID9IКүн бұрын
I guess Mikrotik like rb4011 or rb5009 can do that without any issue
@EndreSzasz19 сағат бұрын
100% non stop on one core... there goes power efficiency and heat. So you keep the CPU pegged 24/7 for that 5 minutes of 10Gb transfer you do per day.
@DanielRodriguez-ff5cs2 сағат бұрын
Thanks!
@tomazzaman2 сағат бұрын
Thank you! 🙏
@MikkoRantalainen3 сағат бұрын
Wouldn't it be enough to use Linux kernel and io_uring interface to minimize the overhead you normally get with interrupts?
@Quozul16 сағат бұрын
I'm a bit concerned about the 100% core usage, won't it increase the idle power usage of the router? 🤔
@tomazzaman13 сағат бұрын
Negligible. Maybe half a watt.
@johnjbateman9 сағат бұрын
Where do you buy your custom keyboards now?
@MikkoRantalainen3 сағат бұрын
UEFI and ACPI which are used in regular PC hardware instead of device tree are the worse option technically. A superior way would be to have a device tree provided by the BIOS and there would be no need for UEFI or ACPI after that.
@foxfoxfoxfoxfoxfoxfoxfoxfoxfoxКүн бұрын
What kind of performance difference is there between VPP and native linux packet forwarding? What happens performance wise if you switch the network driver to polling mode in linux?
@qdaniele97Күн бұрын
My guess would be that at zero to very little traffic, Kernel networking with interrupts would be slightly more efficient/faster, but at any level of traffic above that VPP would get the advantage. That because, even with no traffic at all, VPP would still be polling NICs to know if there's something new while the kernel would be doing other things waiting for NICs to tell it something happened. With more traffic instead things wouldn't change much for VPP, but a lot for the kernel which would be receiving lots of interrupts and having to constantly stop what it was doing to listen to what NICs have to say.
@hubertnnn18 сағат бұрын
@@qdaniele97 I see that as well. Maybe release 2 versions of the OS/firmware, one with classic Linux kernel (the default one) and one with VPP.
@qdaniele9713 сағат бұрын
@@hubertnnn That could be an option (or you could install your own OS). But I think it's likely a router will always in a situation where VPP has the advantage
@sledgex919 сағат бұрын
I wonder why DPDK chose to constantly poll the interface vs asking the kernel to notify it when a packet arrives. And then continue in userspace. Aka use the kernel only for the raw packet notification.
@triffid0hunter17 сағат бұрын
Context switching is expensive - en.wikipedia.org/wiki/Context_switch#Cost
@sledgex916 сағат бұрын
@@triffid0hunter Doesn't polling need context switching too? I mean each time you ask the kernel "is there a packet yet?" you enter momentarily kernel space for the kernel response. I could be totally wrong though.
@Bronko1534414 сағат бұрын
@@sledgex9the whole point is to allow direct device-userspace interaction without the kernel being involved
@DubitoErgoSum-pd6cr10 сағат бұрын
Damn, yes!
@MoraFermi15 сағат бұрын
dpdk, yep, called it.
@FredrikRambris17 сағат бұрын
What performance can we expect using stock linux drivers and networking stack?
@tomazzaman13 сағат бұрын
I was still able to get 10Gb, but never on a single thread, those get to about half that.
@AnIdiotAboard_14 сағат бұрын
Fun Fact many 10 Gbps 48 port switches used to run on a 333 Mhz Single core CPU. So 1200 Mhz should piss it without any stress :)
@heheelium13 сағат бұрын
Those do HW offloading.
@mrlazda6 сағат бұрын
But they have switching ASIC, and CPU is there only for configuration and housekeeping functions. All switching is done in ASIC, not in the processor. For example, for 48 10Gbps switch, you can use, for example, Maevell Prestera ASIC and processor will be at 0% usage at Layer 2 ans Layer 3 wire-speed switching. SoC, in this case, is missing that functionality. Basically, on a good day, in reality, this SoC is gigabit capable L3 switch (comparable ARM SoC are sub gigabit in real world user case, most are in range 300-600Mbps)
@kristopherleslie8343Күн бұрын
What about L3
@tomaszjeniec16 сағат бұрын
What’s the power consumption change with that core always blasted?
@tomazzaman13 сағат бұрын
Negligible difference. Around half a watt.
@LuminousWatcher4 сағат бұрын
So on twitter a post was called a tweet. Is a BlueSky post called a BS?
@yerdude16 сағат бұрын
Tomaž is gold
@trendingtopicresearch944012 сағат бұрын
Also with 50 firewall rules?
@shephusted271419 сағат бұрын
can you make one more enterprise with more ram etc - cheap 100g router/switch - i think quite a few people will start going from 10g to 100g fiber - it is the first place you invest
@maksiodzidek1Күн бұрын
good job
@ms264915 сағат бұрын
What about the thermals now that one core is pinned at 100% all the time?
@tomazzaman13 сағат бұрын
Adds about half a watt to total power consumption. Negligible, but once we have the cases manufactured, we'll of course run the proper tests to make sure it really doesn't impact anything.
@ms264911 сағат бұрын
@tomazzaman does the software only work with polling? I haven't done much with networking on embedded linux or device drivers myself but it seems not ideal to constantly poll for data (but i have 0 experience with this so who am i to judge)
@Saturn288812 сағат бұрын
I have no clue what's happening in this video anymore. So many acronyms. I clicked on it not knowing what I was getting into, and then it got into topics I have no clue about. I've never heard of your channel before, so this is all random for me, but I eventually got very lost trying to figure out what the video is even talking about.
@noxos.Күн бұрын
Can you make a homelab tour
@CRCinAU18 сағат бұрын
Soooooo, no iptables? no nftables?
@tomazzaman13 сағат бұрын
Correct. VPP does come with it's own firewall though. Both statefull and stateless.
@georgehooper42923 сағат бұрын
Very nicely done. From the outside it seems a long way to get this type of through put. It looks like you added a few more gray hairs setting this all up. But in the end it works. Well done! I realize you might have a limited lab environment but it would be interesting to setup all 10GbE ports with a iperf system. I think there was 4 in your build (sorry poor memory). See if you can push 10GbE per port through the router. You might have a 2x2 setup for iperf testing. The idea is to see at what point you saturate that single core, and then need to dedicate a second or third core to networking while keeping the remaining core(s) for the kernel and system management (snmp, dhcp and such). I think its a good plan to keep one of the interfaces (1GbE) connected to the kernel as an out of band management interface. This will keep port forwarding of data interfaces offline until the system is fully booted and the system status/setup is confirmed.
@chewbaccabg5 сағат бұрын
Sure.. now put some vlans, firewall rules and so forth & try again :)
@scottxiong5844Күн бұрын
Nice!
@massimilianogilli116410 сағат бұрын
Isn't this quite a clickbait title?. The CPU doesn't do shit since everything is offloaded as you demonstrated many time
@fgfgfgfgfgfg100313 сағат бұрын
Single core can't, single core plus a lot of asics additions - yes
@matjazmuhic55016 сағат бұрын
Sixpthy.... Ptheven...
@pcislockedКүн бұрын
perfect timing for... well, its 1am but a good video is a good video ig
@SB-qm5wg22 сағат бұрын
Mikrotik crs305 has 4 SFP+ ports and runs on a tiny 1-core 32bit 800mhz cpu.
@EndreSzasz20 сағат бұрын
That is a switch, the packets don't get to the cpu, switch chip deals with them. If they go to the cpu it can barely do 1Gb. Check the test results on their product page.
@ShadowFandub21 сағат бұрын
HAHAHAHA
@hasanismail.Күн бұрын
4rth
@AtTheLetterM21 сағат бұрын
Please no white backgrounds im dying .
@Holy_HoboКүн бұрын
Bluesky is cringe
@chimpo131Күн бұрын
this guy also sounds like such an insecure douc he whenever he talks 😂
@rapamuneКүн бұрын
It has virtually already turned into an echo chamber with extreme moderation. Only viable for radical progressive left users at this point in time.
@PR-cj8pdКүн бұрын
There's nothing wrong with twitter
@marshallb521023 сағат бұрын
xitter is cringe
@eat.a.dick.google21 сағат бұрын
X is the worst cringe.
@jackipiegg20 сағат бұрын
You can do 10g but refuse to do 2.5g instead of 1g facepalm
@hubertnnn18 сағат бұрын
He said it in one of the previous videos. That CPU have modes with specific lists of interfaces in each mode. You cannot just distribute the bandwidth as you please.
@jackipiegg18 сағат бұрын
@@hubertnnn Its 2024 and he's still releasing 1gbe nic and calling it "pro". instant fail and no one will buy it.
@zackey_tnt16 сағат бұрын
You are one of those new fangled modern day Grinches aren't ya
@cheako9115522 сағат бұрын
Not great for a home network for 1-core 100% 24/7? Interrupts and *DMA are wonderful, why go back to a world without them? * You shouldn't be able to get physical addresses from userspace.
@hubertnnn18 сағат бұрын
Interrupts use CPU resources. They are good for low traffic, but for high traffic polling is better. A perfect situation would be the ability to disable interrupts until all data in the queue is processed. Some microcontrollers I worked with had this feature where you would receive just one interrupt and no more until it is cleared (which happens after queue empties).
@cheako9115516 сағат бұрын
@@hubertnnn because 100pct is free...wtf u talking about.
@Triro7 сағат бұрын
Lol bluesky is just as worse now as twitter.... So you've officially lost me on the project.
@craftefixxxxКүн бұрын
first,
@YonatanAvhar17 сағат бұрын
How does having a single core pinned to 100% affect "idle" power consumption over using Linux kernel based networking?