-
mason
Is it possible to get fleshed out, human-readable argument lists from ktrace -t c ?
-
Macer
rwp: yah i was just now looking at getting the atheros working
-
Macer
The AR9271 is a single-chip USB 2.0 802.11n solution. It operates in
-
Macer
the 2GHz spectrum and supports a single stream (1T1R).
-
Macer
it looks like the chipset is supported by athn but i couldn't figure out how to get it working out the box and i was having issues getting the ethernet working because i have vlans set up on ports of the wifi router in my living room that i use to do quick work where i need to plug in an ethernet cable
-
Macer
it's too bad the installer doesn't help you go through the wifi motions .. and i'm guessing either my wifi module isn't supported or it just doesn't detect it during install. i bet maybe firmware tomfoolery or who knows what heh
-
rtprio
vlans on wifi? i didn't know that was a thing
-
ivy
rtprio: 802.11 allows a VLAN tag in a wireless frame, but i'm not sure that's what OP meant, "ports" probably refers to wired Ethernet ports
-
tm512
so is there no way at all to get drm-510 working on recent 14-STABLE?
-
tm512
515 and 61 are both broken in different ways for me
-
kerneldove
got a pf question. i don't have "log" in any of my rules, but still when i run tcpdump -e -i pflog0 -l -n -t i still see rules 2 and 6 doing a "pass out ..."
-
kerneldove
why am i seeing anything if "log" isn't in any of the rules? the default rule is block all, fwiw
-
tm512
515 causes random kernel panics in the LinuxKPI rcu subsystem (iirc), and 61 is at least better than that but I get GPU resets that leave my laptop in an unusable state if I try opening up mpv while I've simultaneously got firefox running
-
tm512
61 seems to have some performance issues as well. I think I'm running into this problem, except FF never triggers it on its own:
freebsd/drm-kmod #366
-
tm512
I'd hop on over to current to try out drm-66, but all of the officially published binaries for 15 still have performance degrading debug flags applied, right?
-
tm512
the performance I've been getting out of 14-STABLE lately has basically been making this laptop from 2019 feel like the better part of a decade older than it actually is
-
tm512
I'm wondering at what point the snapshots for 15 will have the full performance of the snapshots for 14. is it when stable/15 gets branched from current in the near future? or is it not until releng/15.0, or later?
-
Retrofan
Hi
-
Retrofan
Fixed my internet
-
Retrofan
let's fix the pkgs now..
-
autumnblue
good to hear. Good luck
-
Macer
rtprio: what ivy said. Also. Yes. Multiple WiFi networks on different subnets using vlans is why. But I also assign ports to tag because I have iot things attached to it.
-
Macer
I should get a small managed switch for it and keep the ports on the wifi router u tagged. It’s really just a WiFi bridge and since it is in the living room I attach appliances to the Ethernet ports with one leading to the switch in the basement.
-
Retrofan
guys should I run "pkg upgrade -f".. notice that all pkgs are already for 13.5
-
divlamir
It wouldn't hurt
-
» Alver mutters foul language about ioctls
-
Retrofan
divlamir: but not necessary.. right?
-
xaf32
hi, all
-
divlamir
Retrofan: No, freebsd-update would have told you if it was necessary. But I would do it to be safe if I make a big jump
-
Retrofan
it didn't tell me..
-
divlamir
Do some testing then, usage will tell if everything is working
-
Retrofan
yeah
-
Retrofan
Installed the missing drivers
-
Retrofan
and I will reboot with x11
-
Retrofan
I updated the loader
-
Retrofan
But..
-
Retrofan
the drivers still have problem..
-
Retrofan
I already installed drm-kmod
-
jmnbtslsQE
Alver: just curious, what is the output of procstat -k for one of your processes that is uninterruptible sleep on the tun operation?
-
Alver
jmnbtslsQE: mi_switch _cv_wait_unlock tun_destroy tun_clone_destroy if_clone_destroyif_flags if_clone_destroy ifioctl kern_ioctl sys_ioctl amd64_syscall fast_syscall_common
-
kevans
er
-
kevans
why are you spreading this tunfd quite so far and wide, anyways?
-
Alver
kevans: hercules emulator. Not my code (un?)fortunately
-
kevans
tuns are generally expected to be driven by just one process
-
Alver
kevans: that is the stack for the one process.
-
kevans
so presumably it's just forking and still holding the file open in other threads?
-
Alver
Possible. It's way beyond my capabilities for now. :/
-
kevans
got a link to the thing you're working on specifically?
-
Alver
-
Alver
... and it doesn't work the least bit out of the box. Looks like no one ever bothered trying to run hercules with QETH on FreeBSD before.
-
Alver
I've written the code for pretty much everything else, but closing a tun created by (my code in) the app is a huge pain.
-
Alver
I can close the file descriptor I get passed, but then the tun just gets dismantled - it remains visible in ifconfig.
-
Alver
Hence my attempt at SIOCIFDESTROY but that's six (seven?) times now that I've screwed over my jail host server with an uninterruptable wait. :°)
-
Alver
If I read the code correctly, on Linux, just closing the last fd to a tun device will automatically tear down and destroy the device too.
-
kevans
yeah, I have a thing to allow ours to do similar
-
kevans
-
Alver
Oooh. That would be *very* convenient.
-
kevans
should probably get that in for 15.0 now that you mention it
-
kevans
Alver: oh, you might also be interested in
reviews.freebsd.org/D39740
-
Alver
I was already reading it :D
-
kevans
that at least lets you ^C ifconfig
-
kevans
or whatever's trying to destroy it
-
Alver
Useful indeed. The chicken-egg situation I have is not very handy
-
Alver
Well, hercules has the capability to create a tun device itself for the duration of its emulation, and you can specify the parameters - tun or tap, ips, netmask, mtu, etc etc.
-
Alver
I can already make it do all that (which in itself was already a kludge due to differences in Linux and FreeBSD ioctls). But the cleanup not yet.
-
Alver
Since it's an emulator I also have very little control over what happens on the tun so I can't even properly reproduce the problems I have. It will segfault, hang, or succeed.
-
Alver
I linked in ASan but that didn't show anything overly obvious. Built with -O2, segfault. Built with -O0, hang. But is it related? Who can tell.
-
kevans
Alver: i don't really have time to help there i'm afraid, but i at least pushed those two tuntap patches for 15.0. I think both are reasonable MFC candidates for 14.4, though transient tunnels may be a little trickier
-
kevans
14.4 might just get interruptible destroy
-
Alver
kevans: thanks for the pointers already. I'll keep an eye out
-
Retrofan
Hi
-
Retrofan
My PC is finally working!!!
-
Retrofan
using chatzilla now
-
Retrofan
Thank you everyone for help.. FreeBSD community is the best :)
-
flatdog
so is the OS
-
Retrofan
Sure!
-
Retrofan
Upgrading fixed most of my problems and bugs
-
Retrofan
and with Linux compatibility layer bugs fixed
-
Retrofan
But.. some problems with AMD radeon drivers :(
-
Retrofan
Next.. will be fixing my old ports, fixing drivers, building SeaMonkey native; bec. I really need to leave chrome
-
» Retrofan Retrofan hates chrome so much!
-
Retrofan
it's fast.. but doing nothing of my needs
-
Retrofan
No Plugins, FTP, Gopher, Usenet, IRC, etc..
-
autumnblue
Congratulations Retrofan
-
autumnblue
lots of good has been happening the last few days
-
autumnblue
I'm sure you'll manage to fix the rest, too
-
Retrofan
I am really want to bring seamonkey to ports tree again..
-
autumnblue
I loved seamonkey as well
-
Retrofan
autumnblue: thank you :)
-
Retrofan
are still user of it
-
autumnblue
:)
-
Retrofan
My CRT is making some strange signals
-
Retrofan
those signals make me fell blind..
-
autumnblue
haha, some magnet next to it or something perhaps
-
autumnblue
don't forget to press the degauss button
-
Retrofan
No magnets
-
Retrofan
I remember degauss button
-
Retrofan
this CRT was not powered up for nearly 20 year.. until I begin to use it
-
Retrofan
Done.
-
Retrofan
I had a Dell CRT back in the day, using it for nearly 12 years with no need for degaussing
-
autumnblue
yeah
-
autumnblue
good times
-
Retrofan
CRT stuff is so dangerous..
-
Demosthenex
20kv at the rear of the tube, and that's often where the adjustment rheostats are...
-
Retrofan
yeah
-
autumnblue
yeah pretty jolty
-
Retrofan
I remember someone got a shock from that high voltage transformer
-
Retrofan
but he is fine now..
-
autumnblue
took them a couple decades to be fine?
-
autumnblue
oh yeah transformer not CRT I see
-
Retrofan
he got a burn on his hand
-
Retrofan
20k shock will surly kill someone..
-
autumnblue
yeah it's better to be safe
-
Demosthenex
depends on the amps, but yeah, plastic tools ;]
-
Retrofan
As I know CRT has high amp voltage..
-
Retrofan
Oh.. gimp is working again
-
Retrofan
that remember me when I ported it to Atari sparemint
-
Retrofan
-
Retrofan
er.. chrome removed support for ublock, hate it more than ever..
-
Retrofan
-
Retrofan
then they continued the rest..
-
autumnblue
I use Qubes OS on my workstation, it's easier to keep things separate
-
mason
Re: my question last night:
-
autumnblue
but you buy the price with no DMA forwarding and no hyper threading, but it's all for security
-
mason
Ah, solved. I thought I had to specify -t options and in doing so zapped the defaults, which included "n trace namei(9) translations"
-
autumnblue
both are enableable options but messes with security
-
Retrofan
Wait..
-
Retrofan
Ghidra is removed from pkgs..?
-
kevans
that's not really how I would characterize it
-
kevans
the port still exists and the license terms don't prevent packaging, there just isn't a package at the moment for whatever reason
-
Retrofan
yeah understand
-
Retrofan
it will be a pain to compile a huge software like that :(
-
Retrofan
I was using on 13.2
-
divlamir
pkg search returns ghidra-11.3.1
-
Retrofan
mine nothing..
-
divlamir
I am on 14.3
-
Retrofan
is 13.5 more updated than 14.3 ?
-
Retrofan
I may use the pkg files, I still have them
-
Retrofan
*old
-
kevans
the ports tree is shared across all releases, but it or one of its dependencies could be failing to build on yours for some reason or another
-
Retrofan
I faced that alot on old ports
-
Retrofan
look like time to go..
-
Retrofan
And again thanks for help :)
-
autumnblue
ghidra can just be run from a directory I think, with whatever tarball the nsa provides or equally
-
autumnblue
last time I saw, it was basically jre -run ghidra.jar or something.
-
autumnblue
which of course is ages ago