04:56:13 so... how do you set the screen resolution of tty of fbsd running on a vm? vidcontrol -i say "invalid ioctl for device" 05:17:15 hi all, anyone home? 12:43:09 is there an smr_t associated with the net epoch (to use with PCTRIE_DEFINE_SMR)? 14:12:31 is there some way to run docker so that the containers themselves use linuxulator or bhyve - supplying just a kernel for docker to run on without the whole OS around it? Or is there some kind of a feature in bhyve, that would allow the VM's kernel to directly utilize FreeBSD's storage and networking stack? My objective is to avoid running a full Linux system in bhyve (which works perfectly well currently) - but I still... 14:12:36 ... need some linux server software and it does not look like any of it will be ported anytime soon. IIRC there exists a solution like plan 9 protocol used in wsl and I have some faint memory of Xen hypervisor allowing something like this - where you don't pass a whole LV to the VM, but a filesystem instaed 15:22:50 hmm there's this https://github.com/swills/docker-machine-driver-bhyve?tab=readme-ov-file but seems dead 15:56:16 does freebsd support WCN785x 15:56:30 openbsd doesnt seem to support it but linux does 15:56:40 it uses the ath12k driver on linux 6.12 15:57:55 https://www.reddit.com/r/freebsd/comments/1krc521/problem_with_installing_driver_for_wifi_card_in/ 15:58:00 nvm not supported but work in progress 16:43:22 i am very confused by PCTRIE_FIND_OR_INSERT() and apparently there are no existing users of this to see how you're actually meant to use it 17:34:57 i am trying to track down if people have good experience with the realtek 2.5GB drivers for freebsd in 14.0. .. considering opnsense 17:39:11 kevans: is everything in sys/modules expect to set its own WARNS level (or CWARNFLAGS) depending on what it wants? 17:40:07 trying to work out the right way to enable -Wthread-safety for bridge, because it's pretty useful: /home/ivy/src/bsd/dev/sys/net/bridge_fdb.h:149:1: error: expecting mutex '__fdb' to be held at the end of function [-Werror,-Wthread-safety-analysis] 18:38:29 this is a new one: panic: userret: Returning with sleep disabled 18:38:45 oh, i think this is what happens when you forget to call NET_EPOCH_EXIT 20:13:42 Anyone know how I can turn off ASLR properly for WINE? I got a game that does some live patching of some files and I think ASLR is preventing it. I toggled off all the sysctls with aslr, and even tried elfctl on wine64.bin for +noaslr but the vm.aslr_restarts counter keeps increasing when I try to run the game so ASLR is still on. 22:21:58 pertho: Might be a mailing list or #bsdmips (EFnet) question. 23:19:54 just wanna confirm, if a jail is a vnet jail, it requires a unique ip and no other jail (vnet or otherwise) on the jail host can use the same ip? 23:21:37 kerneldove: practicaly, yes, but there's nothing stopping you assigning the same IP address to two different vnets jails, it just won't work, the same as if you assign the same IP to two different physical computers 23:35:23 ok got it ty. and host based networking (where jails share same nif and ip as host) is more efficient? (because it's not running a separate net stack) 23:39:50 probably slightly more efficient, yes 23:40:06 i would not usually consider that in practice though 23:41:47 why not? 23:42:23 because i don't care about a 0.001% difference in networking performance 23:42:34 ah right 23:43:13 and btw, vnet jail can't reuse same ip host uses right? vnet is basically saying this is a different network host and thus needs its own ip 23:43:42 that is correct 23:44:04 you cannot assign the same IP address to two different physical computers, so you can't assign the same IP address to a host and its vnet jail 23:45:29 tyvm. btw saw service jails are coming in 15 that's really exciting 23:45:48 at first i started running services as their own user, now i can go further and run them as their own user in their own jail! 23:46:16 service jails as currently implemented are not very useful 23:46:33 i was hoping to improve this before 15.0 but i got caught up in a load of other stuff and didn't get around to it