Re: 13.0-RC2 / 14-CURRENT: Processes getting stuck in vlruwk state

2021-03-17 Thread Yamagi Burmeister
This time poudriere came to an end: % sysctl vfs.highest_numvnodes vfs.highest_numvnodes: 500976 On Wed, 17 Mar 2021 18:55:43 +0100 Mateusz Guzik wrote: > Thanks, I'm going to have to ponder a little bit. > > In the meantime can you apply this: >

Re: Boot hang on ryzen based notebook

2019-04-03 Thread Yamagi Burmeister
On Sat, 30 Mar 2019 21:17:36 +0300 Rozhuk Ivan wrote: > > You wrote "apic.0.disabled", not "acpi.0.disabled". Are you sure you > > wrote the correct command? You do not want to disable the APIC > > (interrupt controller), but the ACPI (control and power interface). > > hint.acpi.0.disabled="1"

Re: Binary packages for LibreOffice 3.5 or 3.4

2012-05-08 Thread Yamagi Burmeister
I'd like to ask whether there are sites were binary packages could be downloaded from and are there any experiences with installing them on either 9-STABLE or 10-CURRENT? We (BSDForen.de) have unofficial packages build by the community at

Re: Enhancing the user experience with tcsh

2012-02-10 Thread Yamagi Burmeister
On Thu, 9 Feb 2012 19:52:58 -0500 Eitan Adler li...@eitanadler.com wrote: In conf/160689 (http://www.freebsd.org/cgi/query-pr.cgi?pr=160689) there has been some discussion about changing the default cshrc file. I'd like to commit something like the following based on Chris's patch at the

Re: FS hang when creating snapshots on a UFS SU+J setup

2012-01-11 Thread Yamagi Burmeister
condition or something like that. Some more information from an older debug session can be found at: http://deponie.yamagi.org/freebsd/debug/snapshots_panic/ On Tue, 10 Jan 2012 10:30:13 -0800 Kirk McKusick mckus...@mckusick.com wrote: Date: Mon, 9 Jan 2012 18:30:51 +0100 From: Yamagi Burmeister li

Re: FS hang when creating snapshots on a UFS SU+J setup

2012-01-09 Thread Yamagi Burmeister
Hello, I'm sorry to bother you, but you may not be aware of this thread and this problem. We are several people experiencing deadlocks, kernel panics and other problems when creating sanpshots on file systems with SU+J. It would be nice to get some feedback, e.g. how can we help debugging and /

Re: FS hang when creating snapshots on a UFS SU+J setup

2012-01-03 Thread Yamagi Burmeister
Hi, I've seen this too (and other problems with SU+J and snapshots) and was able to reproduce it fairly easy. I wrote a PR: http://www.freebsd.org/cgi/query-pr.cgi?pr=163310 Never received any feedback until now... On Mon, 2 Jan 2012 23:27:57 -0600 Bryce Edwards br...@bryce.net wrote: I

Re: [maybe spam] Re: running old binaries on -current

2011-12-05 Thread Yamagi Burmeister
On Sun, 04 Dec 2011 13:56:11 -0800 Julian Elischer jul...@freebsd.org wrote: On 12/4/11 12:30 PM, Yamagi Burmeister wrote: On Sun, 4 Dec 2011 22:25:19 +0200 Kostik Belousovkostik...@gmail.com wrote: Try to set sysctl security.bsd.map_at_zero to 1. I didn't even think

Re: running old binaries on -current

2011-12-04 Thread Yamagi Burmeister
On Fri, 2 Jul 2010 21:44:26 +0300 Kostik Belousov kostik...@gmail.com wrote: On Fri, Jul 02, 2010 at 11:12:13AM -0700, Julian Elischer wrote: every now and then, for fun I run up a chroot of freebsd 1.1. or 1.0 under a chroot. Usually hillarity ensues with teh 15 second kernel compile

Re: running old binaries on -current

2011-12-04 Thread Yamagi Burmeister
On Sun, 4 Dec 2011 22:25:19 +0200 Kostik Belousov kostik...@gmail.com wrote: Try to set sysctl security.bsd.map_at_zero to 1. I didn't even think of that. It helped, thanks :) -- Homepage: www.yamagi.org XMPP: yam...@yamagi.org GnuPG/GPG: 0xEFBCCBCB pgpZ0f86AZ7Fv.pgp Description: PGP

/home and /usr/home not created by bsdinstall

2011-09-01 Thread Yamagi Burmeister
Hi, when installing FreeBSD 9.0-BETA1 and choosing the auto partition layout (Guided - Entire Disk - Exit - Save) with no seperate /usr/home partition and adding no user accounts to the system (Would you like to add users to the installed system now - No) neither the /usr/home directory nor the

Re: /home and /usr/home not created by bsdinstall

2011-09-01 Thread Yamagi Burmeister
On Thu, 01 Sep 2011 11:45:17 +0200 Lars Engels lars.eng...@0x20.net wrote: this was already reported and will be fixed in BETA2. The cause was a bug in pw(8). Ah okay, I didn't know that. Sorry for the noise :) -- Homepage: www.yamagi.org XMPP: yam...@yamagi.org GnuPG/GPG: 0xEFBCCBCB

Re: PHORONIX: OpenCL, GLSL Back-End For LLVM May Soon Open Up

2011-08-29 Thread Yamagi Burmeister
On Mon, 29 Aug 2011 20:12:54 +0800 Adrian Chadd adr...@freebsd.org wrote: Hi, http://forums.nvidia.com/index.php?showtopic=38242 Post 18 This indicates the driver supports CUDA somehow. What's missing is a FreeBSD runtime. Can someone please do some legwork with this and see if it's

Reproducible panic with TRIM and ufs snapshots

2011-06-21 Thread Yamagi Burmeister
Hi, I encountered a panic in the 2011/05 snapshot of 9-current. Snapshot creation an UFS filesystem with or without SU+J leads to panic: % mdconfig -a -t malloc -s 128m % newfs -U -O2 -t /dev/md0 % mount /dev/md0 /mnt % mksnap_ffs /mnt /mnt/foo = panic My system is: fbsd-vbox# uname -a

PATCH: Potential ressource leak in sys/dev/fb/vesa.c

2010-07-01 Thread Yamagi Burmeister
Hello, while tracking down a bug in vesa.c which caused a crash a friend of mine noticed a potential ressource leak in vesa.c. In line 841 the execution is aborted via return (1); without freeing the already allocated resources. the attached patch changes the line to goto fail; which seems more