Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 26 Jun 2025 00:24:22 +0200
From:      Michael Tuexen <tuexen@FreeBSD.org>
To:        Gleb Smirnoff <glebius@FreeBSD.org>
Cc:        "Herbert J. Skuhra" <herbert@gojira.at>, freebsd-current@freebsd.org, src-committers@freebsd.org
Subject:   Re: June 2025 stabilization week
Message-ID:  <C0F0157F-31D2-4737-B47C-6566D1CD0B13@FreeBSD.org>
In-Reply-To: <aFxnj31yPsyKRPcO@cell.glebi.us>
References:  <aFkJwZgyZXgZkXiX@cell.glebi.us> <6E5A0C58-E096-4EA1-BBC2-E0A66AA13176@FreeBSD.org> <aFr_h0fI9gmPRJN-@cell.glebi.us> <0F89BFEA-3948-4D21-9396-EDB5034AAE7A@FreeBSD.org> <2771ED29-7FC2-4D99-A0A0-20E16C62316E@FreeBSD.org> <87bjqbzzsq.wl-herbert@gojira.at> <FAD0E98B-77BB-4562-9A59-595BCD0DCD65@FreeBSD.org> <aFxnj31yPsyKRPcO@cell.glebi.us>

index | next in thread | previous in thread | raw e-mail

> On 25. Jun 2025, at 23:18, Gleb Smirnoff <glebius@FreeBSD.org> wrote:
> 
> On Wed, Jun 25, 2025 at 09:18:52PM +0200, Michael Tuexen wrote:
> M> > Reverting 7faddeb395b7 and 4deb9760a9d8 and running etcupdate seem to
> M> > resolve the issue.
> M> I bisected the issue. It is introduced by
> M> https://cgit.FreeBSD.org/src/commit/?id=4deb9760a9d84d5861ee45162ffebe83f13503b8 <https://cgit.freebsd.org/src/commit/?id=4deb9760a9d84d5861ee45162ffebe83f13503b8>;
> M> 
> M> Gleb: What entry in /etc/devfs.conf do you have? I have
> M> 
> M> own bpf* root:network
> M> perm bpf* 0660
> M> 
> M> and the problem goes away if I remove the trailing *.
> M> 
> M> So I guess you have
> M> 
> M> own bpf root:network
> M> perm bpf 0660
> M> 
> M> Is that guess correct? But I think using * is OK, it is even
> M> suggested in
> M> https://cgit.freebsd.org/ports/tree/net/wireshark/pkg-message
> M> 
> M> Therefore I have created
> M> https://reviews.freebsd.org/D51043
> M> which fixes the issue.
> 
> I have exactly what you have, copied from your email, with asterisks.
> And it worked for me on the stabweek revision in my VM.
Strange.

Could you change in /etc/rc.d/devfs 

			o*)	for device in ${devicelist}; do
					if [ -c ${device} ]; then
						chown ${parameter} ${device}
					fi
				done
				;;

to

			o*)	for device in ${devicelist}; do
					printf "own chown %s %s\n" ${parameter} ${device}
					if [ -c ${device} ]; then
						printf "performing"
						chown ${parameter} ${device}
					fi
				done
				;;

and run
service devfs start
and send the output of it?

Best regards
Michael
> 
> -- 
> Gleb Smirnoff



home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?C0F0157F-31D2-4737-B47C-6566D1CD0B13>