Displaying 20 results from an estimated 700 matches similar to: "i386: vm.pmap kernel local race condition"
2008 May 14
1
Approaching the limit on PV entries, consider increasing either the vm.pmap.shpgperproc or the vm.pmap.pv_entry_max sysctl.
Hello,
I have a FreeBSD 7.0-STABLE amd64 box which gives this message with apache 2.2
very often. Previously the contents of the box was on 6.3-STABLE x86 and I had
no such problems. This started right away when we moved to 7, 64bit.
FreeBSD web.XXXXX.com 7.0-STABLE FreeBSD 7.0-STABLE #0: Tue Apr 22 02:13:30 UTC
2008 yurtesen@web.XXXXX.com:/usr/obj/usr/src/sys/WEB amd64
Approaching the
2003 Apr 06
1
load testing and tuning a 4GB RAM server
Hello everyone,
First of all, great job on the 4.8-R. We have been a long standing user of
FreeBSD and are very happy with everything.
Now my question. I am trying to stress test a new Dell PowerEdge server
and find the limits of its hardware and my tuning. Here are the server
stats:
* 2x Xeon 2.8 with SMP compiled, hyperthreading NOT compiled in kernel
* 4 GB of RAM, 8 GB of swap on Raid 1
2007 Dec 07
6
4.x Collecting pv entries Suggest increasing PMAP_SHPGPERPROC,
Hello List,
I know FreeBSD 4.x is old..., but we are using on a production system
with postgres and apache. The above message
is appearing periodically. I googled for the message but found no
recommendation for adjusting it.
Any suggestions.
Thanks,
Steve
--
"They that give up essential liberty to obtain temporary safety,
deserve neither liberty nor safety." (Ben Franklin)
2017 Jun 07
2
purrr::pmap does not work
Hi All,
I try to do a scatterplot for a bunch of variables. I plot a dependent
variable against a bunch of independent variables:
-- cut --
graphics::plot(
v01_r01 ~ v08_01_up11,
data = dataset,
xlab = "Dependent",
ylab = "Independent #1"
)
-- cut --
It is tedious to repeat the statement for all independent variables. Found
an alternative, i.e. :
-- cut --
mu
2012 Apr 16
1
RELENG_8 kernel as of Apr 14 does not boot
Hi,
Just update my 8.x kernel sources last weekend, and newly built kernel did
not boot for me:
link_elf: symbol mem_range_softc undefined
KLD file acpi.ko - could not finalize loading
kernel trap 12 with interrupts disabled
This is stripped down kernel with everything possible loaded from modules.
Any ideas? Did not see any warnings in UPDATING...
./danfe
2018 Jan 15
2
Using the host name of the volume, its related commands can become very slow
Using the host name of the volume, its related gluster commands can become very slow .For example,create,start,stop volume,nfs related commands. and some time And in some cases, the command will return Error : Request timed out
but If using ip address to create the volume. The volume all gluster commands are normal.
I have configured /etc/hosts correctly,Because,SSH can normally use the
2018 Jan 16
0
Using the host name of the volume, its related commands can become very slow
On Mon, Jan 15, 2018 at 6:30 PM, ?? <chenxi at shudun.com> wrote:
> Using the host name of the volume, its related gluster commands can become
> very slow .For example,create,start,stop volume,nfs related commands. and
> some time And in some cases, the command will return Error : Request timed
> out
> but If using ip address to create the volume. The volume all gluster
>
2012 Nov 03
1
freebsd-update and surces of 9.1-RC3
Hi!
I'm trying to use freebsd-update for first time.
I have 9.0-RELEASE installed without sources and I have read Handbook chapter
and manual page for freebsd-update.
"freebsd-update -r 9.1-RC3 upgrade" downloaded updates, its "install" command
installed kernel and after reboot second "install" invocation installed binaries
but not source tree that is needed to
2008 Jul 16
3
named.conf: query-source address
Hi!
I fully understand and second efforts on educating people
how to configure BIND to be stong to attacks and keep them from using
"query-source address" with "port" option but how about
binding named to particular IP address when host has many of them?
Using "query-source address" without "port" is the only solution
(not speaking of jails here) and safe
2003 Aug 14
4
bin/55346: /bin/sh eats memory and CPU infinitely
Hi!
It seems /bin/sh in 4.8-STABLE has problem with SIGCHLD processing.
In short, it often fails to process it correctly, zombies float
around, jobs are not marked as finished in jobtab[] that fills memory
and takes much CPU to be processed.
Run this one-liner using /bin/sh and see hundreds of zombies:
#!/bin/sh
while :; do : & done
A kernel will halt this as soon as it reaches limits and
2008 Sep 23
2
RELENG_7: buildworld failed with MODULES_WITH_WORLD=
Hi!
I've just tried to build NanoBSD from 7.0-STABLE sources
with MODULES_WITH_WORLD knob enabled and it failed.
Note that NanoBSD uses make -j3 by default and I have dualcore system.
===> sys/modules/nfslockd (depend)
@ -> /usr/local/src/sys
machine -> /usr/local/src/sys/i386/include
echo "#define INET6 1" > opt_inet6.h
awk -f @/tools/vnode_if.awk @/kern/vnode_if.src
2018 Mar 21
2
Brick process not starting after reinstall
Hi all,
our systems have suffered a host failure in a replica three setup.
The host needed a complete reinstall. I followed the RH guide to
'replace a host with the same hostname'
(https://access.redhat.com/documentation/en-us/red_hat_gluster_storage/3/html/administration_guide/sect-replacing_hosts).
The machine has the same OS (CentOS 7). The new machine got a minor
version number newer
2024 Sep 28
1
Is there a sexy way ...?
Hi Rolf,
this topic is probably already saturated, but here is a tidyverse solution:
```
library(purrr)
x <- list(
? `1` = c(7, 13, 1, 4, 10),
? `2` = c(2, 5,? 14, 8, 11),
? `3` = c(6, 9, 15, 12, 3)
)
x |>
? pmap(~ c(..1, ..2, ..3)) |>
? reduce(c)
#> [1]? 7? 2? 6 13? 5? 9? 1 14 15? 4? 8 12 10 11? 3
```
Here, we map over the elements of the list in parallel (hence pmap),
2003 Sep 16
2
buildworld tries to write to DESTDIR?
Hi!
I'm trying to cross-compile 4.8-STABLE world to install
it over NFS later.
I have ./make.conf:
# start of file
CPUTYPE=i486
KERNCONF?=CONS
MODULES_WITH_WORLD=true
DESTDIR=/mnt/cons
# end of file
I run:
dir=`pwd`
make __MAKE_CONF=$dir/make.conf buildworld 2>&1 | tee $dir/bw.log
It fails:
===> gnu/usr.bin/groff/contrib
===> gnu/usr.bin/groff/contrib/mm
sh
2008 Jun 25
3
Problem with /boot/loader
Hello,
I have a problem with loader. I recently upgraded from 6_rel to 7_rel.
Now when I install world there is a problem booting.
Here is what I do:
cd /usr/src
make buildworld
make buildkernel KERNCONF=BLACK
make installkernel KERNCONF=BLACK
At this point I can reboot and all is good. After boot I install the new world:
cd /usr/src
mergemaster -p
reboot into single user mode
cd /usr/src
make
2024 Sep 28
1
Is there a sexy way ...?
Sorry to append, but I just realised that of course
```
x |>
? pmap(c) |>
? reduce(c) |>
? unname()
```
also works and is a general solution in case your list has more than
three elements. Here, we map in parallel over all elements of the list,
always combining the current set of elements into a vector, and then
reduce the resulting list into a vector by combining the elements
2013 Mar 19
1
Panic : bad pte
Hello,
There it is, all my computers on FreeBSD 9.1-RELEASE had panic. I can
just say there is a problem in the 9.1-RELEASE because I had no panic
before. What afraid me is that my production server also panic'ed a
few days ago, fortunately it does not appears so often.
This is a panic that happened on my desktop computer, with a graphic
card. The crash usually appears when X starts.
GNU
2017 Dec 15
3
Production Volume will not start
Hi all,
I have an issue where our volume will not start from any node. When attempting to start the volume it will eventually return:
Error: Request timed out
For some time after that, the volume is locked and we either have to wait or restart Gluster services. In the gluserd.log, it shows the following:
[2017-12-15 18:00:12.423478] I [glusterd-utils.c:5926:glusterd_brick_start]
2013 Aug 08
2
not able to restart the brick for distributed volume
Hi All,
I am facing issues restarting the gluster volume. When I start the volume
after stopping it, the gluster fails to start the volume
Below is the message that I get on CLI
/root> gluster volume start _home
volume start: _home: failed: Commit failed on localhost. Please check the
log file for more details.
Logs says that it was unable to start the brick
[2013-08-08
2018 Mar 21
0
Brick process not starting after reinstall
Could you share the following information:
1. gluster --version
2. output of gluster volume status
3. glusterd log and all brick log files from the node where bricks didn't
come up.
On Wed, Mar 21, 2018 at 12:35 PM, Richard Neuboeck <hawk at tbi.univie.ac.at>
wrote:
> Hi all,
>
> our systems have suffered a host failure in a replica three setup.
> The host needed a