LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 06-14-2022, 12:43 PM   #376
cwizardone
LQ Veteran
 
Registered: Feb 2007
Distribution: Slackware64-current with "True Multilib" and KDE4Town.
Posts: 9,168

Original Poster
Rep: Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342

VirtualBox has released a new Test build, version 6.1.35-151864.
https://www.virtualbox.org/wiki/Testbuilds
 
Old 06-14-2022, 05:21 PM   #377
cwizardone
LQ Veteran
 
Registered: Feb 2007
Distribution: Slackware64-current with "True Multilib" and KDE4Town.
Posts: 9,168

Original Poster
Rep: Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342
I don't think I've ever seen them move so fast.
VirtualBox has released a new Test build, version 6.1.35-151866
and a companion extension pack.
https://www.virtualbox.org/wiki/Testbuilds
 
1 members found this post helpful.
Old 06-22-2022, 07:39 PM   #378
kermitdafrog8
Member
 
Registered: Dec 2018
Location: Orlando, FL
Distribution: Slackware AARCH64 and X86_64
Posts: 340

Rep: Reputation: Disabled
VirtualBox for Slackware Users

Still waiting for 6.1.35 to release with source code.
 
Old 06-22-2022, 07:58 PM   #379
cwizardone
LQ Veteran
 
Registered: Feb 2007
Distribution: Slackware64-current with "True Multilib" and KDE4Town.
Posts: 9,168

Original Poster
Rep: Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342
Stable releases usually end in an even number so the next version should be 6.1.36.
We'll see...
 
Old 06-23-2022, 10:49 AM   #380
kermitdafrog8
Member
 
Registered: Dec 2018
Location: Orlando, FL
Distribution: Slackware AARCH64 and X86_64
Posts: 340

Rep: Reputation: Disabled
VirtualBox for Slackware Users

As long as I can build the kernel modules on 5.18.x I'm good.
 
Old 06-23-2022, 06:57 PM   #381
kermitdafrog8
Member
 
Registered: Dec 2018
Location: Orlando, FL
Distribution: Slackware AARCH64 and X86_64
Posts: 340

Rep: Reputation: Disabled
VirtualBox for Slackware Users

I found a way to build the kernel modules for 5.18.6 with Virtualbox 6.1.34 version.
 
1 members found this post helpful.
Old 06-23-2022, 07:27 PM   #382
fourtysixandtwo
Member
 
Registered: Jun 2021
Location: Alberta
Distribution: Slackware...mostly
Posts: 328

Rep: Reputation: 217Reputation: 217Reputation: 217
Quote:
Originally Posted by kermitdafrog8 View Post
I found a way to build the kernel modules for 5.18.6 with Virtualbox 6.1.34 version.
I just did the same.

Here's the unified diff to save others the trouble.

Code:
--- VBoxNetFlt-linux.c  2022-06-23 16:11:28.546566742 -0600
+++ VBoxNetFlt-linux.c  2022-06-23 16:00:29.347244260 -0600
@@ -2311,7 +2311,7 @@
                 vboxNetFltDumpPacket(pSG, true, "host", (fDst & INTNETTRUNKDIR_WIRE) ? 0 : 1);
                 Log6(("vboxNetFltPortOsXmit: pBuf->cb dump:\n%.*Rhxd\n", sizeof(pBuf->cb), pBuf->cb));
                 Log6(("vboxNetFltPortOsXmit: netif_rx_ni(%p)\n", pBuf));
-                err = netif_rx_ni(pBuf);
+                err = netif_rx(pBuf);
                 if (err)
                     rc = RTErrConvertFromErrno(err);
             }
 
2 members found this post helpful.
Old 06-23-2022, 10:04 PM   #383
kermitdafrog8
Member
 
Registered: Dec 2018
Location: Orlando, FL
Distribution: Slackware AARCH64 and X86_64
Posts: 340

Rep: Reputation: Disabled
Quote:
Originally Posted by fourtysixandtwo View Post
I just did the same.

Here's the unified diff to save others the trouble.

Code:
--- VBoxNetFlt-linux.c  2022-06-23 16:11:28.546566742 -0600
+++ VBoxNetFlt-linux.c  2022-06-23 16:00:29.347244260 -0600
@@ -2311,7 +2311,7 @@
                 vboxNetFltDumpPacket(pSG, true, "host", (fDst & INTNETTRUNKDIR_WIRE) ? 0 : 1);
                 Log6(("vboxNetFltPortOsXmit: pBuf->cb dump:\n%.*Rhxd\n", sizeof(pBuf->cb), pBuf->cb));
                 Log6(("vboxNetFltPortOsXmit: netif_rx_ni(%p)\n", pBuf));
-                err = netif_rx_ni(pBuf);
+                err = netif_rx(pBuf);
                 if (err)
                     rc = RTErrConvertFromErrno(err);


             }
I removed the _ni from the other line too. Not sure if that makes a difference. I just assumed it was referring to the same function.
 
2 members found this post helpful.
Old 06-24-2022, 04:50 AM   #384
ctrlaltca
Member
 
Registered: May 2019
Location: Italy
Distribution: Slackware
Posts: 336

Rep: Reputation: 392Reputation: 392Reputation: 392Reputation: 392
Quote:
Originally Posted by kermitdafrog8 View Post
I removed the _ni from the other line too. Not sure if that makes a difference. I just assumed it was referring to the same function.
You are correct, they were alias since a long time and the _ni function has been removed recently since there was no usage of it anymore inside the kernel:

https://lore.kernel.org/netdev/20220...linutronix.de/
 
3 members found this post helpful.
Old 06-28-2022, 02:00 PM   #385
cwizardone
LQ Veteran
 
Registered: Feb 2007
Distribution: Slackware64-current with "True Multilib" and KDE4Town.
Posts: 9,168

Original Poster
Rep: Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342
VirtualBox has been released a new Test build, version-6.1.35-152011 and a companion extension pack.
Both can be found at, https://www.virtualbox.org/wiki/Testbuilds

Edit in: Built successfully with the 5.19-rc4 kernel and runs as it should.

Last edited by cwizardone; 06-28-2022 at 02:11 PM.
 
Old 07-02-2022, 06:29 AM   #386
fourtysixandtwo
Member
 
Registered: Jun 2021
Location: Alberta
Distribution: Slackware...mostly
Posts: 328

Rep: Reputation: 217Reputation: 217Reputation: 217
A little followup on 5.18.6 with Virtualbox 6.1.34 on 15.0.

I was having issues with random segfaults when building larger slackbuilds and slackpkg randomly freezing on larger upgrade-all's, all in multiple VMs. These issues only started after upgrading to the 5.18.6 kernel.

Upgrading to the latest 6.1.35 testbuild seems to be the solution.
 
3 members found this post helpful.
Old 07-03-2022, 01:21 PM   #387
rkomar
Member
 
Registered: Mar 2022
Location: Sudbury, ON, Canada
Distribution: Slackware
Posts: 34

Rep: Reputation: 14
I can second the above the suggestion. I was having trouble with segfaults in a ubuntu64 guest on my slackware64-current host until I upgraded to the virtualbox test build. I didn't notice any problems when running my slackware32 guest, though. Thank goodness for this thread!
 
2 members found this post helpful.
Old 07-11-2022, 09:37 AM   #388
cwizardone
LQ Veteran
 
Registered: Feb 2007
Distribution: Slackware64-current with "True Multilib" and KDE4Town.
Posts: 9,168

Original Poster
Rep: Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342
VirtualBox has been released a new Test build, version-6.1.35-152223 and a companion extension pack.
Both can be found at, https://www.virtualbox.org/wiki/Testbuilds


Edit in: Built successfully with the 5.19-rc6 kernel and runs as it should

Last edited by cwizardone; 07-11-2022 at 11:25 AM.
 
2 members found this post helpful.
Old 07-20-2022, 08:22 AM   #389
cwizardone
LQ Veteran
 
Registered: Feb 2007
Distribution: Slackware64-current with "True Multilib" and KDE4Town.
Posts: 9,168

Original Poster
Rep: Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342
The latest stable release of VirtualBox, version 6.1.36, is now available.

The change log, https://www.virtualbox.org/wiki/Changelog-6.1#v36

The download page, https://www.virtualbox.org/wiki/Downloads


Edit in: Works with both the 5.18.12 and 5.19-rc7 kernels.

Last edited by cwizardone; 07-20-2022 at 10:22 AM.
 
3 members found this post helpful.
Old 07-27-2022, 06:46 AM   #390
cwizardone
LQ Veteran
 
Registered: Feb 2007
Distribution: Slackware64-current with "True Multilib" and KDE4Town.
Posts: 9,168

Original Poster
Rep: Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342Reputation: 7342
VirtualBox has released a new Test build, version-6.1.37-152565 and a companion extension pack, version-6.1.37-152564.
Both can be found at, https://www.virtualbox.org/wiki/Testbuilds

Last edited by cwizardone; 07-27-2022 at 06:49 AM.
 
1 members found this post helpful.
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] virtualbox is installed along with virtualbox-dkms and virtualbox-ext-pack and linux-headers-generic, but error for no /dev/vboxdrv Astral Axiom Linux - Software 2 03-04-2019 08:09 PM
Issues activating virtualbox within my linux fedora 25 virtualbox on my windows device. QuantumChaos Linux - Virtualization and Cloud 5 02-21-2017 08:31 AM
Move Slackware guest from a Slackware hosted Virtualbox to Windows hosted Virtualbox? damgar Slackware 1 08-07-2012 11:28 PM
virtualbox or virtualbox ose manuleka Linux - Software 2 06-11-2009 02:56 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 08:30 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration