Displaying 9 results from an estimated 9 matches for "is_master".
2006 Aug 15
0
[git patches] ocfs2 updates
...IED;
status = DLM_DENIED;
dlm_error(status);
*actions = 0;
} else {
/* unlock granted lock */
- lksb->status = DLM_NORMAL;
status = DLM_NORMAL;
*actions = (DLM_UNLOCK_FREE_LOCK |
DLM_UNLOCK_CALL_AST |
@@ -632,6 +620,8 @@ retry:
spin_lock(&res->spinlock);
is_master = (res->owner == dlm->node_num);
+ if (flags & LKM_VALBLK && lock->ml.type != LKM_EXMODE)
+ flags &= ~LKM_VALBLK;
spin_unlock(&res->spinlock);
if (is_master) {
@@ -665,7 +655,7 @@ retry:
}
if (call_ast) {
- mlog(0, "calling unlockast(%p, %d)\n"...
2019 Nov 28
0
error in parallel:::sendMaster
...hild (all OK):
(gdb) break mc_send_master
Breakpoint 1 at 0x7f5b2687b0a0: file fork.c, line 681.
(gdb) c
Continuing.
Breakpoint 1, mc_send_master (what=0x555c6dd2cd00) at fork.c:681
warning: Source file is more recent than executable.
681 {
(gdb) info args
what = 0x555c6dd2cd00
(gdb) n
682 if (is_master)
(gdb) n
684 if (master_fd == -1)
(gdb) n
686 if (TYPEOF(what) != RAWSXP)
(gdb) n
688 R_xlen_t len = XLENGTH(what);
(gdb) n
689 unsigned char *b = RAW(what);
(gdb) n
693 if (writerep(master_fd, &len, sizeof(len)) != sizeof(len)) {
(gdb) info locals
len = 538
b = <optimi...
2019 Nov 28
1
error in parallel:::sendMaster
...int 1 at 0x7f5b2687b0a0: file fork.c, line 681.
> (gdb) c
> Continuing.
>
> Breakpoint 1, mc_send_master (what=0x555c6dd2cd00) at fork.c:681
> warning: Source file is more recent than executable.
> 681 {
> (gdb) info args
> what = 0x555c6dd2cd00
> (gdb) n
> 682 if (is_master)
> (gdb) n
> 684 if (master_fd == -1)
> (gdb) n
> 686 if (TYPEOF(what) != RAWSXP)
> (gdb) n
> 688 R_xlen_t len = XLENGTH(what);
> (gdb) n
> 689 unsigned char *b = RAW(what);
> (gdb) n
> 693 if (writerep(master_fd, &len, sizeof(len)) != sizeof(le...
2019 Dec 04
0
error in parallel:::sendMaster
...ntinuing.
>>>
>>> Breakpoint 1, mc_send_master (what=3D0x555c6dd2cd00) at fork.c:681
>>> warning: Source file is more recent than executable.
>>> 681 {
>>> (gdb) info args
>>> what =3D 0x555c6dd2cd00
>>> (gdb) n
>>> 682 if (is_master)
>>> (gdb) n
>>> 684 if (master_fd =3D=3D -1)
>>> (gdb) n
>>> 686 if (TYPEOF(what) !=3D RAWSXP)
>>> (gdb) n
>>> 688 R_xlen_t len =3D XLENGTH(what);
>>> (gdb) n
>>> 689 unsigned char *b =3D RAW(what);
>>>...
2019 Dec 04
0
error in parallel:::sendMaster
...ntinuing.
>>>
>>> Breakpoint 1, mc_send_master (what=3D0x555c6dd2cd00) at fork.c:681
>>> warning: Source file is more recent than executable.
>>> 681 {
>>> (gdb) info args
>>> what =3D 0x555c6dd2cd00
>>> (gdb) n
>>> 682 if (is_master)
>>> (gdb) n
>>> 684 if (master_fd =3D=3D -1)
>>> (gdb) n
>>> 686 if (TYPEOF(what) !=3D RAWSXP)
>>> (gdb) n
>>> 688 R_xlen_t len =3D XLENGTH(what);
>>> (gdb) n
>>> 689 unsigned char *b =3D RAW(what);
>>>...
2019 Nov 27
2
error in parallel:::sendMaster
Hi Andreas,
the error is reported when some child process cannot send results to the
master process, which originates from an error returned by write() -
when write() returns -1 or 0. The logic around the writing has not
changed since R 3.5.2. It should not be related to the printing in the
child, only to returning the value. The problem may be originating from
the execution environment,
2010 Apr 09
4
Patch: support URLAUTH, BURL, CATENATE
...vecot-1.2.11+lemonade/src/auth/auth.c
--- dovecot-1.2.11/src/auth/auth.c 2010-01-24 17:14:17.000000000 -0600
+++ dovecot-1.2.11+lemonade/src/auth/auth.c 2010-04-08 09:59:12.000000000 -0500
@@ -37,6 +37,8 @@
masterdb_p = &auth->masterdbs;
auth_passdb = NULL;
for (i = 1; ; i++) {
+ bool is_master; /* APPLE - urlauth */
+
driver = getenv(t_strdup_printf("PASSDB_%u_DRIVER", i));
if (driver == NULL)
break;
@@ -49,7 +51,16 @@
auth_passdb->pass =
getenv(t_strdup_printf("PASSDB_%u_PASS", i)) != NULL;
- if (getenv(t_strdup_printf(&...
2011 May 13
18
Thoughts about extlookup: http://blog.wl0.org/2011/05/thoughts-about-extlookup-in-puppet/
Hi,
I have been trying to improve the coding of some of
my puppet recipes and had some trouble so wrote this:
http://blog.wl0.org/2011/05/thoughts-about-extlookup-in-puppet/
Comments on the web seem to indicate that extlookup() solves "all
problems" but I don''t really see that and hence have proposed a possible
way to keep the data closer together and make the extlookup()
2012 Dec 12
43
[PATCH 00/37] [RFC] revamped modeset locking
Hi all,
First thing first: It works, I now no longer have a few dropped frames every 10s
on my testbox here with the pageflip i-g-t tests.
Random notes:
- New design has per-crtc locks to protect the crtc input-side (pageflip,
cursor) for r/w and the output state of the crtc (mode, dpms) as read-only. It
also required completely revamped fb lifecycle management, those are now
refcounted