Displaying 20 results from an estimated 132 matches for "pmap".
Did you mean:
map
2018 Jan 15
2
Using the host name of the volume, its related commands can become very slow
...sr/sbin/glusterfs(glusterfs_sigwaiter+0x11c) [0xaaaad6e19bc0] -->/usr/sbin/glusterfs(cleanup_and_exit+0x78) [0xaaaad6e199fc] ) 0-: received signum (15), shutting down
[root at f08n25glusterfs]# tail -n 50 etc-glusterfs-glusterd.vol.log
[2018-02-03 13:55:09.106663] I [MSGID: 106143] [glusterd-pmap.c:231:pmap_registry_bind] 0-pmap: adding brick /data/gluster/d5da7794-2654-4845-b8ba-a2ed01c04b41/W_W on port 49195
[2018-02-03 13:55:09.108871] I [MSGID: 106143] [glusterd-pmap.c:231:pmap_registry_bind] 0-pmap: adding brick /data/gluster/d5da7794-2654-4845-b8ba-a2ed01c04b41/QAQ on port 49183
[2018...
2018 Jan 16
0
Using the host name of the volume, its related commands can become very slow
...sterfs_sigwaiter+0x11c) [0xaaaad6e19bc0]
> -->/usr/sbin/glusterfs(cleanup_and_exit+0x78) [0xaaaad6e199fc] ) 0-:
> received signum (15), shutting down
>
> [root at f08n25glusterfs]# tail -n 50 etc-glusterfs-glusterd.vol.log
> [2018-02-03 13:55:09.106663] I [MSGID: 106143] [glusterd-pmap.c:231:pmap_registry_bind]
> 0-pmap: adding brick /data/gluster/d5da7794-2654-4845-b8ba-a2ed01c04b41/W_W
> on port 49195
> [2018-02-03 13:55:09.108871] I [MSGID: 106143] [glusterd-pmap.c:231:pmap_registry_bind]
> 0-pmap: adding brick /data/gluster/d5da7794-2654-4845-b8ba-a2ed01c04b41/QAQ...
2003 Aug 22
3
PAE removal patch for testing
...old/i386/i386/db_interface.c Thu Aug 21 18:35:33 2003
+++ /usr/src/sys/i386/i386/db_interface.c Fri Aug 22 02:15:24 2003
@@ -251,7 +251,7 @@
if (addr > trunc_page((vm_offset_t)btext) - size &&
addr < round_page((vm_offset_t)etext)) {
- ptep0 = vtopte(addr);
+ ptep0 = pmap_pte(kernel_pmap, addr);
oldmap0 = *ptep0;
*ptep0 |= PG_RW;
@@ -259,14 +259,14 @@
if ((*ptep0 & PG_PS) == 0) {
addr1 = trunc_page(addr + size - 1);
if (trunc_page(addr) != addr1) {
- ptep1 = vtopte(addr1);
+ ptep1 = pmap_pte(kernel_pmap, addr1);...
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.
...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 limit on PV entries, consider increasing either the
vm.pmap.shpgperproc or the vm.pmap.pv_entry_max sysctl.
Approaching the limit on PV entries, consider increasing either the
vm.pmap.shpgperproc or the vm.pmap.pv_entry_max sysctl.
I have increased vm.pmap.shpgperproc to 2000 and this seemed to stop complaints
for a little while but they occur again......
2013 Feb 14
2
i386: vm.pmap kernel local race condition
...m_auth sometimes results in squid crash
as it sometimes has several hundreds requests per second to authorize
and is intolerant to exhaustion of free ntlm_auth.
"squid -k rotatelog" at midnight results in crash:
Feb 14 00:03:00 irl savecore: reboot after panic: get_pv_entry: increase vm.pmap.shpgperproc
Feb 14 00:03:00 irl savecore: writing core to vmcore.1
Btw, I have coredump.
vm.pmap.shpgperproc has default value (200) here, as well as m.v_free_min,
vm.v_free_reserved, and vm.v_free_target and KVA_PAGES.
These crashes are pretty regular
# last|fgrep reboot...
2017 Jun 07
2
purrr::pmap does not work
...ab = "Independent #1"
)
-- cut --
It is tedious to repeat the statement for all independent variables. Found
an alternative, i.e. :
-- cut --
mu <- list(5, 10, -3)
sigma <- list(1, 5, 10)
n <- list(1, 3, 5)
fargs <- list(mean = mu, sd = sigma, n = n)
fargs %>%
purrr::pmap(rnorm) %>%
str()
-- cut --
I tried to use this for may scatterplot task:
-- cut --
var_battery$v08 <- paste0("v08_", formatC(1:8, width = 2, format = "d",
flag = "0"))
v08_var_labs <- paste0("Label_", 1:8)
dataset <- as.data.frame(
matri...
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),
always combining the elements at the current position into a vector,
which will result in a list like this:
```
[[1]]
[1] 7 2...
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...
2018 Mar 21
2
Brick process not starting after reinstall
...Received ACC from uuid: 0e8b912a-bcff-4b33-88c6-428b3e658440, host:
borg-sphere-one, port: 0
[2018-03-20 13:34:14.298935] I
[glusterd-utils.c:5847:glusterd_brick_start] 0-management:
discovered already-running brick /srv/gluster_engine/brick
[2018-03-20 13:34:14.298958] I [MSGID: 106143]
[glusterd-pmap.c:295:pmap_registry_bind] 0-pmap: adding brick
/srv/gluster_engine/brick on port 49152
[2018-03-20 13:34:14.299037] I
[glusterd-utils.c:5847:glusterd_brick_start] 0-management:
discovered already-running brick /srv/gluster_export/brick
[2018-03-20 13:34:14.299051] I [MSGID: 106143]
[glusterd-pmap.c...
2003 Sep 08
1
ports/55928: vmware2 broken on -STABLE, presumably by PAE import
...ckPage vpn=0x048a65 mpn=000000 already tracked
Sep 8 10:07:58 noname last message repeated 4 times
Oh, and FreeBSD gets unstable with these patches of yours. I've seen
several hard hangs.
I cleaned up the patch to be relative to the current port (patch
attached). I'm applying your patch (pmap.patch-stable) if OSVERSION is
less than 500000, and higher or equal to 480101 (which was used at the
time of the PAE MFC).
For those on the Cc: list, I added you because you committed PAE/pmap
things, are on the -stable list or maintain the vmware2 port. :)
Any tips or improvements to the patch t...
2018 Mar 21
0
Brick process not starting after reinstall
...12a-bcff-4b33-88c6-428b3e658440, host:
> borg-sphere-one, port: 0
> [2018-03-20 13:34:14.298935] I
> [glusterd-utils.c:5847:glusterd_brick_start] 0-management:
> discovered already-running brick /srv/gluster_engine/brick
> [2018-03-20 13:34:14.298958] I [MSGID: 106143]
> [glusterd-pmap.c:295:pmap_registry_bind] 0-pmap: adding brick
> /srv/gluster_engine/brick on port 49152
> [2018-03-20 13:34:14.299037] I
> [glusterd-utils.c:5847:glusterd_brick_start] 0-management:
> discovered already-running brick /srv/gluster_export/brick
> [2018-03-20 13:34:14.299051] I [MSGID:...
2024 Sep 28
1
Is there a sexy way ...?
...t.org> On Behalf Of Lennart Kasserra
Sent: Saturday, September 28, 2024 1:59 AM
To: Rolf Turner <rolfturner at posteo.net>; r-help at r-project.org; lennart.kasserra at gmail.com
Subject: Re: [R] 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...
2018 Mar 20
0
brick processes not starting
...Received ACC from uuid: 0e8b912a-bcff-4b33-88c6-428b3e658440, host:
borg-sphere-one, port: 0
[2018-03-20 13:34:14.298935] I
[glusterd-utils.c:5847:glusterd_brick_start] 0-management:
discovered already-running brick /srv/gluster_engine/brick
[2018-03-20 13:34:14.298958] I [MSGID: 106143]
[glusterd-pmap.c:295:pmap_registry_bind] 0-pmap: adding brick
/srv/gluster_engine/brick on port 49152
[2018-03-20 13:34:14.299037] I
[glusterd-utils.c:5847:glusterd_brick_start] 0-management:
discovered already-running brick /srv/gluster_export/brick
[2018-03-20 13:34:14.299051] I [MSGID: 106143]
[glusterd-pmap.c...
2024 Sep 28
2
Is there a sexy way ...?
...aturday, September 28, 2024 1:59 AM
> To: Rolf Turner <rolfturner at posteo.net>; r-help at r-project.org;
> lennart.kasserra at gmail.com
> Subject: Re: [R] 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
>...
2017 Dec 15
3
Production Volume will not start
...ement: Staging of operation 'Volume Status' failed on localhost : Volume gv0 is not started
[2017-12-15 18:11:39.412700] I [glusterd-utils.c:5926:glusterd_brick_start] 0-management: starting a fresh brick process for brick /exp/b2/gv0
[2017-12-15 18:11:42.405966] I [MSGID: 106143] [glusterd-pmap.c:280:pmap_registry_bind] 0-pmap: adding brick /exp/b2/gv0 on port 49153
[2017-12-15 18:11:42.406415] I [rpc-clnt.c:1044:rpc_clnt_connection_init] 0-management: setting frame-timeout to 600
[2017-12-15 18:11:42.406669] I [glusterd-utils.c:5926:glusterd_brick_start] 0-management: starting a fresh br...
2003 Aug 07
0
understanding a panic / crash dump
...usr/src/sys/kern/kern_shutdown.c:487
#1 0xc01593ac in boot (howto=260) at /usr/src/sys/kern/kern_shutdown.c:316
#2 0xc0159814 in poweroff_wait (junk=0xc026f0aa, howto=1) at
/usr/src/sys/kern/kern_shutdown.c:595
#3 0xc026f0aa in bsl1 ()
#4 0xc026d1aa in get_pv_entry () at /usr/src/sys/i386/i386/pmap.c:1539
#5 0xc026d34f in pmap_insert_entry (pmap=0xc02f1620, va=3299061760,
mpte=0x0, m=0xc07de248)
at /usr/src/sys/i386/i386/pmap.c:1635
#6 0xc026da8c in pmap_enter (pmap=0xc02f1620, va=3299061760, m=0xc07de248,
prot=7 '\a', wired=1)
at /usr/src/sys/i386/i386/pmap.c:2134
#7 0...
2013 Mar 19
1
Panic : bad pte
...is not available.
) at pcpu.h:224
#1 0x0000000000000004 in ?? ()
#2 0xffffffff8048c156 in kern_reboot (howto=260) at
/usr/src/sys/kern/kern_shutdown.c:448
#3 0xffffffff8048c619 in panic (fmt=0x1 <Address 0x1 out of bounds>)
at /usr/src/sys/kern/kern_shutdown.c:636
#4 0xffffffff8065f88a in pmap_remove_pages (pmap=0xfffffe0005a2fa60)
at /usr/src/sys/amd64/amd64/pmap.c:4156
#5 0xffffffff8063d26b in vmspace_exit (td=0xfffffe0005a05470) at
/usr/src/sys/vm/vm_map.c:422
#6 0xffffffff8045d725 in exit1 (td=0xfffffe0005a05470, rv=Variable
"rv" is not available.
) at /usr/src/sys/kern/k...
2013 Aug 08
2
not able to restart the brick for distributed volume
...r 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 14:19:42.280852] I [glusterd-pmap.c:271:pmap_registry_remove]
0-pmap: removing brick (null) on port 49160
[2013-08-08 14:19:42.283583] E
[glusterd-utils.c:4023:glusterd_brick_start] 0-management: Unable to start
brick 192.168.24.80:/.krfs/_home
[2013-08-08 14:19:42.283637] E [glusterd-syncop.c:830:gd_sync_task_begin]
0-manageme...
2017 Dec 18
0
Production Volume will not start
...39;Volume Status' failed on localhost :
> Volume gv0 is not started
>
> [2017-12-15 18:11:39.412700] I [glusterd-utils.c:5926:glusterd_brick_start]
> 0-management: starting a fresh brick process for brick /exp/b2/gv0
>
> [2017-12-15 18:11:42.405966] I [MSGID: 106143] [glusterd-pmap.c:280:pmap_registry_bind]
> 0-pmap: adding brick /exp/b2/gv0 on port 49153
>
> [2017-12-15 18:11:42.406415] I [rpc-clnt.c:1044:rpc_clnt_connection_init]
> 0-management: setting frame-timeout to 600
>
> [2017-12-15 18:11:42.406669] I [glusterd-utils.c:5926:glusterd_brick_start]
>...
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)