-
Notifications
You must be signed in to change notification settings - Fork 392
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update vmnetInt.h #297
base: workstation-17.5.1
Are you sure you want to change the base?
Update vmnetInt.h #297
Conversation
@@ -41,8 +41,8 @@ | |||
compat_skb_set_network_header(skb, sizeof (struct ethhdr)), \ | |||
dev_queue_xmit(skb) \ | |||
) | |||
#define dev_lock_list() read_lock(&dev_base_lock) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does change work for all Kernel versions or should it depend on a particular version?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it changes most of them.
For me it says now |
It works fine for me. Mine is Linux. |
Here on openSUSE Tumbleweed with 6.11.5, it compiles. But when loading vmnet, the module is loaded (listet with lsmod) but there is no log message on dmesg nor on journalctl. The network interface is also not usable in the vm. |
Yes, me too. But in my case additional changes to |
Hmm.. Let's make the repo owner to merge both the pull requests instead of one. So, mine has the vmnetInt.h and yours is bridge.c . |
Hi
Based on this issue #295, you can fix the problem with 'dev_base_lock' undeclared by just changing these 2 lines.
Please fix your code.
Thanks to @l0veormiss