I've created my own tree on oss. I'll be pushing patches here before I
commit them to the real git tree, to give the community time to review.
I'm particularly curious about the patch below that I got from Michael
Newton. I presume it is a real bugfix, but I don't understand this area
of the code yet...
git://oss.sgi.com/mort/pcp.git
configure.in | 2 +-
src/include/impl.h | 1 -
src/libpcp/src/fetchlocal.c | 17 +-
src/pmdas/GNUmakefile | 11 +-
src/pmdas/cluster/GNUmakefile | 136 ++++++
src/pmdas/cluster/GNUmakefile.install | 28 ++
src/pmdas/cluster/Install | 43 ++
src/pmdas/cluster/Remove | 39 ++
src/pmdas/cluster/cluster.h | 241 +++++++++
src/pmdas/cluster/clusterns.pl | 343 +++++++++++++
src/pmdas/cluster/config | 50 ++
src/pmdas/cluster/etc_init.d_pmclusterd | 237 +++++++++
src/pmdas/cluster/pmclusterd.c | 543 +++++++++++++++++++++
src/pmdas/cluster/pmda.c | 397 +++++++++++++++
src/pmdas/cluster/root | 27 +
src/pmdas/cluster/server.c | 805 +++++++++++++++++++++++++++++++
src/pmdas/cluster/util.c | 58 +++
src/pmns/stdpmid.add-on | 1 +
18 files changed, 2968 insertions(+), 11 deletions(-)
commit 3a42d87f4f9074438bddd7f7d6ac4e017f3575ec
Author: Martin Hicks <mort@xxxxxxx>
Date: Fri Feb 13 13:58:16 2009 -0600
Fix local context fetch
This one from Michael Newton:
"ancient, lurking, obscure bug of the day: requires a local context fetch
from
multiple DSOs (which has probably never happened outside testing til now),
*and* an unitialised array entry to happen to match the "domain" part of
one
of an array of pmids. Wasnt turning up on ia64, where we tested"
Signed-off-by: Martin Hicks <mort@xxxxxxx>
commit b4e064db7e8fcd2b584460d97f3823a97198cc5f
Author: Martin Hicks <mort@xxxxxxx>
Date: Fri Feb 13 13:29:15 2009 -0600
Open source the cluster PMDA
This pmda was mostly written by Mark Goodwin to allow a push
style of metric reporting, rather than polled. It is intertwined
with the infiniband PMDA currently (unfortunately).
Hopefully I can unwind it with some additional work.
Signed-off-by: Martin Hicks <mort@xxxxxxx>
commit 62068c279837e2299ec259b390491ae02c5149ef
Author: Martin Hicks <mort@xxxxxxx>
Date: Fri Feb 13 09:42:02 2009 -0600
Add new X11 app-default directory
Some newer distros stick their X11 app-defaults files in
/usr/share/X11/app-defaults. Add this dir as option when looking for
the location.
Signed-off-by: Greg Edwardsg <edwardsg@xxxxxxx>
Signed-off-by: Martin Hicks <mort@xxxxxxx>
commit 753c59762c4427f9519751d3a4b203197a28a46d
Author: Martin Hicks <mort@xxxxxxx>
Date: Wed Feb 11 13:37:49 2009 -0600
Remove __pmConnectHostMethod dangling declaration
The definition of this disappeared in
1910a722c4aed2a8706ed3ac97fceeeba9b133fd
Signed-off-by: Martin Hicks <mort@xxxxxxx>
|