-
fran
Hello; I'm trying to add open (public) Wi-Fi networks to /etc/wpa_supplicant.conf alongside my WPA-enabled networks. I've read that this should work as long as I make sure key_mgmt=NONE in that network= block. But I've tried on three different public networks and not been able to get an IP address from DHCP. My configuration:
bsd.to/wGZK/raw
-
VimDiesel
Title: wGZK
-
fran
The "authmode WPA privacy MIXED" seems like it might be relevant? I should add that the WPA-enabled networks in my wpa_supplicant.conf work seamlessly.
-
rtprio
i would set ifconfig_wlan0="dhcp", i don't think wpa belongs there unless you have a citation on that
-
fran
rtprio, but then I'd need to edit rc.conf to add and remove it every time I switch between secure and insecure networks, right?
-
fran
This is a laptop, so I'm trying to make switching between networks I've set up (at coffee shops and the like) fairly seamless.
-
fran
s/set up/specified the configuration for/
-
rtprio
fran: no
-
rtprio
key_mgmt=NONE in the wpa_supplicant section
-
rtprio
for that AP
-
fran
I have that, yes.
-
rtprio
it should work
-
fran
With "WPA" removed from my ifconfig_wlan0 line in /etc/rc.conf, I can connect to that non-secure network. But now when I uncomment my WPA-enabled network in wpa_supplicant.conf, the system doesn't even try to connect to that SSID.
-
rtprio
there's wpa_cli to interact with wpa once it's running; if you need to change a non-trivial times, i'd suggest figuring out some of its basic usage
-
rtprio
you should be able to leave all network uncommented in your wpa_supplicant.conf
-
fran
I was under the impression that "WPA" had to be in that line for wpa_supplicant and its automation to get involved at all. Without it, I think it's just defaulting to the last SSID I specified.
-
fran
I had my secure network commented out while I was trying to get the nonsecure network working.
-
rtprio
ther's no point in doing that
-
rtprio
what's the open wifi section in wpa_supplicant.conf ?
-
fran
I included it in the paste above.
-
fran
It looks like I'm able to get the nonsecure network working with wpa_supplicant *if* I manually run `ifconfig wlan0 authmode open`.
-
fran
So it appears that the problem is that wpa_supplicant isn't changing the authmode to open when it connects to a nonsecure network.
-
rtprio
-
VimDiesel
Title: Solved - wifi/wlan0 will not connect to open network | The FreeBSD Forums
-
rtprio
huh
-
rtprio
i swear i had this working before
-
fran
-
VimDiesel
Title: freebsd-src/driver_bsd.c at releng/13.1 · freebsd/freebsd-src · GitHub
-
fran
I'm guessing maybe this is a bug?
-
rtprio
maybe; see if it's in bugzilla
-
fran
Nothing that I can see.
-
parv
Is there a temporary holding place of links here? Mark M noted the issue for "FYI: upcoming 13.2-RELEASE vs. 8 GiByte RPi4B's based on U-Boot 2023.01 recently in use, given UEFI style booting",
lists.freebsd.org/archives/freebsd-stable/2023-February/001129.html
-
VimDiesel
Title: FYI: upcoming 13.2-RELEASE vs. 8 GiByte RPi4B's based on U-Boot 2023.01 recently in use, given UEFI style booting
-
parv
... in case people would ask about it
-
Grell
Hey
-
simernes
I have a ROCKPi SE single board computer, trying to get ethernet to connect. I can see in ifconfig dwc0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500, but no IP address. Have ifconfig_dwc0="DHCP" in rc.conf. Any suggestions?
-
parv
Have you set "defaultrouter" in "/etc/rc.conf" or added "default" route otherwise?
-
simernes
I haven't, and I can only see `defaultroute_delay="5"` in /etc/rc.conf. It's a somewhat prebuilt custom image for the platform from personalbsd.org, so not sure if it could be set elsewhere
-
parv
Either you would need to add "default" route or have DHCP server send one to you
-
daemon
or have SLAAC do it for you for ipv6
-
daemon
if you do have dhcp
-
daemon
try 'dhclient dwc0' from console
-
daemon
or
-
daemon
ifconfig dwc0 inet LAN_IP/24 && route add default GATEWAY
-
daemon
to check its talking to the network properly
-
daemon
then add what you found in rc.conf as parv suggests
-
parv
See the "dhclient.conf(5)" manual page
-
simernes
you mean if my router has DHCP? Would GATEWAY be something like 192.168.1.1?
-
parv
Perhaps
-
parv
Do you have any other computer connected via DHCP where you could check various configuration?
-
simernes
No DHCPOFFERS received from dhclient
-
simernes
Yes indeed
-
daemon
as a long shot try marking the interface up explicitly
-
daemon
ifconfig dwc0 up
-
daemon
also check if there are lights on the rj45 port
-
daemon
just to prove the cable its self is fine and in a working port on the switch
-
simernes
I tried a debian image before and it connected automatically. I didn't check if it was DHCP unfortunately, but I would assume
-
simernes
It's up
-
parv
Check the values for "default" or "gateway" (along with DNS servers) on the other computer. What is OS on the other 'puter?
-
daemon
netstat -rn on most computers will show the rotuing table
-
daemon
including the default
-
Remilia
ifconfig itself should tell you if the link is up
-
parv
daemon, Hey that works on Windows 10!
-
daemon
yup :)
-
daemon
ipconfig /all
-
daemon
would as well though
-
Remilia
simernes: what does ifconfig say about link speed?
-
simernes
I have one Void Linux and one Ubunutu machine. It looks like the default gateway is 192.168.1.1
-
Remilia
there should be a line like "media: Ethernet autoselect (1000baseT <full-duplex>)"
-
daemon
so your lan is likely to be 192.168.1.0/24
-
parv
daemon, I know about "ipconfig"; just never had tried "netstat" before
-
simernes
Remilia: `media: Ethernet autoselect (none)`
-
Remilia
simernes: you do not have a link up
-
Remilia
check cable
-
daemon
parv, wonder if -rn4 would work too
-
daemon
just to limit the returns
-
simernes
The cable is blinking and as I said it was working when I booted a more preconfigured debian image. Could it still be faulty?
-
Remilia
simernes: your dmesg probably has no 'dwc0: link state changed to UP' messages either
-
Remilia
it might also be a problem with the interface driver in the kernel, of course
-
Remilia
you could try manually specifying link speed
-
simernes
you're right, there's only "lo0: link state changed to UP". But I ran `ifconfig dwc0 up`, I thought that would up it
-
Remilia
see dwc(4) for possible 'media' options
-
parv
daemon, "-4" did not work
-
Remilia
simernes: ifconfig iface up means the interface goes up in the OS
-
Remilia
media is *physical* link
-
Remilia
when it says (none) it means no link was negotiated
-
simernes
netstat -rn shows "0.0.0.0/8 link#1 U dwc0"
-
Remilia
try unplugging the Ethernet cable and plugging it back in
-
Remilia
netstat will do nothing, you do not have any physical link
-
Remilia
'media: Ethernet autoselect (none)' means 'cable is not connected or faulty' or 'the NIC driver does not work correctly'
-
Remilia
well, I mean, it also can mean 'remote side has the port disabled or is just turned off', of course
-
parv
Hunh. The online manual page accessor,
man.freebsd.org/cgi/man.cgi?query=d….1-RELEASE&arch=default&format=html, does not know about "dwc" nor did for 12.0-release
-
VimDiesel
Title: Apropos dwc
-
Remilia
check `man 4 dwc` for possible options for media and try something like `ifconfig dwc0 media 100baseTX`
-
Remilia
simernes: check `grep dwc0 /var/run/dmesg.boot` for any error messages
-
parv
-
VimDiesel
Title: Solved - RockPro64 network adapter... | The FreeBSD Forums
-
simernes
thanks parv, I tried the `ifconfig dw0 media 1000baseTX mediaopt full-duplex` before but also didn't work. Maybe I should boot into the debian image and see what's configured
-
parv
I am inclined to say problem could be with the driver
-
simernes
If my router has gigabit I should set 1000baseTX, right?
-
parv
"ifconfig -m" would also show the supported media options
-
parv
Yes, re 1000baseTX if that would work; else may need to try 100baseTX or whatever else is supported
-
simernes
omg it's working
-
parv
What did you do, simernes?
-
simernes
as per your suggestion `ifconfig -m` the top entry was `media autoselect instance 1`. The second being `media 1000baseT mediaopt full-duplex,master instance 1`
-
simernes
I tried with "autoselect instance 1" and it has selected "... 1000baseT full-duplex,master"
-
parv
Sweet
-
parv
Did you need to add "default" route or did that work out via DHCP?
-
simernes
Thanks so much. No I didn't add any default route
-
parv
Ok
-
» meena only learned about ifconfig -m a week ago
-
p4x639
what does that do?
-
meena
p4x639: query or set the media type
-
parv
simernes, What does "route show default" list for "gateway"?
-
p4x639
meena: media type?
-
» parv learned, likely again, about "-m" option during the exchange with simernes
-
meena
p4x639: such as 10G full-duplex, 100G autoselect. just try the query on a bunch of interfaces to see
-
p4x639
meena: arch user here :(
-
» p4x639 needs to switch
-
p4x639
how is performance of archlinux in bhyve?
-
p4x639
any loss?
-
p4x639
also win11
-
simernes
parv: Gateway just shows the name of my 2.4GHz wifi network for some reason
-
parv
simernes, Alright
-
parv
Do not know why/how that would be the case, but ok
-
meena
p4x639: ip should have an equivalent, or else, it's in /sys/class/net/<device>/some-file
-
simernes
Can I put this ifconfig in rc.conf or something somehow so it's enabled by default?
-
meena
simernes: ifconfig_foo0= can take pretty much any option you can give to ifconfig
-
meena
(in addition to DHCP, which is not an ifconfig option ;)
-
simernes
meena: ty
-
debdrup
meena: and WPA, if we're going by things not strictly part of ifconfig
-
meena
ah, i forgot about WPA
-
meena
I need to revive my laptop
-
meena
but, since yesterday, I'm thinking of putting haiku on the thinkpad, and see if I can get FreeBSD running on the system76 laptop
-
Demosthenex
my main machie is an x230 with freebsd ;]
-
pmb
@Demosthenex how's that run, any drivers missing? Battery life?
-
pmb
Demosthenex how's that run, any drivers missing? Battery life?
-
pmb
nice size screen, 12.5" but I'm seeing it is old, pre-installed with Windows 7 😬️
-
pmb
is wifi modules white listed, can you upgrade this?
-
Demosthenex
i slapped on a x220 keyboard ;]
-
Demosthenex
runs fine
-
Demosthenex
low temperature
-
Demosthenex
haven't tested the batt
-
pmb
nice, what window manager/desktop environment?
-
Demosthenex
stumpwm. no icons, no desktop.
-
Demosthenex
just tiling
-
debdrup
-
VimDiesel
Title: Laptops - FreeBSD Wiki
-
yuripv
anyone knows which linux version is tracked in drm-kmod's master?
-
meena
yuripv: I think it's "stable" whatever that is or means
-
angry_vincent
yuripv: i think it is 5.15 now
-
angry_vincent
with, maybe, some addition from 5.16 ( git log is unclear, only reduce with 5.16 )
-
angry_vincent
i till getting artifacts, rectangular shapes, anf gpu hang, but less frequent and no kernel panics
-
angry_vincent
i still much disappointed
-
DrNick42
hey all. possibly an obvious answer, but question regarding upgrading jails with freebsd-update. host is running
-
DrNick42
13.1-RELEASE-p6. installed a new jail with bsdinstall which installed 13.0-RELEASE for some reason. went to upgrade to 13.1 with freebsd-update but it says one of the installed components is kernel/generic which seems odd for a jail?
-
angry_vincent
yuripv: ( aacd0e4bee Reduce diff with Linux 5.16 ) is what i meant, that's in master
-
yuripv
angry_vincent: makes sense, thanks
-
Clockwork
Can anyone help me on this topic? Or is it out of scope?
-
Clockwork
-
VimDiesel
Title: Is there any chance for me to read a DVD disc on this device? | The FreeBSD Forums
-
ngortheone
what happens to resource limits set by rctl on a process when process forks? (i have my guess, but I want to confirm it)
-
Clockwork
ngortheone: I didn't understand the question.
-
ngortheone
with rctl you can set limits on a process, using process ID (PID)
-
ngortheone
when process forks, the forked child has new PID
-
ngortheone
are resource limits inherited?
-
ngortheone
or is it a legit way of breaking free from limits?
-
Clockwork
I have rctl disabled
-
rtprio
Clockwork: he's not talking to you
-
FUZxxl
greetings
-
FUZxxl
I have been asked by a user if there is a way on FreeBSD to manipulate the “embedded controller” of some laptops.
-
FUZxxl
-
VimDiesel
Title: Which library will let me write (AND/OR Operations) EC register on BSD (FreeBSD/ GhostBSD)? : BSD
-
FUZxxl
Do we have anything like that?
-
Clockwork
rtprio: I understand
-
rtprio
Clockwork: are there any other slices? /dev/cd0a etc?
-
Clockwork
rtprio: No. cd0 only
-
ngortheone
rtprio: > he's not talking to you
-
ngortheone
what makes you say this?
-
ngortheone
in that instance I was in fact clarifying the question for Clockwork
-
rtprio
perhaps i didn't scroll back far enough; i apologize
-
ngortheone
no worries, I was thought maybe I said something incorrect (english is not my native)
-
Midjak
Hello, I try to find a mean to roll back a newly built kernel after a "make installkernel" as thi new kernel panic on my setup. Is there a clean mean to do that ?
-
Midjak
a way*
-
Midjak
I mean
-
ngortheone
Midjak: after you do "installkernel" the old kernel is copied to kernel.old and is available for selection in the bootloader menu, when you see the bestie
-
ngortheone
read the menu options, if I remember correctly you need to press 2 to switch to old kernel
-
Midjak
yes, I am hesitating about just rename old kernal and drop the new one
-
jimmiejaz
-
VimDiesel
Title: Chapter 14. The FreeBSD Booting Process | FreeBSD Documentation Portal
-
Midjak
I succed to boot on the old kernel
-
rtprio
Midjak: mv /boot/kernel /boot/kernel.yikes; mv /boot/kernel.old /boot/kernel ;
-
Midjak
I just want to roll back to the previous one now
-
rtprio
it works fine, i've done it many times
-
ngortheone
just rename the old kernel back to :)
-
Midjak
ok cool
-
Midjak
thanks!
-
rtprio
loader will boot once, but then you risk a 2nd bad kernel and no good kernel
-
rtprio
if that makes sense
-
jimmiejaz
and you can always copy the /boot/kernel.old /boot/kernel.keeping (or something) so you don't overwrite it
-
Midjak
otherwise what should I do to understand what is going on with the new one?
-
jimmiejaz
I've got kernel.13 kernel.13.1.orig kernel and kernel.old sitting here.
-
Midjak
I am thinking about a bug report but I am not sure what I should give as information.
-
rtprio
what panic do you see?
-
debdrup
You'll need to rebuild the kernel with debugging symbols, then use devel/kgdb to examine the data.
-
jimmiejaz
chances are, a config option has changed and you missed something, I'd go through both configs line by line and compare them both with the defaults. I'd also boot with the new kernel with the verbose option to get a much better look at what/where it's failing
-
Midjak
at boot up on the kernel.new I have built from the last checkout
-
debdrup
A kernel without debugging symbols won't give kgdb information to be able to see what's wrong.
-
Midjak
ok
-
Midjak
thank you both I going to look that
-
debdrup
docs.freebsd.org/en/articles/problem-reports this describes when and how to submit a good bug report
-
VimDiesel
Title: Writing FreeBSD Problem Reports | FreeBSD Documentation Portal
-
rtprio
what subsystem paniced, Midjak ?
-
Clockwork
My native language is also not English.
-
Midjak
jimmiejaz, I am not on a specific configuration . Is it possible something is changed with GENERIC config which could be the cause of the panic ?
-
Midjak
rtprio how can I check that rtprio ?
-
rtprio
Midjak: the functions in the panic message
-
Midjak
Yes where I can find the logs of the previous boot ? not the last boot because I have reboot on the old kernel but the previous one
-
Midjak
Are the logs kept from one boot to the next ?
-
rtprio
the panic is generally not saved, iirc
-
Midjak
so I should reboot and look the message ok
-
pmb
thanks for the link, but it's been a while since I ran freebsd on a laptop, nowadays I go the lazy linux way... freebsd on servers ftw!
-
rtprio
it could be as simple as "you included one kernel config item without the required other one"
-
Midjak
the kernel panic after amdgpu kernel modsetting enabled
-
Midjak
Fatal trap 12 page fault while in kernel mode
-
yuripv
did you rebuild the drm-kmod after updating the kernel?
-
rtprio
yuripv: ++
-
Midjak
nope
-
yuripv
please try that before submitting a bug report
-
Midjak
I would to switch on the new kernel for that by the way. I have just follow the user guide
-
Midjak
So when I rebuid a kernel I must rebuid drm-kmod, ok. What are the package I should rebuild ?
-
yuripv
you don't need to be running the new kernel when rebuilding the drm modules, you just need to have /usr/src corresponding to the new kernel
-
yuripv
Midjak: whatever port you installed that provides amdgpu
-
Midjak
I dont want specially open bugs yuripv
-
Midjak
I have just follow the user guide...
-
Midjak
anyway thank you
-
rtprio
disable the amdgpu module and see if the new kernel boots
-
rtprio
then rebuild amdgpu and reboot again
-
rtprio
you should be good to go
-
Midjak
rtprio, these are drivers right ?
-
Midjak
ah ok. they are drivers from linux.
-
rtprio
yeah, the video driver
-
Midjak
yuripv, I have rebuilt graphics/krm-mod and reboot same problem. Is graphics/krm-mod I should rebuild ?
-
vishwin
graphics/drm-kmod is a meta-port, rebuilding it won't do you any good
-
vishwin
you need to see which -kmod it depends on and rebuild that
-
rtprio
man, i remember in the old days rebuilding a kernel for specific cpu optimization
-
rtprio
and then came time to change the system, and you could no longer swap the disk becaus the new system was amd and the old one was intel or a different generation of processor
-
rtprio
so you'd spend another two hours rebuilding the kernel
-
rtprio
good times
-
Midjak
How canI know what is my -kmod vishwin?
-
vishwin
use pkg to get the info of drm-kmod
-
vishwin
there is a flag to print dependencies
-
rtprio
pkg info -a -o |grep kmod
-
Midjak
ok I have rebuilt the package I didn't mange to build on the previous kernel (it was graphics/drm-510-kmod) and now I can boot on the new kernel.
-
Midjak
Where drm-kmod is documented ? I have tried man drm-kmod without success
-
parv
"pkg info drm-kmod"
-
meena
man -k drm?
-
parv
To search for installed packages, sans "grep": pkg info -x -o kmod
-
parv
meena, Thanks. Just learned "kms", in "i915km" for example, stands for "kernel mode-setting"
-
parv
s/i915km/&s/
-
meena
parv: i relearn this every time. I cannot seem to remember
-
parv
meena, Eh, there is no point in remembering everything that one comes across for all times
-
meena
parv: especially stuff i have no interest in…
-
parv
Indeed
-
meena
I do not, even almost, care about the interna of graphics stacks
-
Midjak
Thank you meena parv . I think I will have to build the drm-510-kmod. I am not sure to understand evenrything, but it's better now
-
meena
but the things i know about virtualization, containers, bootstrapping OSes, and ELF could probably fill many, many books
-
meena
(books you could use to stop doors from moving, or make a balance a shaky shelf, or do any number of other useful things you can do with useless books)
-
parv
🤣
-
meena
and it's still so broadly spread that it's still not useful enough. as you can see in #freebsd-dev with how much ngortheone and i are struggling lol
-
debdrup
rtprio: `pkg -xo kmod` will do the same
-
jmnbtsls1E
i want to use lldb inside a jail; is it possible to set security.bsd.unprivileged_proc_debug=1 inside that jail specifically? i have Operation not permitted when i try
-
» parv hands debdrup a "info"
-
» debdrup takes the info and indiscriminately shoves it somewhere into the last sentence typed
-
debdrup
That'll do.
-
meena
jmnbtsls1E: sysctl, as the name kind of implies, is unfortunately "system", and can't be broken down to jails or processes
-
rtprio
debdrup: old habits die hard
-
jmnbtsls1E
there's some talk of this per jail here
reviews.freebsd.org/D18319 , but the relevant jail attribute allow.unprivileged_proc_debug doesn't seem to be present on my system
-
VimDiesel
Title: ⚙ D18319 Make security.bsd.unprivileged_proc_debug per-jail
-
meena
ngortheone: I wonder if (fixing) this ⬆️ could / should be a goal
-
jmnbtsls1E
meena: well no, sysctls can be per-jail
-
jmnbtsls1E
for example net.inet.ip.forwarding, net.inet.ip.fw.one_pass
-
jmnbtsls1E
have not done much other than that in a jail
-
debdrup
It's not a jail property, though - it's a sysctl(8) OID.
-
debdrup
It even uses the SYSCTL_JAIL_PARAM() macro.
-
jmnbtsls1E
from reading that page so far, the jail property is allow.unprivileged_proc_debug , to allow the jail to change the sysctl
-
meena
jmnbtsls1E: allow.unprivileged_proc_debug is a jail(8) param, and then inside the jail you should be able to set security.bsd.unprivileged_proc_debug=1
-
meena
lol, took me 3 minutes longer than you
-
jmnbtsls1E
yeh, the problem is it's not a jail param though, i guess that code never made it , at least on 12.3
-
jmnbtsls1E
hmm, i thought i checked 13 but i have not checked it yet. maybe it's on 13
-
debdrup
It might not be in 12.3, no.
-
debdrup
-
VimDiesel
Title: src - FreeBSD source tree
-
meena
yeah, i didn't see an MFC
-
jmnbtsls1E
OK, it's in the most recent man page also, understood. thanks
-
debdrup
You didn't check the manual pages for your system version?
-
jmnbtsls1E
i did, but did not check the ones for more recent version such as 13
-
crb
can bhyve attache host filesystems to the guest?
-
meena
crb: virtio-p9
-
crb
meena, is that the only option?
-
meena
nfs… cifs… sshfs…
-
crb
Oh, yeah I suppose I could nfs mount
-
crb
do you have any idea performance wise which option is best?
-
debdrup
If you're doing performance-sensitive work, you probably shouldn't be using a hypervisor.
-
parv
Ever since John-Mark G introduced me to sshfs (on Twitter or Mastodon), I prefer to use it over setting up a NFS mount.
-
crb
parv: why?
-
parv
crb, I can mount exactly the directory I need; also the "ssh" part of "sshfs"
-
crb
parv: that's true I suppose but my network is fairly closed and it occurs to me that the two directories that I care about are already nfs exported across my network, that may make nfs the best option
-
debdrup
parv: I'd argue that's one of those things that's more context-sentitive; for example, there's a good argument to be made that if both client and server are FreeBSD, you can do NFS over TLS - because that uses just one TCP port over which both the NFS traffic, authentication, locking, and everything else is sent. All of that, in turn, using AES-GCM, will be both encrypted and integrity checked (because
-
debdrup
the cipher integrates both, and is optimized for a packet-sized chunks).
-
debdrup
sshfs has a few issues that'll also affect performance; for one thing it's incurring an involuntary context switch every time you're doing an action because it's relying on fusefs, but in the event that you're on a network you trust (ie. one you setup and maintain), there not much gained from the actual security promises of using ssh.
-
debdrup
Except it's not just one context switch, if memory serves - I think each action in fusefs is at least 3 because of the boundary crossings?
-
debdrup
sshfs, like many other things, isn't a one-size-fits-all.
-
parv
debdrup, Sure, re: context. Work mounts NFS without TLS & NFS v4 server on Rocky Linux; got no time to set up "idmap"
-
debdrup
parv: so no NFSv4 ACLs then? :P
-
parv
To be clear I do not care to set up "idmap" on my FreeBSD machine. That is set up on other CentOS & Rocky Linux machines
-
crb
holy shit, installing/running a linux client under bhyve seems pretty easy and fucking cool!
-
crb
ok so one more question, do bhyves have to be started by root or can an ordinary user start a guest OS?
-
debdrup
The answer is that it depends.
-
debdrup
There's a patch floating around somewhere on
bugs.freebsd.org that lets you create unprivileged guests, but it means that it won't have PCI passthrough and there's a bunch of other things that won't work.
-
VimDiesel
Title: FreeBSD Bugzilla Main Page
-
debdrup
What you can instead do, though, is run bhyve inside a jail. That gets it a much stronger isolation from the host than simply running it unprivileged.
-
crb
debdrup: thanks
-
Clockwork
-
VimDiesel
Title: Laptops/HP_Compaq_nx6320 - FreeBSD Wiki
-
debdrup
There's also some issues with guest memory accounting, although the extend to which this is a problem outside of reclaiming the resources if the guest is shut down and/or using rctl(8) isn't clear to me.
-
debdrup
But since it isn't properly freed, that could in theory lead to security issues.
-
debdrup
Though whether this extends beyond an information leak isn't something I can speculate about after 2300 hours on a sunday ;)
-
parv
Clockwork, Havd not seen "Compaq" for a long time until now
-
debdrup
Isn't it just HP?
-
parv
s/Hav/Ha/ # Ha!
-
Clockwork
I also wrote about /HP_Compaq_6715b
-
Clockwork
This name is written on the cover of the laptop.