svn commit: r199164 - in user/kmacy/releng_7_2_xen/sys/i386:
include/xen xen
Kip Macy
kmacy at FreeBSD.org
Wed Nov 11 01:11:08 UTC 2009
Author: kmacy
Date: Wed Nov 11 01:11:08 2009
New Revision: 199164
URL: http://svn.freebsd.org/changeset/base/199164
Log:
- update copyright
- reduce verbosity of clock bumping
Modified:
user/kmacy/releng_7_2_xen/sys/i386/include/xen/xen_clock_util.h
user/kmacy/releng_7_2_xen/sys/i386/xen/clock.c
Modified: user/kmacy/releng_7_2_xen/sys/i386/include/xen/xen_clock_util.h
==============================================================================
--- user/kmacy/releng_7_2_xen/sys/i386/include/xen/xen_clock_util.h Wed Nov 11 01:10:17 2009 (r199163)
+++ user/kmacy/releng_7_2_xen/sys/i386/include/xen/xen_clock_util.h Wed Nov 11 01:11:08 2009 (r199164)
@@ -11,8 +11,6 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. The name of the author may not be used to endorse or promote products
- * derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
Modified: user/kmacy/releng_7_2_xen/sys/i386/xen/clock.c
==============================================================================
--- user/kmacy/releng_7_2_xen/sys/i386/xen/clock.c Wed Nov 11 01:10:17 2009 (r199163)
+++ user/kmacy/releng_7_2_xen/sys/i386/xen/clock.c Wed Nov 11 01:11:08 2009 (r199164)
@@ -342,7 +342,8 @@ clkintr(void *arg)
*/
if (shadow_tv_version != HYPERVISOR_shared_info->wc_version) {
- printf("[XEN] hypervisor wallclock nudged; nudging TOD.\n");
+ if (bootverbose)
+ printf("[XEN] hypervisor wallclock nudged; nudging TOD.\n");
update_wallclock();
add_uptime_to_wallclock();
tc_setclock(&shadow_tv);
More information about the svn-src-user
mailing list