# HG changeset patch
# User kfraser@xxxxxxxxxxxxxxxxxxxxx
# Date 1180604554 -3600
# Node ID d1d5ceb3c3ffe80da13a38a30a721fb5049e53e0
# Parent 340dbdb9cfec90902db7b5ccbe4411a03c358a52
Fix stale email addresses in xenstat and xentop.
Our @us.ibm.com emails cannot forward to us; we do not have access to
them when not interning at IBM. People have attempted to reach us via
those addresses and failed; occasionally they've Googled for a current
address, which made us realize the problem. Change each email to a
more permanent address, so people can reach us in the future. Change
bug reporting addresses to a xen mailing list rather than an
individual.
Signed-off-by: Josh Triplett <josh@xxxxxxxxxx>
---
tools/xenstat/libxenstat/Makefile | 2 +-
tools/xenstat/libxenstat/src/xenstat.c | 6 +++---
tools/xenstat/libxenstat/src/xenstat.h | 6 +++---
tools/xenstat/libxenstat/src/xenstat_linux.c | 6 +++---
tools/xenstat/libxenstat/src/xenstat_priv.h | 6 +++---
tools/xenstat/xentop/Makefile | 2 +-
tools/xenstat/xentop/xentop.1 | 4 ++--
tools/xenstat/xentop/xentop.c | 8 ++++----
8 files changed, 20 insertions(+), 20 deletions(-)
diff -r 340dbdb9cfec -r d1d5ceb3c3ff tools/xenstat/libxenstat/Makefile
--- a/tools/xenstat/libxenstat/Makefile Thu May 31 10:30:15 2007 +0100
+++ b/tools/xenstat/libxenstat/Makefile Thu May 31 10:42:34 2007 +0100
@@ -1,6 +1,6 @@
# libxenstat: statistics-collection library for Xen
# Copyright (C) International Business Machines Corp., 2005
-# Author: Josh Triplett <josht@xxxxxxxxxx>
+# Author: Josh Triplett <josh@xxxxxxxxxx>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff -r 340dbdb9cfec -r d1d5ceb3c3ff tools/xenstat/libxenstat/src/xenstat.c
--- a/tools/xenstat/libxenstat/src/xenstat.c Thu May 31 10:30:15 2007 +0100
+++ b/tools/xenstat/libxenstat/src/xenstat.c Thu May 31 10:42:34 2007 +0100
@@ -1,8 +1,8 @@
/* libxenstat: statistics-collection library for Xen
* Copyright (C) International Business Machines Corp., 2005
- * Authors: Josh Triplett <josht@xxxxxxxxxx>
- * Judy Fischbach <jfisch@xxxxxxxxxx>
- * David Hendricks <dhendrix@xxxxxxxxxx>
+ * Authors: Josh Triplett <josh@xxxxxxxxxx>
+ * Judy Fischbach <jfisch@xxxxxxxxxx>
+ * David Hendricks <cro_marmot@xxxxxxxxxxx>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
diff -r 340dbdb9cfec -r d1d5ceb3c3ff tools/xenstat/libxenstat/src/xenstat.h
--- a/tools/xenstat/libxenstat/src/xenstat.h Thu May 31 10:30:15 2007 +0100
+++ b/tools/xenstat/libxenstat/src/xenstat.h Thu May 31 10:42:34 2007 +0100
@@ -1,8 +1,8 @@
/* libxenstat: statistics-collection library for Xen
* Copyright (C) International Business Machines Corp., 2005
- * Authors: Josh Triplett <josht@xxxxxxxxxx>
- * Judy Fischbach <jfisch@xxxxxxxxxx>
- * David Hendricks <dhendrix@xxxxxxxxxx>
+ * Authors: Josh Triplett <josh@xxxxxxxxxx>
+ * Judy Fischbach <jfisch@xxxxxxxxxx>
+ * David Hendricks <cro_marmot@xxxxxxxxxxx>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
diff -r 340dbdb9cfec -r d1d5ceb3c3ff
tools/xenstat/libxenstat/src/xenstat_linux.c
--- a/tools/xenstat/libxenstat/src/xenstat_linux.c Thu May 31 10:30:15
2007 +0100
+++ b/tools/xenstat/libxenstat/src/xenstat_linux.c Thu May 31 10:42:34
2007 +0100
@@ -1,8 +1,8 @@
/* libxenstat: statistics-collection library for Xen
* Copyright (C) International Business Machines Corp., 2005
- * Authors: Josh Triplett <josht@xxxxxxxxxx>
- * Judy Fischbach <jfisch@xxxxxxxxxx>
- * David Hendricks <dhendrix@xxxxxxxxxx>
+ * Authors: Josh Triplett <josh@xxxxxxxxxx>
+ * Judy Fischbach <jfisch@xxxxxxxxxx>
+ * David Hendricks <cro_marmot@xxxxxxxxxxx>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
diff -r 340dbdb9cfec -r d1d5ceb3c3ff tools/xenstat/libxenstat/src/xenstat_priv.h
--- a/tools/xenstat/libxenstat/src/xenstat_priv.h Thu May 31 10:30:15
2007 +0100
+++ b/tools/xenstat/libxenstat/src/xenstat_priv.h Thu May 31 10:42:34
2007 +0100
@@ -1,8 +1,8 @@
/* libxenstat: statistics-collection library for Xen
* Copyright (C) International Business Machines Corp., 2005
- * Authors: Josh Triplett <josht@xxxxxxxxxx>
- * Judy Fischbach <jfisch@xxxxxxxxxx>
- * David Hendricks <dhendrix@xxxxxxxxxx>
+ * Authors: Josh Triplett <josh@xxxxxxxxxx>
+ * Judy Fischbach <jfisch@xxxxxxxxxx>
+ * David Hendricks <cro_marmot@xxxxxxxxxxx>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
diff -r 340dbdb9cfec -r d1d5ceb3c3ff tools/xenstat/xentop/Makefile
--- a/tools/xenstat/xentop/Makefile Thu May 31 10:30:15 2007 +0100
+++ b/tools/xenstat/xentop/Makefile Thu May 31 10:42:34 2007 +0100
@@ -1,5 +1,5 @@
# Copyright (C) International Business Machines Corp., 2005
-# Author: Josh Triplett <josht@xxxxxxxxxx>
+# Author: Josh Triplett <josh@xxxxxxxxxx>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff -r 340dbdb9cfec -r d1d5ceb3c3ff tools/xenstat/xentop/xentop.1
--- a/tools/xenstat/xentop/xentop.1 Thu May 31 10:30:15 2007 +0100
+++ b/tools/xenstat/xentop/xentop.1 Thu May 31 10:42:34 2007 +0100
@@ -1,5 +1,5 @@
.\" Copyright (C) International Business Machines Corp., 2005
-.\" Author: Josh Triplett <josht@xxxxxxxxxx>
+.\" Author: Josh Triplett <josh@xxxxxxxxxx>
.\"
.\" This program is free software; you can redistribute it and/or modify
.\" it under the terms of the GNU General Public License as published by
@@ -91,7 +91,7 @@ Written by Judy Fischbach, David Hendric
Written by Judy Fischbach, David Hendricks, and Josh Triplett
.SH "REPORTING BUGS"
-Report bugs to <dsteklof@xxxxxxxxxx>.
+Report bugs to <xen-tools@xxxxxxxxxxxxxxxxxxx>.
.SH COPYRIGHT
Copyright \(co 2005 International Business Machines Corp
diff -r 340dbdb9cfec -r d1d5ceb3c3ff tools/xenstat/xentop/xentop.c
--- a/tools/xenstat/xentop/xentop.c Thu May 31 10:30:15 2007 +0100
+++ b/tools/xenstat/xentop/xentop.c Thu May 31 10:42:34 2007 +0100
@@ -1,8 +1,8 @@
/*
* Copyright (C) International Business Machines Corp., 2005
- * Author(s): Judy Fischbach <jfisch@xxxxxxxxxx>
- * David Hendricks <dhendrix@xxxxxxxxxx>
- * Josh Triplett <josht@xxxxxxxxxx>
+ * Author(s): Judy Fischbach <jfisch@xxxxxxxxxx>
+ * David Hendricks <cro_marmot@xxxxxxxxxxx>
+ * Josh Triplett <josh@xxxxxxxxxx>
* based on code from Anthony Liguori <aliguori@xxxxxxxxxx>
*
* This program is free software; you can redistribute it and/or modify
@@ -38,7 +38,7 @@
"Copyright (C) 2005 International Business Machines Corp\n"\
"This is free software; see the source for copying conditions.There is NO\n"\
"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"
-#define XENTOP_BUGSTO "Report bugs to <dsteklof@xxxxxxxxxx>.\n"
+#define XENTOP_BUGSTO "Report bugs to <xen-tools@xxxxxxxxxxxxxxxxxxx>.\n"
#define _GNU_SOURCE
#include <getopt.h>
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|