]> xenbits.xensource.com Git - pvdrivers/win/xenvif.git/commitdiff
Scripted replacement of Copyright notices in source
authorOwen Smith <owen.smith@citrix.com>
Thu, 23 Feb 2023 09:52:42 +0000 (09:52 +0000)
committerPaul Durrant <pdurrant@amazon.com>
Thu, 23 Mar 2023 16:46:40 +0000 (16:46 +0000)
Due to a transfer of copyright ownership from Citrix to Cloud Software Group,
the copyright notices in all source files should be updated.

Using the powershell script below replace "Copyright (c) Citrix Systems, Inc."
with "Copyright (c) Xen Project." and "Copyright (c) Cloud Software Group, Inc."

Function Multiline-Replace {
    param(
        [string]$Filename,
        [string]$ToReplace,
        [array]$ReplaceWith
    )

    $content = Get-Content $Filename
    $replace = $false
    $output = ""
    $content | ForEach {
        $line = $_
        if ($line.Contains($ToReplace)) {
            $replace = $true
            $ReplaceWith | ForEach {
                $output += $line.Replace($ToReplace, $_) + "`n"
            }
        } else {
            $output += $line + "`n"
        }
    }
    if ($replace) {
        Write-Host "Replacing: " $Filename
        $output | Set-Content $Filename
    } else {
        Write-Host "Ignoring:  " $Filename
    }
}

Function Replace-Filestrings {
    param(
        [array]$FilleTypes,
        [string]$ToReplace,
        [array]$Replacements,
        [array]$ExcludeList
    )

    $FileTypes | ForEach {
        Get-ChildItem $_ -Recurse | ForEach-Object {
            $filename = $_
            if (($ExcludeList | %{ $filename -Like $_ }) -Contains $True) {
                Write-Host "Excluding: " $filename
            } else {
                Multiline-Replace $_ $ToReplace $Replacements
            }
        }
    }
}

$ExcludeList = @("*include\xen\*", "*\obj\*")
$Replace = "Copyright (c) Citrix Systems Inc."

$Replacements = @("/* Copyright (c) Xen Project.", " * Copyright (c) Cloud Software Group, Inc.")
$FileTypes = @("*.c", "*.h", "*.rc")
Replace-Filestrings $FileTypes ('/* ' + $Replace) $Replacements $ExcludeList

$Replacements = @("; // Copyright (c) Xen Project.", "; // Copyright (c) Cloud Software Group, Inc.")
$FileTypes = @("*.mc")
Replace-Filestrings $FileTypes ('; // ' + $Replace) $Replacements $ExcludeList

$Replacements = @("; Copyright (c) Xen Project.", "; Copyright (c) Cloud Software Group, Inc.")
$FileTypes = @("*.inf", "*.def")
Replace-Filestrings $FileTypes ('; ' + $Replace) $Replacements $ExcludeList

$Replacements = @("Copyright (c) Xen Project.", "Copyright (c) Cloud Software Group, Inc.")
$FileTypes = @("LICENSE")
Replace-Filestrings $FileTypes $Replace $Replacements $ExcludeList

Signed-off-by: Owen Smith <owen.smith@citrix.com>
Amended commit comment. Fixed whitespace.

Signed-off-by: Paul Durrant <paul@xen.org>
63 files changed:
LICENSE
include/cache_interface.h
include/debug_interface.h
include/ethernet.h
include/evtchn_interface.h
include/gnttab_interface.h
include/ipx.h
include/llc.h
include/range_set_interface.h
include/revision.h
include/store_interface.h
include/suspend_interface.h
include/tcpip.h
include/unplug_interface.h
include/vif_interface.h
include/xen-types.h
include/xen-version.h
include/xen-warnings.h
include/xen.h
src/coinst/coinst.c
src/coinst/xenvif_coinst.def
src/coinst/xenvif_coinst.rc
src/xenvif.inf
src/xenvif/assert.h
src/xenvif/bus.c
src/xenvif/bus.h
src/xenvif/checksum.c
src/xenvif/checksum.h
src/xenvif/controller.c
src/xenvif/controller.h
src/xenvif/dbg_print.h
src/xenvif/driver.c
src/xenvif/driver.h
src/xenvif/fdo.c
src/xenvif/fdo.h
src/xenvif/frontend.c
src/xenvif/frontend.h
src/xenvif/link.c
src/xenvif/link.h
src/xenvif/mac.c
src/xenvif/mac.h
src/xenvif/mrsw.h
src/xenvif/mutex.h
src/xenvif/names.h
src/xenvif/parse.c
src/xenvif/parse.h
src/xenvif/pdo.c
src/xenvif/pdo.h
src/xenvif/receiver.c
src/xenvif/receiver.h
src/xenvif/registry.c
src/xenvif/registry.h
src/xenvif/settings.c
src/xenvif/settings.h
src/xenvif/thread.c
src/xenvif/thread.h
src/xenvif/transmitter.c
src/xenvif/transmitter.h
src/xenvif/types.h
src/xenvif/util.h
src/xenvif/vif.c
src/xenvif/vif.h
src/xenvif/xenvif.rc

diff --git a/LICENSE b/LICENSE
index 00be66607d13ddbf1b4ae00eee762b98c60bacdb..c445255ced3c2a904684093146af602b51109c54 100644 (file)
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,5 @@
-Copyright (c) Citrix Systems Inc.
+Copyright (c) Xen Project.
+Copyright (c) Cloud Software Group, Inc.
 All rights reserved.
 
 Redistribution and use in source and binary forms, 
index ce50f4e463767b985831768ff9ed4d63a5372ba7..97fa31554d9bdf9423f96dfc17ce571d567d524b 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index cc71db07caaf0adc5912b4409f3c231c4fe564f8..13d79eafe499346a11601d83227d078ca3e601bd 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 39eda68525b267c2894123879cef558d9e51f713..b3862abf412b5750996daa2150daaf9653507d8b 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 05c342e50db845ab3e34b836693b47608a2247f6..2abe4870d20cc4669d005a55ba53ac4e0d7faa31 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index e3ee888bd9792704f213a18ea4ca45b10188cce1..76c9c07b1e9f28b5f24d0675e803b2f6b22ace3a 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 0b6bbf701aeb024336a876ed5115e4dc86ba8c9b..724c796cd5e556109207f021eb1b7fa4f0eec683 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index addd93fa8c7ce1754a6e24f8ee8d6a283cbf1bae..b58d276b169c83cc853700915fe8b32501c67625 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 5ab416d75bcd2d5d92d163e911f4618cc3122fb4..78794aa3fd227798681bbdc3dc9baacf481ccfde 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 4085f0423edc20393ceefe036e685618c9774d87..efad212d320a529f804905ee9cd76c2eefb1b583 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms,
index e1251dd1369f7ca20f7acb5e5ec9ed347cce363c..e6b9bce038605d0e8488457e1aead162031046a8 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index cbe11ab6d9e4f4ad21ac54f0edbc6483728a577c..8d6f40fdaf782a022fe474824ca28584c7755d23 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index f2fa87ea85ab90d91220538617ebedb4e36fb68d..f0a3d5a1329bfea579c9dce66da2ed6fce2a80bd 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 83b3dc98d8bef5d8fe517330702dc5ee855bab5d..687d7cfdd0c26b3de619712c3de64cd7be13b277 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index a600d35e8f232344abedf8bf9adfede387c15e53..a63abba726b17be4346931262ae1d7f258f6a663 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index cfad732b11a3da2e01610f61c317cfacceb7b9a8..24805265bd871a173df25d843422ed54e3ca0ec9 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 5da4233853c0381c5015444e1011cd5075242c11..d77a531ea3723475ea010acc945f6f11c1586743 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 5a095b4f5bb37b854e3c1f0b6d06187d7000438e..b15870c5c78654d3d4b7c484b0a5364537657601 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 9dccd0c874ec46676d9ed3cad233204c7536ed0c..f1973cefbf77fbdf891af9b3934414366a44d636 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 403eac8e4b020f0f0349c5ba0d176373b694a6b9..49d76dba28fbbe9314ae5c1cf8d8b64586cfd9f9 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index df65c7f13c202a898e34c6b9d1a54c7f8859e988..71d8f65d3c4c5f190f24588a458ea711b06d508f 100644 (file)
@@ -1,4 +1,5 @@
-; Copyright (c) Citrix Systems Inc.
+; Copyright (c) Xen Project.
+; Copyright (c) Cloud Software Group, Inc.
 ; All rights reserved.
 ; 
 ; Redistribution and use in source and binary forms, 
index d696cc72e8dea2993a934860c2461a2822bb09c8..c1235ceb85f2be09539af28dee4b3cb0bf4cca03 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms,
index 5dfcd90a631d4e7c624264cffdb9ab63166627bb..d81fe52c65dd4568385e7b907ad6b6488c5e9f4e 100644 (file)
@@ -1,4 +1,5 @@
-; Copyright (c) Citrix Systems Inc.
+; Copyright (c) Xen Project.
+; Copyright (c) Cloud Software Group, Inc.
 ; All rights reserved.
 ;
 ; Redistribution and use in source and binary forms, 
index dade311c23ead2e997a2c1c70e15ebd1ceacd299..d0cf3f268dbdfcba59660139156a453a4fd79f86 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index d3796e33a12b693e2d9459015ce249d76817425b..0c9114814eb7ce766e05ba931594ec6f217e23b2 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 6a1d78cec600218bdbe3850d5a9d416141a6b823..34fcd883f343a211401078b19463e3493295104a 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index c9879fb4f9690c6484351c5d0f862a31a2f0b8dc..4e8f2fce109447e78f4edaa769ad4342f27ebdac 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 67ed89558e1e56c685c7c8beaf175dd269bcef97..ec9c384ddd11790455a460a4dd6cf4582b9e651d 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 3cd0a263aff776990190304aa7e06891b389b145..ae868379ad5f392fcaaefc5c4e3f513df5a7fc4a 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms,
index 5a7b688f1f8eab9e04f9b9776e4f32b629ee39cb..b14e0661984fe8ea54559c40fb204e81ae514774 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms,
index b6455269ea4e6fb2cdbad7754a961bac0c0d2385..e39a50cb6537e167f17af27857caea6941f8d655 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index c37ffa533a4aaefd99ae2369fc8b36e7694a07a3..334560787234addb7ae7947b6de6315f3a086d19 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 0d7ca8d2345468202b131f316cb27d14163d3473..b5b9a3d8457577538191d39d18bf5730352cef44 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index b684c7b2d76a01d5c19f5581a8c1b83817d3faf5..451d58206887fc8cb7c1c65de4fe8467ee621649 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 23f07cb7e136f2099c2de6342266830c6ed7b141..5e28cf2e523355da28c1fafa5a2acbd59bb22084 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index e38d2bfcd4320c3a02fc866b021bc2358f79c1ab..7ea66cf73610a5e0e90a68f7b92447df7591013b 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 8e5552e26a8a329b6ee194acb1285eef16d3b004..59d9718fada203ad1d13153ef7be9df13e9ee85d 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index a9b75b37cba3d4fd187db8e3176733c71e7423d2..e734f5aa39ff224c67057df67861ae64605b50d3 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 8b82a03a17cae76dbc67ce36ca28bbb280366f12..6915ce50d0d2d4b82fd40a2cd6f7419fa3c80c52 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 606e476b375d3b158c0c207f0df93074d5d01e2b..c20f28146dee1a2f39b8b69e38f3aeafce42667e 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 9340f0189589facac2dfc826423873b5843871c8..487e0a140c0de0f16f3bac12d7f083bf32aabd76 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 76251352cae39f0b7e3b23bdcd53af7fc40a543b..f82d329cc4687235a4cbfc9b103bdccff4fae4aa 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 8fc77b4eeeca5cbb22d46380d375aef68d3106cc..5a0122ff8d32709e1ce672a715987bfd1d603f57 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 0ab16e6151710d098fe3f330e90e1cb6d112cfdd..9f8ff912b300b0bade423a9500496105f96bd849 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 4e70ed4ed02f758ee09ad1fd34734e68e7ab5528..62bc2237e1ec069477fe5fa7bdb5979c2577c3cd 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index f169783bb8d9732872f8a5e2fe0b4c1780dc916f..d00d9623cfeac09bfb64d9f3a83a95ca3480665c 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 4a6bfd1de12df98bdffbf2cf0d5f0f424515059a..1d163c97b28ca59aeb05716854937b2787cd8f91 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 7066aaf0119f1827e45dab81b47f6a28e22e8d95..80dfda88730e6065fa9e33a7e49475f57aeb3318 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 21451331d330168b4792428f56057e16577c3ca7..48075824d15f088b8cc8def18b9a901dafdf266b 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 7846f0bf9d0584242f94e8ddd4197af671b4d6a1..0238bb2e55e0b79a168d634030d66652525194c5 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 9f5628cd559ea929edf2ae1d3d54104de3bf9b6f..8f848184344af65fc71fc17d8e10e3616c0f1fa4 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index faa6c7135ca6354f03e66bdeaaea7287a24f31ea..c656806378fdcacd6d7f63e9b2d4dcf31341e08a 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 876dc13b136e6435ad4d8b1255bf4fdc7eb6f099..dd3c991b8b276dd718b845bb962b6cde36bc7a93 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms,
index a77ef00806187f967a513c8556c3c60d6c7edaeb..3f964bb02b98bf1c8aec833adab8502c96ca8902 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms,
index 6155538558d6e145f517f8f6127f53b76566ea5e..d99670ed8f84a543ec43d5959e0d08284a4bfb99 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index d5f0009d7a775371789f06019902d92e390ecca3..43ed771e5c6482052d1c6c76d5881f50961e98e1 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index ed89f60978f2cd47b1401392a6b92feea673c69f..fefa712b281bd40b6de88eaa9938fe69a2f3ec45 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index d44f77ea7151e6d63045e9afd492428d25db04e3..f7f65dd97f70b01c7a825598dcc9298953c02c36 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 3c1ec40cda7bd63507982419dfb726b3c9b1a7a4..0649029918647b197c70e4f577ce2e1cd90b0a05 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 6ff0914757c9fb421fd7a4390d107005cef1147c..370d45a3ac612c5ca586f3c13b5d1608cafbb578 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms,
index 3e02dbc8dcd4c5fe75a41602bb9ee8aad7af97ec..6f468eebe9097184dd294336e533fda00cbebed0 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 76e9d07259a837620bb1a994401b9925783610e5..db36bc972ad66e3296d2cc5cd110f1ead6baf72b 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 393de91da89a9d1f27c7fd77f14c548ad0af71a2..e7a6aa68072a2dd6d998d563847c097fe436c721 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms,