svn commit: r249962 - in projects/virtio: share/man/man4 sys/dev/virtio sys/dev/virtio/balloon sys/dev/virtio/block sys/dev/virtio/network sys/dev/virtio/pci sys/dev/virtio/scsi
Bryan Venteicher
bryanv at FreeBSD.org
Sat Apr 27 00:40:44 UTC 2013
Author: bryanv
Date: Sat Apr 27 00:40:40 2013
New Revision: 249962
URL: http://svnweb.freebsd.org/changeset/base/249962
Log:
Update to my freebsd.org email address
Modified:
projects/virtio/share/man/man4/virtio.4
projects/virtio/share/man/man4/virtio_balloon.4
projects/virtio/share/man/man4/virtio_blk.4
projects/virtio/share/man/man4/virtio_scsi.4
projects/virtio/share/man/man4/vtnet.4
projects/virtio/sys/dev/virtio/balloon/virtio_balloon.c
projects/virtio/sys/dev/virtio/block/virtio_blk.c
projects/virtio/sys/dev/virtio/network/if_vtnet.c
projects/virtio/sys/dev/virtio/network/if_vtnetvar.h
projects/virtio/sys/dev/virtio/pci/virtio_pci.c
projects/virtio/sys/dev/virtio/scsi/virtio_scsi.c
projects/virtio/sys/dev/virtio/scsi/virtio_scsivar.h
projects/virtio/sys/dev/virtio/virtio.c
projects/virtio/sys/dev/virtio/virtio_bus_if.m
projects/virtio/sys/dev/virtio/virtio_if.m
projects/virtio/sys/dev/virtio/virtqueue.c
projects/virtio/sys/dev/virtio/virtqueue.h
Modified: projects/virtio/share/man/man4/virtio.4
==============================================================================
--- projects/virtio/share/man/man4/virtio.4 Sat Apr 27 00:22:48 2013 (r249961)
+++ projects/virtio/share/man/man4/virtio.4 Sat Apr 27 00:40:40 2013 (r249962)
@@ -94,4 +94,4 @@ Support for VirtIO first appeared in
.An -nosplit
.Fx
support for VirtIO was first added by
-.An Bryan Venteicher Aq bryanv at daemoninthecloset.org .
+.An Bryan Venteicher Aq bryanv at FreeBSD.org .
Modified: projects/virtio/share/man/man4/virtio_balloon.4
==============================================================================
--- projects/virtio/share/man/man4/virtio_balloon.4 Sat Apr 27 00:22:48 2013 (r249961)
+++ projects/virtio/share/man/man4/virtio_balloon.4 Sat Apr 27 00:40:40 2013 (r249962)
@@ -59,6 +59,6 @@ The hypervisor can later signal the ball
The
.Nm
driver was written by
-.An Bryan Venteicher Aq bryanv at daemoninthecloset.org .
+.An Bryan Venteicher Aq bryanv at FreeBSD.org .
It first appeared in
.Fx 9.0 .
Modified: projects/virtio/share/man/man4/virtio_blk.4
==============================================================================
--- projects/virtio/share/man/man4/virtio_blk.4 Sat Apr 27 00:22:48 2013 (r249961)
+++ projects/virtio/share/man/man4/virtio_blk.4 Sat Apr 27 00:40:40 2013 (r249962)
@@ -65,6 +65,6 @@ The default value is 0.
The
.Nm
driver was written by
-.An Bryan Venteicher Aq bryanv at daemoninthecloset.org .
+.An Bryan Venteicher Aq bryanv at FreeBSD.org .
It first appeared in
.Fx 9.0 .
Modified: projects/virtio/share/man/man4/virtio_scsi.4
==============================================================================
--- projects/virtio/share/man/man4/virtio_scsi.4 Sat Apr 27 00:22:48 2013 (r249961)
+++ projects/virtio/share/man/man4/virtio_scsi.4 Sat Apr 27 00:40:40 2013 (r249962)
@@ -87,6 +87,6 @@ Enable tracing prints.
The
.Nm
driver was written by
-.An Bryan Venteicher Aq bryanv at daemoninthecloset.org .
+.An Bryan Venteicher Aq bryanv at FreeBSD.org .
It first appeared in
.Fx 10.0 .
Modified: projects/virtio/share/man/man4/vtnet.4
==============================================================================
--- projects/virtio/share/man/man4/vtnet.4 Sat Apr 27 00:22:48 2013 (r249961)
+++ projects/virtio/share/man/man4/vtnet.4 Sat Apr 27 00:40:40 2013 (r249962)
@@ -89,7 +89,7 @@ The default value is 0.
The
.Nm
driver was written by
-.An Bryan Venteicher Aq bryanv at daemoninthecloset.org .
+.An Bryan Venteicher Aq bryanv at FreeBSD.org .
It first appeared in
.Fx 9.0 .
.Sh CAVEATS
Modified: projects/virtio/sys/dev/virtio/balloon/virtio_balloon.c
==============================================================================
--- projects/virtio/sys/dev/virtio/balloon/virtio_balloon.c Sat Apr 27 00:22:48 2013 (r249961)
+++ projects/virtio/sys/dev/virtio/balloon/virtio_balloon.c Sat Apr 27 00:40:40 2013 (r249962)
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 2011, Bryan Venteicher <bryanv at daemoninthecloset.org>
+ * Copyright (c) 2011, Bryan Venteicher <bryanv at FreeBSD.org>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Modified: projects/virtio/sys/dev/virtio/block/virtio_blk.c
==============================================================================
--- projects/virtio/sys/dev/virtio/block/virtio_blk.c Sat Apr 27 00:22:48 2013 (r249961)
+++ projects/virtio/sys/dev/virtio/block/virtio_blk.c Sat Apr 27 00:40:40 2013 (r249962)
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 2011, Bryan Venteicher <bryanv at daemoninthecloset.org>
+ * Copyright (c) 2011, Bryan Venteicher <bryanv at FreeBSD.org>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Modified: projects/virtio/sys/dev/virtio/network/if_vtnet.c
==============================================================================
--- projects/virtio/sys/dev/virtio/network/if_vtnet.c Sat Apr 27 00:22:48 2013 (r249961)
+++ projects/virtio/sys/dev/virtio/network/if_vtnet.c Sat Apr 27 00:40:40 2013 (r249962)
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 2011, Bryan Venteicher <bryanv at daemoninthecloset.org>
+ * Copyright (c) 2011, Bryan Venteicher <bryanv at FreeBSD.org>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Modified: projects/virtio/sys/dev/virtio/network/if_vtnetvar.h
==============================================================================
--- projects/virtio/sys/dev/virtio/network/if_vtnetvar.h Sat Apr 27 00:22:48 2013 (r249961)
+++ projects/virtio/sys/dev/virtio/network/if_vtnetvar.h Sat Apr 27 00:40:40 2013 (r249962)
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 2011, Bryan Venteicher <bryanv at daemoninthecloset.org>
+ * Copyright (c) 2011, Bryan Venteicher <bryanv at FreeBSD.org>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Modified: projects/virtio/sys/dev/virtio/pci/virtio_pci.c
==============================================================================
--- projects/virtio/sys/dev/virtio/pci/virtio_pci.c Sat Apr 27 00:22:48 2013 (r249961)
+++ projects/virtio/sys/dev/virtio/pci/virtio_pci.c Sat Apr 27 00:40:40 2013 (r249962)
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 2011, Bryan Venteicher <bryanv at daemoninthecloset.org>
+ * Copyright (c) 2011, Bryan Venteicher <bryanv at FreeBSD.org>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Modified: projects/virtio/sys/dev/virtio/scsi/virtio_scsi.c
==============================================================================
--- projects/virtio/sys/dev/virtio/scsi/virtio_scsi.c Sat Apr 27 00:22:48 2013 (r249961)
+++ projects/virtio/sys/dev/virtio/scsi/virtio_scsi.c Sat Apr 27 00:40:40 2013 (r249962)
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 2012, Bryan Venteicher <bryanv at daemoninthecloset.org>
+ * Copyright (c) 2012, Bryan Venteicher <bryanv at FreeBSD.org>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Modified: projects/virtio/sys/dev/virtio/scsi/virtio_scsivar.h
==============================================================================
--- projects/virtio/sys/dev/virtio/scsi/virtio_scsivar.h Sat Apr 27 00:22:48 2013 (r249961)
+++ projects/virtio/sys/dev/virtio/scsi/virtio_scsivar.h Sat Apr 27 00:40:40 2013 (r249962)
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 2012, Bryan Venteicher <bryanv at daemoninthecloset.org>
+ * Copyright (c) 2012, Bryan Venteicher <bryanv at FreeBSD.org>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Modified: projects/virtio/sys/dev/virtio/virtio.c
==============================================================================
--- projects/virtio/sys/dev/virtio/virtio.c Sat Apr 27 00:22:48 2013 (r249961)
+++ projects/virtio/sys/dev/virtio/virtio.c Sat Apr 27 00:40:40 2013 (r249962)
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 2011, Bryan Venteicher <bryanv at daemoninthecloset.org>
+ * Copyright (c) 2011, Bryan Venteicher <bryanv at FreeBSD.org>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Modified: projects/virtio/sys/dev/virtio/virtio_bus_if.m
==============================================================================
--- projects/virtio/sys/dev/virtio/virtio_bus_if.m Sat Apr 27 00:22:48 2013 (r249961)
+++ projects/virtio/sys/dev/virtio/virtio_bus_if.m Sat Apr 27 00:40:40 2013 (r249962)
@@ -1,5 +1,5 @@
#-
-# Copyright (c) 2011, Bryan Venteicher <bryanv at daemoninthecloset.org>
+# Copyright (c) 2011, Bryan Venteicher <bryanv at FreeBSD.org>
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
Modified: projects/virtio/sys/dev/virtio/virtio_if.m
==============================================================================
--- projects/virtio/sys/dev/virtio/virtio_if.m Sat Apr 27 00:22:48 2013 (r249961)
+++ projects/virtio/sys/dev/virtio/virtio_if.m Sat Apr 27 00:40:40 2013 (r249962)
@@ -1,5 +1,5 @@
#-
-# Copyright (c) 2011, Bryan Venteicher <bryanv at daemoninthecloset.org>
+# Copyright (c) 2011, Bryan Venteicher <bryanv at FreeBSD.org>
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
Modified: projects/virtio/sys/dev/virtio/virtqueue.c
==============================================================================
--- projects/virtio/sys/dev/virtio/virtqueue.c Sat Apr 27 00:22:48 2013 (r249961)
+++ projects/virtio/sys/dev/virtio/virtqueue.c Sat Apr 27 00:40:40 2013 (r249962)
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 2011, Bryan Venteicher <bryanv at daemoninthecloset.org>
+ * Copyright (c) 2011, Bryan Venteicher <bryanv at FreeBSD.org>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Modified: projects/virtio/sys/dev/virtio/virtqueue.h
==============================================================================
--- projects/virtio/sys/dev/virtio/virtqueue.h Sat Apr 27 00:22:48 2013 (r249961)
+++ projects/virtio/sys/dev/virtio/virtqueue.h Sat Apr 27 00:40:40 2013 (r249962)
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 2011, Bryan Venteicher <bryanv at daemoninthecloset.org>
+ * Copyright (c) 2011, Bryan Venteicher <bryanv at FreeBSD.org>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
More information about the svn-src-projects
mailing list