Link [ NetBSD | NetBSD OpenGrok source search | PR fulltext-search | Summary of daily snapshot builds | history of daily build result | pkgsrc commit viewer ]


   
        usage: [branch:branch] [user:user] [path@revision] keyword [... [-excludekeyword [...]]] (e.g. branch:MAIN sys/arch/arm, if_wm.c@1.234 )




switch to index mode

recent branches: MAIN (6h)  netbsd-10 (19d)  netbsd-9 (19d)  netbsd-8 (23d) 

2024-06-04 13:21:57 UTC Now

2008-10-15 16:00:47 UTC wrstuden-revivesa commitmail json YAML

Add alias for ktr_saupcall, so things build w/o KTRACE.

(wrstuden)

2008-10-15 06:45:25 UTC wrstuden-revivesa commitmail json YAML

Don't install sys/sa.h and sys/savar.h.

(wrstuden)

2008-10-15 06:43:23 UTC wrstuden-revivesa commitmail json YAML

Per discussion with core, bring this file back under sys/compat.
I chose compat/sa/compat_sa.c as there is only one file. Please
see sys/kern/kern_sa.c for revision history.

(wrstuden)

2008-10-15 04:56:55 UTC wrstuden-revivesa commitmail json YAML

2008-10-15 04:46:19 UTC wrstuden-revivesa commitmail json YAML

Add sys/sa.h and sys/savar.h which I think are needed with
today's syscall change.

(wrstuden)

2008-10-14 20:36:21 UTC wrstuden-revivesa commitmail json YAML

Adapt kern.no_sa_support so that it changes sa_system_disabled
and thus actually controls SA.

(wrstuden)

2008-10-14 20:25:43 UTC wrstuden-revivesa commitmail json YAML

Add a new vp-private flag, SAVP_FLAG_DELIVERING. This flag indicates
that the vp is in the process of delivering a new-thread upcall.
This is a BLOCKED or NEWPROC upcall. Do NOT generate any BLOCKED
upcalls while this is set. Set it at the end of sa_switchcall()
and clear it at syscall entry. Sadly, I have found no other
way to handle this. The old SA interface has no way for
userland to acknowledge that it got the upcall, so use syscall
entry as the indicator that libpthread got it.

This addresses the issue seen on current-users with firefox
dying with a blockedgen != unbockedgen error. The problem is we
deliver a BLOCKED upcall, but between the end of userret()
and when the CPU indicates that it's running in user mode, we take
a page fault. Said page fault blocks, blocking upcall delivery.
The original block, however, was short-lived, and the UNBLOCK
happens shortly. It happens before libpthread actually notices
the BLOCKED upcall. Boom!

Unfortunately a LOCKDEBUG/DIAGNOSTIC kernel still dies before
firefox opens. However this new issue is with uvm code calling
mtsleep when not holding a correct lock; sa_switch() is exploding
at KASSERT(lwp_locked(l, NULL)); before it's done _anything_.

Also, while here, add sa_system_disabled. This is an integer
that we examine when starting SA for a proc. If it's non-zero,
we error out. Once this is hooked into sysctl, you'll be able to
disable SA w/o recompiling.

(wrstuden)

2008-10-10 18:10:30 UTC wrstuden-revivesa commitmail json YAML

Add code to adjust how we generate upcalls in sa_yield(). The
key problem is that we can only return from sys_sa_yield() iff
there are upcalls, and in some cases we can only tell that there
are upcalls to deliver after we have run userret().

So if we get woken up in a way that might not have generated upcalls
(timers, signals), try delivering upcalls. If we delivered something,
exit.

Add a flag to the vp & set it if we do this. In userret(), clear
the flag if set. Also, clear it in sa_upcall_userret() iff we get
into there.

Add comments describing the above so that the next person looking at
the code can understand it.

(wrstuden)

2008-10-06 18:05:01 UTC wrstuden-revivesa commitmail json YAML

Temporarily disable sending more than one unblocked upcall at once.
Something's wrong in the copy-out, and programs die as a result.

(wrstuden)

2008-10-01 16:46:36 UTC wrstuden-revivesa commitmail json YAML

Adapt all the tests that look for LW_WEXIT to also look for PS_WCORE
and PS_WEXIT.

Also look for PS_WCORE in sa_newcachelwp().

(wrstuden)

2008-09-28 21:23:32 UTC wrstuden-revivesa commitmail json YAML

2008-09-28 21:18:53 UTC wrstuden-revivesa commitmail json YAML

2008-09-28 21:17:12 UTC wrstuden-revivesa commitmail json YAML

2008-09-28 21:14:14 UTC wrstuden-revivesa commitmail json YAML

2008-09-28 20:37:20 UTC wrstuden-revivesa commitmail json YAML

2008-09-27 03:45:43 UTC wrstuden-revivesa commitmail json YAML

Let's look for threads in the TARGET process, not in the
debugger process (gdb). Noticed when a KASSERT fired while
running gdb on a threaded app.

(wrstuden)

2008-09-25 19:26:01 UTC wrstuden-revivesa commitmail json YAML

Typo in comment and define 'p' in getucontext32_sa.

(skrll)

2008-09-25 19:22:39 UTC wrstuden-revivesa commitmail json YAML

We now don't set PS_WEXIT in sigexit() when we're doing a core dump.
So check for PS_WCORE too.

(wrstuden)

2008-09-25 18:24:20 UTC wrstuden-revivesa commitmail json YAML

We want to call mi_switch() if the process is exiting, not just if our
specific thread is exiting.

(wrstuden)

2008-09-25 18:21:41 UTC wrstuden-revivesa commitmail json YAML

Add opt_sa.h to help librump along.

(wrstuden)

2008-09-25 18:15:38 UTC wrstuden-revivesa commitmail json YAML

Revive /usr/include/sys/sa.h and add /usr/include/sys/satypes.h.

(wrstuden)

2008-09-25 17:58:51 UTC wrstuden-revivesa commitmail json YAML

2008-09-25 06:12:28 UTC wrstuden-revivesa commitmail json YAML

Hack a merge to the "new" wrstuden-revivesa-base-3 tag for this file.
It turns out the problems with regression tests were really with
VIRTUAL timers. The timers that the round-robin scheduling in libpthread
uses to switch stuff around. Fixing that make the "kill1" regression
test complete in a timely manner. So pull in the rev
between 1.151 and 1.152, which now lines us up with our new base.

(wrstuden)

2008-09-24 19:24:00 UTC wrstuden-revivesa commitmail json YAML

2008-09-24 18:06:13 UTC wrstuden-revivesa commitmail json YAML

Scoot a little past wrstuden-revivesa-base-3 to get working code.

(wrstuden)

2008-09-24 17:04:27 UTC wrstuden-revivesa commitmail json YAML

Fix typo in call to sys_nosys().

(wrstuden)

2008-09-24 16:41:23 UTC wrstuden-revivesa commitmail json YAML

2008-09-24 16:38:59 UTC wrstuden-revivesa commitmail json YAML

2008-09-24 16:35:51 UTC wrstuden-revivesa commitmail json YAML

2008-09-24 16:35:09 UTC wrstuden-revivesa commitmail json YAML

src/external/bsd/pcc/dist/pcc/cc/ccom/pftn.c@1.3.2.3 / diff / nxr@1.3.2.3
src/external/mit/xorg/bin/xinit/Makefile@1.2.2.3 / diff / nxr@1.2.2.3
src/external/mit/xorg/include/bigreqsproto/Makefile@1.2.2.3 / diff / nxr@1.2.2.3
src/external/mit/xorg/include/compositeproto/Makefile@1.2.2.3 / diff / nxr@1.2.2.3
src/external/mit/xorg/include/damageproto/Makefile@1.2.2.3 / diff / nxr@1.2.2.3
src/external/mit/xorg/include/evieext/Makefile@1.2.2.3 / diff / nxr@1.2.2.3
src/external/mit/xorg/include/fixesproto/Makefile@1.2.2.3 / diff / nxr@1.2.2.3
src/external/mit/xorg/include/fontcacheproto/Makefile@1.2.2.3 / diff / nxr@1.2.2.3
src/external/mit/xorg/include/fontsproto/Makefile@1.2.2.3 / diff / nxr@1.2.2.3
src/external/mit/xorg/include/glproto/Makefile@1.2.2.3 / diff / nxr@1.2.2.3
src/external/mit/xorg/include/inputproto/Makefile@1.2.2.3 / diff / nxr@1.2.2.3
src/external/mit/xorg/include/kbproto/Makefile@1.2.2.3 / diff / nxr@1.2.2.3
src/external/mit/xorg/include/printproto/Makefile@1.2.2.3 / diff / nxr@1.2.2.3
src/external/mit/xorg/include/randrproto/Makefile@1.2.2.3 / diff / nxr@1.2.2.3
src/external/mit/xorg/include/recordproto/Makefile@1.2.2.3 / diff / nxr@1.2.2.3
src/external/mit/xorg/include/renderproto/Makefile@1.2.2.3 / diff / nxr@1.2.2.3
src/external/mit/xorg/include/resourceproto/Makefile@1.2.2.3 / diff / nxr@1.2.2.3
src/external/mit/xorg/include/scrnsaverproto/Makefile@1.2.2.3 / diff / nxr@1.2.2.3
src/external/mit/xorg/include/trapproto/Makefile@1.2.2.3 / diff / nxr@1.2.2.3
src/external/mit/xorg/include/videoproto/Makefile@1.2.2.3 / diff / nxr@1.2.2.3
      :
(more 131 files)
Merge in changes between wrstuden-revivesa-base-2 and
wrstuden-revivesa-base-3.

(wrstuden)

2008-09-24 16:32:57 UTC wrstuden-revivesa commitmail json YAML

2008-09-24 16:30:24 UTC wrstuden-revivesa commitmail json YAML

2008-09-24 16:29:49 UTC wrstuden-revivesa commitmail json YAML

Merge in changes between wrstuden-revivesa-base-2 and
wrstuden-revivesa-base-3.

(wrstuden)

2008-09-24 05:28:33 UTC wrstuden-revivesa commitmail json YAML

2008-09-24 04:59:05 UTC wrstuden-revivesa commitmail json YAML

2008-09-24 04:58:25 UTC wrstuden-revivesa commitmail json YAML

2008-09-24 04:54:48 UTC wrstuden-revivesa commitmail json YAML

2008-09-24 04:45:56 UTC wrstuden-revivesa commitmail json YAML

Add files missed in sync with head

(wrstuden)

2008-09-24 04:08:38 UTC wrstuden-revivesa commitmail json YAML

2008-09-19 19:27:39 UTC wrstuden-revivesa commitmail json YAML

2008-09-19 19:23:53 UTC wrstuden-revivesa commitmail json YAML

2008-09-19 19:22:39 UTC wrstuden-revivesa commitmail json YAML

2008-09-19 18:18:48 UTC wrstuden-revivesa commitmail json YAML

src/dist/bind/bin/tests/system/acl/clean.sh@1.1.1.1.4.2 / diff / nxr@1.1.1.1.4.2
src/dist/bind/bin/tests/system/acl/ns2/named1.conf@1.1.1.1.4.2 / diff / nxr@1.1.1.1.4.2
src/dist/bind/bin/tests/system/acl/ns2/named2.conf@1.1.1.1.4.2 / diff / nxr@1.1.1.1.4.2
src/dist/bind/bin/tests/system/acl/ns2/named3.conf@1.1.1.1.4.2 / diff / nxr@1.1.1.1.4.2
src/dist/bind/bin/tests/system/acl/ns2/named4.conf@1.1.1.1.4.2 / diff / nxr@1.1.1.1.4.2
src/dist/bind/bin/tests/system/acl/setup.sh@1.1.1.1.4.2 / diff / nxr@1.1.1.1.4.2
src/dist/bind/bin/tests/system/acl/tests.sh@1.1.1.2.2.2 / diff / nxr@1.1.1.2.2.2
src/dist/bind/contrib/query-loc-0.4.0/ADDRESSES@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
src/dist/bind/contrib/query-loc-0.4.0/ALGO@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
src/dist/bind/contrib/query-loc-0.4.0/INSTALL@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
src/dist/bind/contrib/query-loc-0.4.0/Makefile.in@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
src/dist/bind/contrib/query-loc-0.4.0/README@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
src/dist/bind/contrib/query-loc-0.4.0/USAGE@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
src/dist/bind/contrib/query-loc-0.4.0/config.h.in@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
src/dist/bind/contrib/query-loc-0.4.0/configure@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
src/dist/bind/contrib/query-loc-0.4.0/configure.in@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
src/dist/bind/contrib/query-loc-0.4.0/install-sh@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
src/dist/bind/contrib/query-loc-0.4.0/loc.c@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
src/dist/bind/contrib/query-loc-0.4.0/loc.h@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
src/dist/bind/contrib/query-loc-0.4.0/loc_ntoa.c@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
      :
(more 3 files)
Add some things missed in a previous merge.

(wrstuden)

2008-09-19 05:53:49 UTC wrstuden-revivesa commitmail json YAML

src/crypto/dist/openssl/crypto/cms/Makefile@1.1.1.1.4.2 / diff / nxr@1.1.1.1.4.2
src/crypto/dist/openssl/crypto/cms/cms.h@1.1.1.1.4.2 / diff / nxr@1.1.1.1.4.2
src/crypto/dist/openssl/crypto/cms/cms_asn1.c@1.1.1.1.4.2 / diff / nxr@1.1.1.1.4.2
src/crypto/dist/openssl/crypto/cms/cms_att.c@1.1.1.1.4.2 / diff / nxr@1.1.1.1.4.2
src/crypto/dist/openssl/crypto/cms/cms_cd.c@1.1.1.1.4.2 / diff / nxr@1.1.1.1.4.2
src/crypto/dist/openssl/crypto/cms/cms_dd.c@1.1.1.1.4.2 / diff / nxr@1.1.1.1.4.2
src/crypto/dist/openssl/crypto/cms/cms_enc.c@1.1.1.1.4.2 / diff / nxr@1.1.1.1.4.2
src/crypto/dist/openssl/crypto/cms/cms_env.c@1.1.1.1.4.2 / diff / nxr@1.1.1.1.4.2
src/crypto/dist/openssl/crypto/cms/cms_err.c@1.1.1.1.4.2 / diff / nxr@1.1.1.1.4.2
src/crypto/dist/openssl/crypto/cms/cms_ess.c@1.1.1.1.4.2 / diff / nxr@1.1.1.1.4.2
src/crypto/dist/openssl/crypto/cms/cms_io.c@1.1.1.1.4.2 / diff / nxr@1.1.1.1.4.2
src/crypto/dist/openssl/crypto/cms/cms_lcl.h@1.1.1.1.4.2 / diff / nxr@1.1.1.1.4.2
src/crypto/dist/openssl/crypto/cms/cms_lib.c@1.1.1.1.4.2 / diff / nxr@1.1.1.1.4.2
src/crypto/dist/openssl/crypto/cms/cms_sd.c@1.1.1.1.4.2 / diff / nxr@1.1.1.1.4.2
src/crypto/dist/openssl/crypto/cms/cms_smime.c@1.1.1.1.4.2 / diff / nxr@1.1.1.1.4.2
src/crypto/dist/openssl/crypto/seed/Makefile@1.1.1.1.4.2 / diff / nxr@1.1.1.1.4.2
src/crypto/dist/openssl/crypto/seed/seed.c@1.1.1.1.4.2 / diff / nxr@1.1.1.1.4.2
src/crypto/dist/openssl/crypto/seed/seed.h@1.1.1.1.4.2 / diff / nxr@1.1.1.1.4.2
src/crypto/dist/openssl/crypto/seed/seed_cbc.c@1.1.1.1.4.2 / diff / nxr@1.1.1.1.4.2
src/crypto/dist/openssl/crypto/seed/seed_cfb.c@1.1.1.1.4.2 / diff / nxr@1.1.1.1.4.2
      :
(more 83 files)
Pull in some things missed in a previous update.

(wrstuden)

2008-09-18 05:18:54 UTC wrstuden-revivesa commitmail json YAML

src/external/mit/xorg/Makefile@1.3.2.2 / diff / nxr@1.3.2.2
src/external/mit/xorg/TODO@1.13.2.2 / diff / nxr@1.13.2.2
src/external/mit/xorg/bin/Makefile@1.2.2.2 / diff / nxr@1.2.2.2
src/external/mit/xorg/bin/appres/Makefile@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
src/external/mit/xorg/bin/bdftopcf/Makefile@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
src/external/mit/xorg/bin/bdftruncate/Makefile@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
src/external/mit/xorg/bin/beforelight/Makefile@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
src/external/mit/xorg/bin/bitmap/Makefile@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
src/external/mit/xorg/bin/bitmap/atobm/Makefile@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
src/external/mit/xorg/bin/bitmap/bmtoa/Makefile@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
src/external/mit/xorg/bin/ccmakedep/Makefile@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
src/external/mit/xorg/bin/cleanlinks/Makefile@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
src/external/mit/xorg/bin/cxpm/Makefile@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
src/external/mit/xorg/bin/editres/Makefile@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
src/external/mit/xorg/bin/fc-cache/Makefile@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
src/external/mit/xorg/bin/fc-cat/Makefile@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
src/external/mit/xorg/bin/fc-list/Makefile@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
src/external/mit/xorg/bin/fc-match/Makefile@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
src/external/mit/xorg/bin/fonttosfnt/Makefile@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
src/external/mit/xorg/bin/fslsfonts/Makefile@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
      :
(more 609 files)
Sync with wrstuden-revivesa-base-2.

(wrstuden)

2008-09-18 05:17:57 UTC wrstuden-revivesa commitmail json YAML

Sync with wrstuden-revivesa-base-2.

(wrstuden)

2008-09-18 05:17:27 UTC wrstuden-revivesa commitmail json YAML

src/external/gpl2/libdevmapper/dist/COPYING@1.1.1.1.4.2 / diff / nxr@1.1.1.1.4.2
src/external/gpl2/libdevmapper/dist/COPYING.LIB@1.1.1.1.4.2 / diff / nxr@1.1.1.1.4.2
src/external/gpl2/libdevmapper/dist/INSTALL@1.1.1.1.4.2 / diff / nxr@1.1.1.1.4.2
src/external/gpl2/libdevmapper/dist/INTRO@1.1.1.1.4.2 / diff / nxr@1.1.1.1.4.2
src/external/gpl2/libdevmapper/dist/Makefile.in@1.1.1.1.4.2 / diff / nxr@1.1.1.1.4.2
src/external/gpl2/libdevmapper/dist/README@1.1.1.1.4.2 / diff / nxr@1.1.1.1.4.2
src/external/gpl2/libdevmapper/dist/VERSION@1.1.1.1.4.2 / diff / nxr@1.1.1.1.4.2
src/external/gpl2/libdevmapper/dist/WHATS_NEW@1.1.1.1.4.2 / diff / nxr@1.1.1.1.4.2
src/external/gpl2/libdevmapper/dist/autoconf/config.guess@1.1.1.1.4.2 / diff / nxr@1.1.1.1.4.2
src/external/gpl2/libdevmapper/dist/autoconf/config.sub@1.1.1.1.4.2 / diff / nxr@1.1.1.1.4.2
src/external/gpl2/libdevmapper/dist/autoconf/install-sh@1.1.1.1.4.2 / diff / nxr@1.1.1.1.4.2
src/external/gpl2/libdevmapper/dist/configure@1.1.1.1.4.2 / diff / nxr@1.1.1.1.4.2
src/external/gpl2/libdevmapper/dist/configure.in@1.1.1.1.4.2 / diff / nxr@1.1.1.1.4.2
src/external/gpl2/libdevmapper/dist/contrib/dm-reverse.README@1.1.1.1.4.2 / diff / nxr@1.1.1.1.4.2
src/external/gpl2/libdevmapper/dist/contrib/dm-reverse.c@1.1.1.1.4.2 / diff / nxr@1.1.1.1.4.2
src/external/gpl2/libdevmapper/dist/debian/changelog@1.1.1.1.4.2 / diff / nxr@1.1.1.1.4.2
src/external/gpl2/libdevmapper/dist/debian/control@1.1.1.1.4.2 / diff / nxr@1.1.1.1.4.2
src/external/gpl2/libdevmapper/dist/debian/copyright@1.1.1.1.4.2 / diff / nxr@1.1.1.1.4.2
src/external/gpl2/libdevmapper/dist/debian/devmapper-dev.dirs@1.1.1.1.4.2 / diff / nxr@1.1.1.1.4.2
src/external/gpl2/libdevmapper/dist/debian/devmapper-dev.files@1.1.1.1.4.2 / diff / nxr@1.1.1.1.4.2
      :
(more 576 files)
Sync with wrstuden-revivesa-base-2.

(wrstuden)

2008-09-18 05:15:53 UTC wrstuden-revivesa commitmail json YAML

src/external/bsd/Makefile@1.4.2.2 / diff / nxr@1.4.2.2
src/external/bsd/dhcpcd/Makefile@1.1.2.2 / diff / nxr@1.1.2.2
src/external/bsd/dhcpcd/dist/README@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
src/external/bsd/dhcpcd/dist/bpf-filter.h@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
src/external/bsd/dhcpcd/dist/bpf.c@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
src/external/bsd/dhcpcd/dist/client.c@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
src/external/bsd/dhcpcd/dist/client.h@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
src/external/bsd/dhcpcd/dist/common.c@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
src/external/bsd/dhcpcd/dist/common.h@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
src/external/bsd/dhcpcd/dist/config.h@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
src/external/bsd/dhcpcd/dist/configure.c@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
src/external/bsd/dhcpcd/dist/configure.h@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
src/external/bsd/dhcpcd/dist/dhcp.c@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
src/external/bsd/dhcpcd/dist/dhcp.h@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
src/external/bsd/dhcpcd/dist/dhcpcd-hooks/01-test@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
src/external/bsd/dhcpcd/dist/dhcpcd-hooks/10-mtu@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
src/external/bsd/dhcpcd/dist/dhcpcd-hooks/20-resolv.conf@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
src/external/bsd/dhcpcd/dist/dhcpcd-hooks/29-lookup-hostname@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
src/external/bsd/dhcpcd/dist/dhcpcd-hooks/30-hostname@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
src/external/bsd/dhcpcd/dist/dhcpcd-hooks/50-ntp.conf@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
      :
(more 2231 files)
Sync with wrstuden-revivesa-base-2.

(wrstuden)

2008-09-18 04:54:20 UTC wrstuden-revivesa commitmail json YAML

src/common/lib/libc/arch/arm/atomic/atomic_add_32.S@1.2.2.2 / diff / nxr@1.2.2.2
src/common/lib/libc/arch/arm/atomic/atomic_and_32.S@1.2.2.2 / diff / nxr@1.2.2.2
src/common/lib/libc/arch/arm/atomic/atomic_cas_32.S@1.2.2.2 / diff / nxr@1.2.2.2
src/common/lib/libc/arch/arm/atomic/atomic_dec_32.S@1.2.2.2 / diff / nxr@1.2.2.2
src/common/lib/libc/arch/arm/atomic/atomic_inc_32.S@1.2.2.2 / diff / nxr@1.2.2.2
src/common/lib/libc/arch/arm/atomic/atomic_op_asm.h@1.2.2.2 / diff / nxr@1.2.2.2
src/common/lib/libc/arch/arm/atomic/atomic_or_32.S@1.2.2.2 / diff / nxr@1.2.2.2
src/common/lib/libc/arch/arm/atomic/atomic_swap.S@1.2.2.2 / diff / nxr@1.2.2.2
src/common/lib/libc/arch/arm/atomic/membar_ops.S@1.2.2.2 / diff / nxr@1.2.2.2
src/common/lib/libc/arch/hppa/atomic/Makefile.inc@1.3.6.1 / diff / nxr@1.3.6.1
src/common/lib/libc/arch/hppa/atomic/atomic_cas_up.S@1.1.2.2 / diff / nxr@1.1.2.2
src/common/lib/libc/atomic/atomic_op_namespace.h@1.3.2.1 / diff / nxr@1.3.2.1
src/common/lib/libc/gen/rb.c@1.3.2.2 / diff / nxr@1.3.2.2
src/common/lib/libc/stdlib/_strtol.h@1.1.2.2 / diff / nxr@1.1.2.2
src/common/lib/libc/stdlib/_strtoul.h@1.1.2.2 / diff / nxr@1.1.2.2
src/common/lib/libc/stdlib/strtoll.c@1.2.18.1 / diff / nxr@1.2.18.1
src/common/lib/libc/stdlib/strtoul.c@1.1.28.1 / diff / nxr@1.1.28.1
src/common/lib/libc/stdlib/strtoull.c@1.1.26.1 / diff / nxr@1.1.26.1
src/common/lib/libc/stdlib/strtoumax.c@1.1.28.1 / diff / nxr@1.1.28.1
src/common/lib/libc/sys/cpuset.c@1.10.2.4 / diff / nxr@1.10.2.4
      :
(more 60 files)
Sync with wrstuden-revivesa-base-2.

(wrstuden)

2008-09-18 04:49:46 UTC wrstuden-revivesa commitmail json YAML

Sync with wrstuden-revivesa-base-2.

(wrstuden)

2008-09-18 04:48:31 UTC wrstuden-revivesa commitmail json YAML

2008-09-18 04:46:05 UTC wrstuden-revivesa commitmail json YAML

2008-09-18 04:44:54 UTC wrstuden-revivesa commitmail json YAML

Sync with wrstuden-revivesa-base-2.

(wrstuden)

2008-09-18 04:41:22 UTC wrstuden-revivesa commitmail json YAML

2008-09-18 04:40:19 UTC wrstuden-revivesa commitmail json YAML

2008-09-18 04:39:59 UTC wrstuden-revivesa commitmail json YAML

2008-09-18 04:39:25 UTC wrstuden-revivesa commitmail json YAML

2008-09-18 04:38:43 UTC wrstuden-revivesa commitmail json YAML

Sync with wrstuden-revivesa-base-2.

(wrstuden)

2008-09-18 04:38:22 UTC wrstuden-revivesa commitmail json YAML

Sync with wrstuden-revivesa-base-2.

(wrstuden)

2008-09-18 04:38:10 UTC wrstuden-revivesa commitmail json YAML

2008-09-18 04:37:44 UTC wrstuden-revivesa commitmail json YAML

Sync with wrstuden-revivesa-base-2.

(wrstuden)

2008-09-18 04:37:35 UTC wrstuden-revivesa commitmail json YAML

2008-09-18 04:37:07 UTC wrstuden-revivesa commitmail json YAML

2008-09-18 04:35:12 UTC wrstuden-revivesa commitmail json YAML

2008-09-18 04:33:40 UTC wrstuden-revivesa commitmail json YAML

2008-09-18 04:31:45 UTC wrstuden-revivesa commitmail json YAML

2008-09-18 04:31:17 UTC wrstuden-revivesa commitmail json YAML

Sync with wrstuden-revivesa-base-2.
contains the one SA-related conflict resolution. :-)

(wrstuden)

2008-09-18 04:30:17 UTC wrstuden-revivesa commitmail json YAML

2008-09-18 04:29:29 UTC wrstuden-revivesa commitmail json YAML

2008-09-18 04:28:31 UTC wrstuden-revivesa commitmail json YAML

2008-09-18 04:27:43 UTC wrstuden-revivesa commitmail json YAML

2008-09-18 04:27:24 UTC wrstuden-revivesa commitmail json YAML

2008-09-17 05:42:11 UTC wrstuden-revivesa commitmail json YAML

2008-09-17 04:51:12 UTC wrstuden-revivesa commitmail json YAML

src/gnu/dist/postfix/man/man1/mailq.1@1.1.1.2.26.1 / diff / nxr@1.1.1.2.26.1
src/gnu/dist/postfix/man/man1/newaliases.1@1.1.1.2.26.1 / diff / nxr@1.1.1.2.26.1
src/gnu/dist/postfix/man/man1/postalias.1@1.1.1.10.12.1 / diff / nxr@1.1.1.10.12.1
src/gnu/dist/postfix/man/man1/postcat.1@1.1.1.5.20.1 / diff / nxr@1.1.1.5.20.1
src/gnu/dist/postfix/man/man1/postconf.1@1.1.1.9.10.1 / diff / nxr@1.1.1.9.10.1
src/gnu/dist/postfix/man/man1/postdrop.1@1.1.1.8.20.1 / diff / nxr@1.1.1.8.20.1
src/gnu/dist/postfix/man/man1/postfix.1@1.1.1.10.12.2 / diff / nxr@1.1.1.10.12.2
src/gnu/dist/postfix/man/man1/postkick.1@1.1.1.5.20.1 / diff / nxr@1.1.1.5.20.1
src/gnu/dist/postfix/man/man1/postlock.1@1.1.1.5.20.1 / diff / nxr@1.1.1.5.20.1
src/gnu/dist/postfix/man/man1/postlog.1@1.1.1.6.12.1 / diff / nxr@1.1.1.6.12.1
src/gnu/dist/postfix/man/man1/postmap.1@1.1.1.11.12.1 / diff / nxr@1.1.1.11.12.1
src/gnu/dist/postfix/man/man1/postqueue.1@1.1.1.8.12.1 / diff / nxr@1.1.1.8.12.1
src/gnu/dist/postfix/man/man1/postsuper.1@1.1.1.10.12.2 / diff / nxr@1.1.1.10.12.2
src/gnu/dist/postfix/man/man1/qmqp-sink.1@1.1.1.5.12.1 / diff / nxr@1.1.1.5.12.1
src/gnu/dist/postfix/man/man1/qmqp-source.1@1.1.1.6.12.1 / diff / nxr@1.1.1.6.12.1
src/gnu/dist/postfix/man/man1/qshape.1@1.1.1.5.12.1 / diff / nxr@1.1.1.5.12.1
src/gnu/dist/postfix/man/man1/sendmail.1@1.1.1.11.12.2 / diff / nxr@1.1.1.11.12.2
src/gnu/dist/postfix/man/man1/smtp-sink.1@1.1.1.6.12.2 / diff / nxr@1.1.1.6.12.2
src/gnu/dist/postfix/man/man1/smtp-source.1@1.1.1.6.12.2 / diff / nxr@1.1.1.6.12.2
src/gnu/dist/postfix/man/man5/access.5@1.1.1.15.12.2 / diff / nxr@1.1.1.15.12.2
      :
(more 794 files)
Sync with wrstuden-revivesa-base-2.

(wrstuden)

2008-09-17 04:47:00 UTC wrstuden-revivesa commitmail json YAML

2008-09-17 04:45:35 UTC wrstuden-revivesa commitmail json YAML

2008-09-17 04:44:00 UTC wrstuden-revivesa commitmail json YAML

2008-09-07 20:22:58 UTC wrstuden-revivesa commitmail json YAML

2008-09-07 18:30:18 UTC wrstuden-revivesa commitmail json YAML

Turn off sys_sa_preempt() for now. It's not ready for prime-time and it
will probably be done differenty.

(wrstuden)

2008-08-01 03:48:11 UTC wrstuden-revivesa commitmail json YAML

Disable generating an upcall for blocking on an adaptive mutex. While
we are indeed blocking, there really is no way for the app to take
advantage of this. We could, for instance, be sleeping on p_lock!

(wrstuden)

2008-07-26 19:51:12 UTC wrstuden-revivesa commitmail json YAML

sys__lwp_create() and sys__lwp_suspend(): Only test to see if a process is
an SA process ifdef KERN_SA.

sys__sched_setaffinity(): Don't allow changing (setting) the affinity
of an SA process (or a thread in an SA process). To really set the
affinity of a thread in an SA process, we need to set the affility
for all LWPs on which that user thread will run. This really means
setting the affinity on all present and future threads on a VP
and also having the user thread always run on an lwp on that VP. The
latter needs libpthread's intervention.

(wrstuden)

2008-07-21 19:13:46 UTC wrstuden-revivesa commitmail json YAML

2008-07-06 05:18:11 UTC wrstuden-revivesa commitmail json YAML

In sa_upcall_userret(), when pulling a thread off of savp_woken,
use l_sleepchain as the "next" member, no l_runq! It's on a sleep
queue after all...

(wrstuden)