Page MenuHomeFreeBSD

Core TeamGroup
ActivePublic

Recent Activity

Tue, Dec 10

bofh abandoned D44292: website/administrations: Refactor.
Tue, Dec 10, 12:53 PM · Core Team, doceng

Jul 2 2024

lwhsu added a member for Core Team: rene.
Jul 2 2024, 6:41 PM

Jun 27 2024

lwhsu added members for Core Team: dch, mat, allanjude, glebius, hrs, olivier.
Jun 27 2024, 7:01 PM
lwhsu removed a member for Core Team: manu.
Jun 27 2024, 6:58 PM
lwhsu removed a member for Core Team: jhb.
Jun 27 2024, 6:58 PM
lwhsu removed a member for Core Team: grog.
Jun 27 2024, 6:58 PM
lwhsu removed a member for Core Team: bcr.
Jun 27 2024, 6:58 PM
lwhsu removed a member for Core Team: 0mp.
Jun 27 2024, 6:58 PM
lwhsu removed a member for Core Team: emaste.
Jun 27 2024, 6:58 PM
lwhsu removed a member for Core Team: bapt.
Jun 27 2024, 6:58 PM

Mar 12 2024

bofh added a comment to D44292: website/administrations: Refactor.

@bcr Do you have any objections on behalf of core@? As I am removing some stale members I was also looking forward for core's approval.

Mar 12 2024, 5:45 PM · Core Team, doceng

Mar 10 2024

bcr accepted D44292: website/administrations: Refactor.
Mar 10 2024, 2:50 PM · Core Team, doceng
bofh requested review of D44292: website/administrations: Refactor.
Mar 10 2024, 2:17 PM · Core Team, doceng

Oct 21 2022

bofh removed a watcher for Core Team: bofh.
Oct 21 2022, 6:50 PM

Aug 26 2022

eduardo added a comment to D30333: sound: add patch for Lenovo Legion 5 AMD..

patch ready and tested at PR 265632

Aug 26 2022, 4:53 PM · Core Team

Aug 25 2022

eduardo added a comment to D30333: sound: add patch for Lenovo Legion 5 AMD..

How can I find device id for this legion like

#define	LENOVO_L5AMD_SUBVENDOR	HDA_MODEL_CONSTRUCT(LENOVO, 0x381b)

Thanks

In my case I ran pciconf -lv and found a device with multimedia class:

hdac0@pci0:0:31:3:      class=0x040380 rev=0x31 hdr=0x00 vendor=0x8086 device=0xa171 subvendor=0x1043 subdevice=0x15e0
    vendor     = 'Intel Corporation'
    device     = 'CM238 HD Audio Controller'
    class      = multimedia
    subclass   = HDA

The subdevice=0x15e0 part turned out to be the correct value for that switch.

Aug 25 2022, 9:40 PM · Core Team
arrowd added a comment to D30333: sound: add patch for Lenovo Legion 5 AMD..

How can I find device id for this legion like

#define	LENOVO_L5AMD_SUBVENDOR	HDA_MODEL_CONSTRUCT(LENOVO, 0x381b)

Thanks

Aug 25 2022, 8:53 PM · Core Team
eduardo added a comment to D30333: sound: add patch for Lenovo Legion 5 AMD..

it works same way for a legion 5 intel version:

Aug 25 2022, 6:49 PM · Core Team

Jun 26 2022

lwhsu added members for Core Team: 0mp, bcr, grog, jhb, lwhsu, tcberner, manu.
Jun 26 2022, 12:20 AM
lwhsu removed a member for Core Team: markj.
Jun 26 2022, 12:19 AM
lwhsu removed a member for Core Team: kevans.
Jun 26 2022, 12:19 AM
lwhsu removed a member for Core Team: gnn.
Jun 26 2022, 12:19 AM
lwhsu removed a member for Core Team: imp.
Jun 26 2022, 12:19 AM
lwhsu removed a member for Core Team: seanc.
Jun 26 2022, 12:19 AM
lwhsu removed a member for Core Team: hrs.
Jun 26 2022, 12:19 AM

Mar 25 2022

scottl removed a member for Core Team: scottl.
Mar 25 2022, 10:10 PM

Jan 25 2022

eduardo added a comment to D30333: sound: add patch for Lenovo Legion 5 AMD..

I'm trying to get sound from my speakers on a Lenovo 5 (intel i7), headphones works ok.

Jan 25 2022, 8:30 AM · Core Team

Jan 23 2022

emaste closed D30333: sound: add patch for Lenovo Legion 5 AMD..
Jan 23 2022, 8:05 PM · Core Team

Jun 1 2021

trasz added a comment to D30378: linuxulator: Add filler for 'core' entry in linsysfs..

FWIW, splice: https://reviews.freebsd.org/D30597

Jun 1 2021, 3:33 PM · Linux Emulation, Core Team

May 26 2021

arrowd added a comment to D30333: sound: add patch for Lenovo Legion 5 AMD..

Done: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=256169

May 26 2021, 1:56 PM · Core Team

May 25 2021

emaste added a comment to D30378: linuxulator: Add filler for 'core' entry in linsysfs..

we have so many such unfinished things

May 25 2021, 5:47 PM · Linux Emulation, Core Team
dchagin added a comment to D30378: linuxulator: Add filler for 'core' entry in linsysfs..

FWIW, splice(2) can be a wrapper around copy_file_range(2). We should also have a fallback from sendfile(2) to splice(2), for when it fails with ENOTSOCK. This is one of the things that break Mono

May 25 2021, 5:42 PM · Linux Emulation, Core Team
dchagin added a comment to D30378: linuxulator: Add filler for 'core' entry in linsysfs..

Why do we need it? All the BSD's seem to exist without splice() just fine?

May 25 2021, 5:25 PM · Linux Emulation, Core Team
dchagin added a comment to D30378: linuxulator: Add filler for 'core' entry in linsysfs..

The most pressing issue is the incomplete pthread support notably with FUTEX_LOCK_PI and FUTEX_UNLOCK_PI and friends.

https://wiki.freebsd.org/Linuxulator#Roadmap, pi is not the key, we have so many important holes

It's literally the second item on that list, for example pulseaudio hard crashes because it's not there. I have started but it's pretty hard, I wonder if anyone can help?

May 25 2021, 5:18 PM · Linux Emulation, Core Team
trasz added a comment to D30378: linuxulator: Add filler for 'core' entry in linsysfs..

FWIW, splice(2) can be a wrapper around copy_file_range(2). We should also have a fallback from sendfile(2) to splice(2), for when it fails with ENOTSOCK. This is one of the things that break Mono.

May 25 2021, 5:07 PM · Linux Emulation, Core Team
pitwuu_gmail.com added a comment to D30378: linuxulator: Add filler for 'core' entry in linsysfs..

we have so many such unfinished things, like arm linuxulator, splice sys call....

Yes, about splice, I was thinking we could just use a regular copy and be done with it. It wouldn't be that hard to implement, I can possibly look at it.

some time ago I wrote splice emulation via dofileread/dofilewrite ) but I abandoned it because I think we need a native splice() and tee() implementation. feel free to as arch@ about it:)

May 25 2021, 5:02 PM · Linux Emulation, Core Team
pitwuu_gmail.com added a comment to D30378: linuxulator: Add filler for 'core' entry in linsysfs..

we have so many such unfinished things, like arm linuxulator, splice sys call....

Yes, about splice, I was thinking we could just use a regular copy and be done with it. It wouldn't be that hard to implement, I can possibly look at it.

some time ago I wrote splice emulation via dofileread/dofilewrite ) but I abandoned it because I think we need a native splice() and tee() implementation. feel free to as arch@ about it:)

The most pressing issue is the incomplete pthread support notably with FUTEX_LOCK_PI and FUTEX_UNLOCK_PI and friends.

https://wiki.freebsd.org/Linuxulator#Roadmap, pi is not the key, we have so many important holes

May 25 2021, 4:59 PM · Linux Emulation, Core Team
emaste added a comment to D30378: linuxulator: Add filler for 'core' entry in linsysfs..

I don't think they are even usable, since the core file is in FreeBSD format that linux gdb can't parse, and confuse the freebsd gdb because it's a linux process/elf.

May 25 2021, 4:56 PM · Linux Emulation, Core Team
dchagin added a comment to D30378: linuxulator: Add filler for 'core' entry in linsysfs..

we have so many such unfinished things, like arm linuxulator, splice sys call....

Yes, about splice, I was thinking we could just use a regular copy and be done with it. It wouldn't be that hard to implement, I can possibly look at it.

May 25 2021, 4:55 PM · Linux Emulation, Core Team
pitwuu_gmail.com added a comment to D30378: linuxulator: Add filler for 'core' entry in linsysfs..

Encountered in the crash handler of 'kodi'. Kodi still crashes, but at least the crash handler doesn't seem to crash anymore.

IMO this sort of thing is sufficient reason to have this linprocfs entry. What do you think about extending it slightly, at least translating FreeBSD's default %N.core to the Linux equivalent (%e.core I guess?)

we have so many such unfinished things, like arm linuxulator, splice sys call....

May 25 2021, 4:47 PM · Linux Emulation, Core Team
pitwuu_gmail.com added a comment to D30333: sound: add patch for Lenovo Legion 5 AMD..
lots of output
May 25 2021, 4:40 PM · Core Team
dchagin added a comment to D30378: linuxulator: Add filler for 'core' entry in linsysfs..

Encountered in the crash handler of 'kodi'. Kodi still crashes, but at least the crash handler doesn't seem to crash anymore.

IMO this sort of thing is sufficient reason to have this linprocfs entry. What do you think about extending it slightly, at least translating FreeBSD's default %N.core to the Linux equivalent (%e.core I guess?)

May 25 2021, 4:40 PM · Linux Emulation, Core Team
pitwuu_gmail.com added a comment to D30378: linuxulator: Add filler for 'core' entry in linsysfs..

Encountered in the crash handler of 'kodi'. Kodi still crashes, but at least the crash handler doesn't seem to crash anymore.

IMO this sort of thing is sufficient reason to have this linprocfs entry. What do you think about extending it slightly, at least translating FreeBSD's default %N.core to the Linux equivalent (%e.core I guess?)

May 25 2021, 4:35 PM · Linux Emulation, Core Team
emaste added a comment to D30378: linuxulator: Add filler for 'core' entry in linsysfs..

Encountered in the crash handler of 'kodi'. Kodi still crashes, but at least the crash handler doesn't seem to crash anymore.

May 25 2021, 4:25 PM · Linux Emulation, Core Team
pitwuu_gmail.com added a comment to D30378: linuxulator: Add filler for 'core' entry in linsysfs..

Is there a way to config git to do that by default? It's annoying to do every time.

I'm not sure, although I also suspect you don't want it when generating a patch for your own review, not for upload to Phabricator. There is a tool in the tree, tools/tools/git/git-arc, which can take care of submitting phab reviews for you.

May 25 2021, 4:23 PM · Linux Emulation, Core Team
emaste added a comment to D30378: linuxulator: Add filler for 'core' entry in linsysfs..

Is there a way to config git to do that by default? It's annoying to do every time.

May 25 2021, 4:19 PM · Linux Emulation, Core Team
pitwuu_gmail.com added a comment to D30378: linuxulator: Add filler for 'core' entry in linsysfs..

For future uploads please include full context by using e.g. git show -U99999 <hash> - see https://wiki.freebsd.org/Phabricator for details

May 25 2021, 4:13 PM · Linux Emulation, Core Team

May 24 2021

dchagin added a comment to D30378: linuxulator: Add filler for 'core' entry in linsysfs..

hi, what is the purpose for this? it will be used read only. so what is the program depend on it?

May 24 2021, 6:46 AM · Linux Emulation, Core Team
emaste added a comment to D30378: linuxulator: Add filler for 'core' entry in linsysfs..

For future uploads please include full context by using e.g. git show -U99999 <hash> - see https://wiki.freebsd.org/Phabricator for details

May 24 2021, 1:38 AM · Linux Emulation, Core Team
lwhsu added a reviewer for D30378: linuxulator: Add filler for 'core' entry in linsysfs.: Linux Emulation.
May 24 2021, 1:14 AM · Linux Emulation, Core Team