[Bug 139743] [ichsmb] ichsmb driver doesn't detects SMB bus on Asus P4B533/P4PE motherboards
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=139743 Mark Linimon changed: What|Removed |Added Attachment #227466|0 |1 is obsolete|| -- You are receiving this mail because: You are the assignee for the bug.
[Bug 121895] rtsol(8)/rtsold(8) doesn't handle managed networks
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=121895 Mark Linimon changed: What|Removed |Added Attachment #85637|0 |1 is obsolete|| --- Comment #4 from Mark Linimon --- Created attachment 258784 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=258784&action=edit rtsol.diff ^Triage: rebase patch. -- You are receiving this mail because: You are the assignee for the bug.
[Bug 280599] net/aquantia-atlantic-kmod: No ethernet on common workstation targets using aquantia-atlantic-kmod
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=280599 Mark Linimon changed: What|Removed |Added CC||yur...@freebsd.org --- Comment #8 from Mark Linimon --- ^Triage: make sure patch submitter is Cc:ed. -- You are receiving this mail because: You are the assignee for the bug.
[Bug 139743] [ichsmb] ichsmb driver doesn't detects SMB bus on Asus P4B533/P4PE motherboards
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=139743 Mark Linimon changed: What|Removed |Added Attachment #201473|0 |1 is obsolete|| -- You are receiving this mail because: You are the assignee for the bug.
[Bug 285514] sh: Display "you have mail" message when there is mail
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=285514 --- Comment #1 from Jose Luis Duran --- Created attachment 258792 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=258792&action=edit Minimal implementation fix -- You are receiving this mail because: You are the assignee for the bug.
[Bug 285492] NVIDIA Connect X-7 NIC:The mlx5(3.7.1) driver that comes along with 14.2 detects MFA1A00 cable as a 100G-KR4 cable incorrectly
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=285492 Mark Linimon changed: What|Removed |Added CC||k...@freebsd.org --- Comment #1 from Mark Linimon --- ^Triage: Cc: committer most active in this area. -- You are receiving this mail because: You are the assignee for the bug.
[Bug 285494] stable/14: "ISO C99 and later do not support implicit function declarations" build error after recent (Mon, 17 Mar 2025) sound related commits (33529d6ad44d - 4ed0ca91a309)
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=285494 Mark Linimon changed: What|Removed |Added Assignee|b...@freebsd.org|chris...@freebsd.org Keywords||regression -- You are receiving this mail because: You are the assignee for the bug.
[Bug 248368] devd MEDIACHANGE events are delivered unreliably for /dev/cdX devices
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=248368 --- Comment #16 from Pau Amma --- (In reply to Warner Losh from comment #15) Since I'm one of the others hitting this bug (or this pair of bugs?), and because it indirectly affects sysutils/libudisks functionality on FreeBSD, I'm still interested in an actual fix for this. Is that topology info something. Is the topology info you want something that would be present in /var/run/dmesg.boot (maybe in verbose boot mode)? If not, how do I get it? And which version(s) of FreeBSD (if relevant) do you want that info for? -- You are receiving this mail because: You are the assignee for the bug.
[Bug 251291] sockstat(1) - use -w option to also make COMMAND column wider
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=251291 Alan Somers changed: What|Removed |Added CC||asom...@freebsd.org --- Comment #4 from Alan Somers --- See also https://wiki.freebsd.org/SummerOfCodeIdeas#sockstat_UI_improvements , which proposes automatic column sizing, and would solve this bug. -- You are receiving this mail because: You are the assignee for the bug.
[Bug 248368] devd MEDIACHANGE events are delivered unreliably for /dev/cdX devices
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=248368 --- Comment #12 from Gleb Popov --- The main problem in this PR was about about MEDIACHANGE events, not this scsi_sense events spam. -- You are receiving this mail because: You are the assignee for the bug.
[Bug 248368] devd MEDIACHANGE events are delivered unreliably for /dev/cdX devices
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=248368 --- Comment #13 from Warner Losh --- (In reply to Gleb Popov from comment #12) > The main problem in this PR was about about MEDIACHANGE events, not this > scsi_sense events spam. Except under the covers they are really the same thing, or at least super closely related. We detect media changes, sometimes, by polling the device with TEST UNIT READY (TUR). Or by asking for a AEN event which I think isn't reliable. And the detection methods are different on real hardware (or at least the real hardware the OP uses) and on virtual hardware. But digging a little further shows I've not asked a key question. The spam is easy to get rid of, but making this feature work is quite tricky. Plus, I half suspect that CDROMs do different things on media insert/eject. Media change detection is very unreliable, and the hardware interfaces to do it vary quite a bit, it seems and even drives that advertise advanced features don't send the proper async event which winds up with the driver doing a TUR which gets the SCSI SENSE that shows the media has changed. Some SIMs signal better than others as well. AHCI does send the async signal, while none of the scsi attached do. Since I've not asked, and nobody has volunteered, I don't know which SIMs are involved to take a look, or to see if we need a new PIM flag to check along with the AEN flag to see if the SCSI AEN messages and/or Unit Attention messages are handled correctly. In addition to SIM driver bugs, I also think we might not be tracking state quite right in the SCSI side of the cd/da driver, leading to both the insane spam as well as it not being quite effective. So what's the connection toplogies for the cd in question? Since it's really two different drivers with the same name, it's hard to know where to look. And there's two different mechanisms that govern it, we need to narrow it down a bit for this bug to go from my "meh, that's weird, but I don't care because I don't know even where to start" to "meh, maybe I don't care about this feature that much, but I can look at the code and suggest matches." -- You are receiving this mail because: You are the assignee for the bug.
[Bug 248368] devd MEDIACHANGE events are delivered unreliably for /dev/cdX devices
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=248368 --- Comment #14 from Gleb Popov --- To be honest, I also don't care much about CD-ROMs, so we may just close this PR if you wish. -- You are receiving this mail because: You are the assignee for the bug.
[Bug 248368] devd MEDIACHANGE events are delivered unreliably for /dev/cdX devices
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=248368 --- Comment #15 from Warner Losh --- (In reply to Gleb Popov from comment #14) > To be honest, I also don't care much about CD-ROMs, so we may just close this > PR if you wish. Well, I'd kinda like to, but others are hitting it. if you still have the setup, it would be good to know how the CD attaches in virtualbox vs the real hardware if nothing else. That's going to be a clue for me (or someone else) that comes looking at this later. So at the very least we. should document it. -- You are receiving this mail because: You are the assignee for the bug.
[Bug 285494] stable/14: "ISO C99 and later do not support implicit function declarations" build error after recent (Mon, 17 Mar 2025) sound related commits (33529d6ad44d - 4ed0ca91a309)
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=285494 Bug ID: 285494 Summary: stable/14: "ISO C99 and later do not support implicit function declarations" build error after recent (Mon, 17 Mar 2025) sound related commits (33529d6ad44d - 4ed0ca91a309) Product: Base System Version: 14.2-STABLE Hardware: amd64 OS: Any Status: New Severity: Affects Only Me Priority: --- Component: kern Assignee: b...@freebsd.org Reporter: discipl...@tiscali.it After successfully building world+kernel at git 6207ca7b76b0, I updated the source tree to 64610df59348, but the build is now failing with the following error: cc -target x86_64-unknown-freebsd14.2 --sysroot=/usr/obj/usr/src/amd64.amd64/tmp -B/usr/obj/usr/src/amd64.amd64/tmp/usr/bin -O2 -pipe -fno-common -I/usr/src/sys -fPIE -g -gz=zlib -MD -MF.depend.pcm_read_write.pcm_read_write.o -MTpcm_read_write.o -std=gnu99 -Wno-format-zero-length -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Wnested-externs -Wold-style-definition -Wno-pointer-sign -Wdate-time -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-error=unused-but-set-parameter -Wno-error=cast-function-type-mismatch -Qunused-arguments -Wno-cast-align -c /usr/src/tests/sys/sound/pcm_read_write.c -o pcm_read_write.o In file included from /usr/src/tests/sys/sound/pcm_read_write.c:24: /usr/src/sys/dev/sound/pcm/pcm.h:196:3: error: call to undeclared function '__assert_unreachable'; ISO C99 and later do not support implicit function declarations [-Werror,-Wimplicit-function-declaration] 196 | __assert_unreachable(); | ^ /usr/src/sys/dev/sound/pcm/pcm.h:324:3: error: call to undeclared function '__assert_unreachable'; ISO C99 and later do not support implicit function declarations [-Werror,-Wimplicit-function-declaration] 324 | __assert_unreachable(); | ^ /usr/src/sys/dev/sound/pcm/pcm.h:371:3: error: call to undeclared function '__assert_unreachable'; ISO C99 and later do not support implicit function declarations [-Werror,-Wimplicit-function-declaration] 371 | __assert_unreachable(); | ^ /usr/src/sys/dev/sound/pcm/pcm.h:373:1: error: non-void function does not return a value in all control paths [-Werror,-Wreturn-type] 373 | } | ^ 4 errors generated. *** Error code 1 Stop. make: stopped in /usr/src/tests/sys/sound -- You are receiving this mail because: You are the assignee for the bug.
[Bug 139743] [ichsmb] ichsmb driver doesn't detects SMB bus on Asus P4B533/P4PE motherboards
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=139743 Mark Linimon changed: What|Removed |Added Attachment #176126|0 |1 is obsolete|| -- You are receiving this mail because: You are the assignee for the bug.
[Bug 129431] freebsd-update(8) fetch fails because phttpget fails proxy auth
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=129431 Mark Linimon changed: What|Removed |Added Status|Open|Closed Assignee|b...@freebsd.org|bugmeis...@freebsd.org Resolution|--- |Overcome By Events --- Comment #9 from Mark Linimon --- ^Triage: portsnap was removed from -CURRENT 20230420, which renders these patches Overcome By Events. -- You are receiving this mail because: You are the assignee for the bug.
[Bug 121243] passwd(1) patch for usage with PAM/LDAP
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=121243 Mark Linimon changed: What|Removed |Added Attachment #85146|0 |1 is obsolete|| --- Comment #4 from Mark Linimon --- Created attachment 258785 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=258785&action=edit passwd.c.diff ^Triage: rebase patch. -- You are receiving this mail because: You are the assignee for the bug.
[Bug 139743] [ichsmb] ichsmb driver doesn't detects SMB bus on Asus P4B533/P4PE motherboards
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=139743 Mark Linimon changed: What|Removed |Added Attachment #100459|0 |1 is obsolete|| -- You are receiving this mail because: You are the assignee for the bug.
[Bug 139743] [ichsmb] ichsmb driver doesn't detects SMB bus on Asus P4B533/P4PE motherboards
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=139743 Mark Linimon changed: What|Removed |Added Attachment #194974|0 |1 is obsolete|| -- You are receiving this mail because: You are the assignee for the bug.
[Bug 125139] [ata] bugs in ATAPI CD tray control
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=125139 Mark Linimon changed: What|Removed |Added Assignee|b...@freebsd.org|bugmeis...@freebsd.org --- Comment #9 from Mark Linimon --- ^Triage: unfortunately, since this PR was submitted, the file it attempts to patch has been removed. Is there some other place in the base system that still needs this functionality? -- You are receiving this mail because: You are the assignee for the bug.
[Bug 283747] kernel panic after telegraf service restart
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=283747 --- Comment #37 from Gleb Smirnoff --- Created attachment 258804 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=258804&action=edit 283747-long-ref.diff Suggested patch -- You are receiving this mail because: You are the assignee for the bug.
[Bug 283747] kernel panic after telegraf service restart
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=283747 --- Comment #38 from Gleb Smirnoff --- Thanks for Matthew for providing a core with INVARIANTS. I have a guess here. Not 100% sure this is the root cause, but > 50% sure. All who are affected, please patch your systems with patch from the above attachment and let's see how it goes. Running with INVARIANTS and patch is also recommended, so that if system panics again, there will be more information in the core. Thanks and sorry for being slow on this. -- You are receiving this mail because: You are the assignee for the bug.
[Bug 280599] net/aquantia-atlantic-kmod: No ethernet on common workstation targets using aquantia-atlantic-kmod
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=280599 Mark Linimon changed: What|Removed |Added Version|14.1-STABLE |Latest Assignee|b...@freebsd.org|ports-b...@freebsd.org Product|Base System |Ports & Packages Component|misc|Individual Port(s) CC||bugmeis...@freebsd.org --- Comment #9 from Mark Linimon --- ^Triage: a problem with this PR is that it includes a patch for the port even though it is a workaround for a src problem. When extracting patches from Bugzilla, we don't really have any indication of what applies to where. So, for the meantime, I'm reclassifying this as a ports PR. The patches still won't apply -- they still need to be run through 'make makepatch' -- but this will give anyone interested in this PR a hint. -- You are receiving this mail because: You are the assignee for the bug.
[Bug 139743] [ichsmb] ichsmb driver doesn't detects SMB bus on Asus P4B533/P4PE motherboards
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=139743 Mark Linimon changed: What|Removed |Added Attachment #235345|0 |1 is obsolete|| -- You are receiving this mail because: You are the assignee for the bug.
[Bug 139743] [ichsmb] ichsmb driver doesn't detects SMB bus on Asus P4B533/P4PE motherboards
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=139743 Mark Linimon changed: What|Removed |Added Attachment #242021|0 |1 is obsolete|| -- You are receiving this mail because: You are the assignee for the bug.
[Bug 123222] Add rtprio(1)/idprio(1) support to rc.subr(8).
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=123222 Mark Linimon changed: What|Removed |Added Attachment #86737|0 |1 is obsolete|| -- You are receiving this mail because: You are the assignee for the bug.
[Bug 285514] sh: Display "you have mail" message when there is mail
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=285514 Jose Luis Duran changed: What|Removed |Added Attachment #258792|0 |1 is obsolete|| --- Comment #2 from Jose Luis Duran --- Created attachment 258800 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=258800&action=edit Minimal implementation fix Avoid failing tests. -- You are receiving this mail because: You are the assignee for the bug.
[Bug 285514] /bin/sh: Display "you have mail" message when there is mail
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=285514 Mark Linimon changed: What|Removed |Added Summary|sh: Display "you have mail" |/bin/sh: Display "you have |message when there is mail |mail" message when there is ||mail -- You are receiving this mail because: You are the assignee for the bug.
[Bug 130056] have nfsstat(1) use strtonum instead of atoi
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=130056 Mark Linimon changed: What|Removed |Added Attachment #92400|0 |1 is obsolete|| --- Comment #3 from Mark Linimon --- Created attachment 258773 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=258773&action=edit nfsstat_strtonum_patch.txt ^Triage: rebase patch. -- You are receiving this mail because: You are the assignee for the bug.
[Bug 124969] gvinum(8): gvinum raid5 plex does not detect missing subdisk
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=124969 Mark Linimon changed: What|Removed |Added Resolution|--- |Overcome By Events Status|Open|Closed Assignee|b...@freebsd.org|bugmeis...@freebsd.org --- Comment #8 from Mark Linimon --- ^Triage: unfortunately, since this PR was submitted, the gvinum subsystem has been deprecated and then removed 20250123. -- You are receiving this mail because: You are the assignee for the bug.
[Bug 123222] Add rtprio(1)/idprio(1) support to rc.subr(8).
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=123222 Mark Linimon changed: What|Removed |Added Attachment #86736|0 |1 is obsolete|| -- You are receiving this mail because: You are the assignee for the bug.
[Bug 122652] du(1) support for inode count
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=122652 Mark Linimon changed: What|Removed |Added Attachment #86253|0 |1 is obsolete|| --- Comment #5 from Mark Linimon --- Created attachment 258782 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=258782&action=edit du_inode.diff ^Triage: rebase patch. -- You are receiving this mail because: You are the assignee for the bug.
[Bug 285514] sh: Display "you have mail" message when there is mail
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=285514 Bug ID: 285514 Summary: sh: Display "you have mail" message when there is mail Product: Base System Version: CURRENT Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: bin Assignee: b...@freebsd.org Reporter: jldu...@freebsd.org I believe /bin/sh should display the message "you have mail" whenever there is mail, much like /bin/tcsh does. For example: [sh] # mail -s test root test EOT [sh] # sh [sh] # Compared with /bin/tcsh: [tcsh] # mail -s test root test EOT [tcsh] # csh You have mail. [tcsh] # The functionality seems to be almost there, but it is not clear to me why is implemented that way. Attached is a minimal change that should allow this to happen. After the patch: [sh] # mail -s test root test EOT [sh] # sh you have mail [sh] # -- You are receiving this mail because: You are the assignee for the bug.
[Bug 139743] [ichsmb] ichsmb driver doesn't detects SMB bus on Asus P4B533/P4PE motherboards
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=139743 Mark Linimon changed: What|Removed |Added Attachment #144548|0 |1 is obsolete|| -- You are receiving this mail because: You are the assignee for the bug.
[Bug 139743] [ichsmb] ichsmb driver doesn't detects SMB bus on Asus P4B533/P4PE motherboards
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=139743 Mark Linimon changed: What|Removed |Added Attachment #161560|0 |1 is obsolete|| -- You are receiving this mail because: You are the assignee for the bug.
[Bug 138858] patch(1) assumes that a file appears only once in the patch in check-only mode
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=138858 Mark Linimon changed: What|Removed |Added Attachment #99706|1 |0 is patch|| --- Comment #4 from Mark Linimon --- Comment on attachment 99706 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=99706 con.patch ^Triage: although this is formatted as a patch, it is not a patch that applies to the base system. Therefore, I am going to turn off the flag. -- You are receiving this mail because: You are the assignee for the bug.
[Bug 127265] ddb(4): Adding the ddb command set from modules
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=127265 Mark Linimon changed: What|Removed |Added Attachment #90153|0 |1 is obsolete|| --- Comment #2 from Mark Linimon --- Created attachment 258776 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=258776&action=edit ddb.diff ^Triage: rebase patch. Since this PR was created, ./gnu/fs/xfs/FreeBSD/support/kdb.c has been deleted, so I also deleted it from the patch. -- You are receiving this mail because: You are the assignee for the bug.
[Bug 126433] some missing checks in rm(1)
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=126433 Mark Linimon changed: What|Removed |Added Attachment #89488|0 |1 is obsolete|| --- Comment #3 from Mark Linimon --- Created attachment 258778 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=258778&action=edit rm.c diff ^Triage: rebase patch. -- You are receiving this mail because: You are the assignee for the bug.
[Bug 126433] some missing checks in rm(1)
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=126433 Mark Linimon changed: What|Removed |Added Attachment #258778|0 |1 is obsolete|| --- Comment #4 from Mark Linimon --- Created attachment 258779 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=258779&action=edit rm.c.diff ^Triage: rebase patch. -- You are receiving this mail because: You are the assignee for the bug.
[Bug 122271] xinstall(8) - Add support for -D option (create parent directories before installing file(s))
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=122271 Mark Linimon changed: What|Removed |Added Attachment #85932|0 |1 is obsolete|| --- Comment #3 from Mark Linimon --- Created attachment 258783 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=258783&action=edit xinstall.diff ^Triage: rebase patch. -- You are receiving this mail because: You are the assignee for the bug.