]> xenbits.xensource.com Git - pvdrivers/win/xenvbd.git/commitdiff
Scripted replacement of Copyright notices in source
authorOwen Smith <owen.smith@citrix.com>
Thu, 23 Feb 2023 09:51:30 +0000 (09:51 +0000)
committerPaul Durrant <pdurrant@amazon.com>
Thu, 23 Mar 2023 17:01:06 +0000 (17:01 +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>
95 files changed:
LICENSE
include/cache_interface.h
include/debug_interface.h
include/emulated_interface.h
include/evtchn_interface.h
include/gnttab_interface.h
include/names.h
include/store_interface.h
include/suspend_interface.h
include/unplug_interface.h
include/xen-errno.h
include/xen-types.h
include/xen-version.h
include/xen-warnings.h
include/xen.h
include/xencdb.h
include/xencrsh_interface.h
include/xenvbd-ntstrsafe.h
include/xenvbd-storport.h
src/coinst/coinst.c
src/coinst/xenvbd_coinst.def
src/coinst/xenvbd_coinst.rc
src/common/util.h
src/xencrsh/assert.h
src/xencrsh/austere.c
src/xencrsh/austere.h
src/xencrsh/buffer.c
src/xencrsh/buffer.h
src/xencrsh/driver.c
src/xencrsh/driver.h
src/xencrsh/evtchn.c
src/xencrsh/evtchn.h
src/xencrsh/fdo.c
src/xencrsh/fdo.h
src/xencrsh/frontend.c
src/xencrsh/frontend.h
src/xencrsh/gnttab.c
src/xencrsh/gnttab.h
src/xencrsh/hvm.c
src/xencrsh/hvm.h
src/xencrsh/hypercall.h
src/xencrsh/hypercall_stub.c
src/xencrsh/log.c
src/xencrsh/log.h
src/xencrsh/pdo.c
src/xencrsh/pdo.h
src/xencrsh/pdoinquiry.c
src/xencrsh/pdoinquiry.h
src/xencrsh/queue.c
src/xencrsh/queue.h
src/xencrsh/ring.h
src/xencrsh/srbext.h
src/xencrsh/store.c
src/xencrsh/store.h
src/xencrsh/xencrsh.def
src/xencrsh/xencrsh.rc
src/xendisk/assert.h
src/xendisk/debug.h
src/xendisk/driver.c
src/xendisk/driver.h
src/xendisk/fdo.c
src/xendisk/fdo.h
src/xendisk/mutex.h
src/xendisk/pdo.c
src/xendisk/pdo.h
src/xendisk/registry.c
src/xendisk/registry.h
src/xendisk/thread.c
src/xendisk/thread.h
src/xendisk/types.h
src/xendisk/xendisk.rc
src/xenvbd.inf
src/xenvbd/adapter.c
src/xenvbd/adapter.h
src/xenvbd/assert.h
src/xenvbd/base64.c
src/xenvbd/base64.h
src/xenvbd/debug.h
src/xenvbd/driver.c
src/xenvbd/driver.h
src/xenvbd/frontend.c
src/xenvbd/frontend.h
src/xenvbd/granter.c
src/xenvbd/granter.h
src/xenvbd/registry.c
src/xenvbd/registry.h
src/xenvbd/ring.c
src/xenvbd/ring.h
src/xenvbd/srbext.h
src/xenvbd/target.c
src/xenvbd/target.h
src/xenvbd/thread.c
src/xenvbd/thread.h
src/xenvbd/types.h
src/xenvbd/xenvbd.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 fe93d72544790f3a58aa4ba4b3ad371793071595..d8de085976553f971b49d5f673f3ab7c2302752b 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 ad894e1025dd0c046029ef0971708dbe5ca06725..dfd445a78df3d30df8780613c68a4eafd579139f 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, 
@@ -396,4 +397,4 @@ QueryDeviceRelationsName(
     }
 }
 
-#endif // _XENVBD_NAMES_H
\ No newline at end of file
+#endif // _XENVBD_NAMES_H
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 99d4e7d4d51fcda586bf439c7404ebfc9cbf6d5c..46c5dd4fc443f1d46bc699dbf16643a018b33423 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 0c678449c4ff2434f68d57efeccf1b625d905188..0cadfe1a2ab51a926b2dec74beee246a01b048e8 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 73f734048a9742e90e83304885165b650ca3a747..40f7c273356daf88166995952b8e60c83e9c894f 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 8e0e168803c45ab070896418e2de22eb6ef324e7..ff5fd74c4ab9bc74e5a5ee74f785e7e1b43d57f7 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 1404ad609b5e8cf625981e3c8b1e06e36878f079..5e0d6ccbc4468c5b5d91a04092d662e08e82289e 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 328256881255f628a254adb1594adc1a72ea20fc..74b7e2f23a3e902e6f2b1cd66f109347e6ec5a7b 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 f927a1f5ba30425de744534d1e4b1764b11e1800..492d50db4f8213503bfd6ee07c2d1bddf04f097a 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 6d2ed3c20e6eb1c6bd232eda0d4e2438091a85ae..2f42316122101805b7d5d9c245f687380030e876 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 8f43859ad829b1d733b0935f58009400316c219f..59194d686e47100dd9639b51b77a6ba3c486e0d8 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 a011d98deb430f018aa94568c78754d113799334..444a3338f385e5bbfcb7c72fb51e2f9df15fe485 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 bc8f60599ccc9bd95f10649af651f251a924a65e..6c6a09ffa900013425e8d4660f41de7d105a7a70 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 00d7a52444accdb1a66138e1f28e2a68e8db7a29..67c4d828c4e0d76deaebeb262383f156b10f859b 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 9fd16d540cd88d49c939284450fd707c4f7650d2..d3444d407b5addbf9c3030fac78afb14a55d28ee 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 36154444419bf6f238b0190b87fa0ad363bdf335..867f1bbbf9941eb6c7fff0f283dc7b4c48282950 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 c746c890f541c7946a736b4f40e05de2cf0ee6db..5b6dcd454241da996b1de4c072ee185195cf4f72 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 e00a3295909c6b342f99e94dbd46d5af6ae5a765..95a6422f9f4e1caba0426d5deac9d4b66c3ec7c9 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 ecc30cf9ee0dc22ab8c21ce1260d450a5b79eb87..b74053f027524354a2a782e8f6962cfa8c825c24 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 530dacac7d60d27d2801be031c17b51c743c6398..e1bfdcdd2d3898d785e0474ca332beca091f8063 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 002cd40faa465ae97dc360fc01cb31d5c93577e6..68a0f0f62a494a4d845528ec734cc9a7e7c9c444 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 9e20729a6b4b346ad9d3bd61dc70107c03ea3889..beb5908e4b2e78a8fa42ed6fa83b63ee2fac61b7 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 d0d0fc2e1915abe062884dc1ab625ffa1269c4ee..4f9cbc57d73d86963a35a783ffce4c111abb0d58 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 ecf100b5ecaac7782999234a113541720c9273b0..34a9b28c46e0693a84c3bfdb2b6738e3004cfb81 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 9540bd854dc2c4058ec46a40459b790e69e844f9..9ccfde3031cb6d6318d42ced379a4f7bf1623023 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 69f9e97405c64f9bc2a94c0dcd768ea5f08a1808..78027db86691e2625fb4e9deb52a85f4f72e23ff 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 c40d7a118f60d8393d2815fc57b3f7faca408d1f..a3fc3fbb218450965cdc2e28299ee41cf63ca8ae 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 a64e79d54f57f42d3c21a23082e2726836b1de3a..f082761523c19bc0ba96f33ce71d437c8df139c3 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 bd3cf6bdf9b80f325675939b4fcc0b26a22639e8..174e4d73a380fda161b5964f351a0c577fda9685 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 9d56bb271fc03cbef0474313bc677f33fba47933..23010aa9db3b1c997b8097f7b2900860a699f7e1 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 598d9656ef501e8b8ac0c3639d606ad94d9daa36..72350ed5a75b207f7ae1dd14b7c02bdd7bacc29c 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 3e396ec0fd5b25c4afbbbf64d64fdd420a6045a5..04da4e3d718c56d37d8bf1aecdfd610b74830215 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 433d73a892a534dac1eaea5e9cf1404387740b5f..ceae2497686f0f2afcbe1f2d6ef4dbb8be28e880 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 03f4b30c1c055a84647f4164947231bc1e7a6fd8..762ecf85e04ea8358fd022a3c86e2e96763ee8e5 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 846a4bb8317650865020e9b9c60ff7d6e90057c2..1741850c6311ca2abfede871c3d9a443217c4188 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 0fdb78d092a6182e4075142b39324b05b2a2ae9f..a1e8a5a98f0062dab3eb15395068e5cdb5ea137f 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 edc39ff97e76bbf6bb0e3b9a5ca80feb4a2d5e7b..d638371723c48b18d7f31b770481ec08c3eca413 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 c3a930091cc55fa4a9311fc482e3b862ef693aaa..9fe3c53065108181249267393f9a03a54a5efaf4 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 cca99c555428204bf1d7a24f5a09201e033f6bc9..0e2f4e2309d40805f2e7aebce14d573b945c85f5 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 b72bcf87547ac660a8bd9023fd669eedfd7c33cd..663b54b5b5c1871d09db1bea9a281239026585db 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 e87a8825263a9af10de763793a4a2c15c0e2f5d6..94cdb3edef54e624ca92798240f48f0cb7f0bee9 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 daa580752ce525b2e19bed691393c11702f12006..a6393e197c11e97193a580e3ea04fcbc4c93b75a 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 e02d00d5e7f10a89b892a21d61445dec7a100cd9..c72793686a4e461684ede2775a34c48fe5aadcf8 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 b232dbb00686b0e5c37050ad4580e1098a7413e1..6a7596121111e039cb1b720f027bcd651b4aa9eb 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 bc1f81ba792d16e9479731b28ebd05dd56482278..2cc287e5a9decbe806e7e7241a5377053ae29826 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 04051bdb59d99c0dfad2f23fb7ec14cc92fcf815..7c5e0783d38045feaeadc998d1e5c6ffb03e279c 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 6627f50746bb384c4c3d0794631394f50ce50920..58ebef5cd2192b8233dbe324c2f2d53084d24802 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 246ab9e2e5efa8bb5aab91cb6fbfd921a9b92bc8..f97267f4dcc74d6ff20bfa5f54ef6d543ca291fa 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 111d7cc6ca7aed9df7364b3dae63f2c7f98cc9f1..8683444c2a39abc82cc364a44bc739700f9a7c1b 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 0d123509c1341586a239a9114e7a36c62112b2f7..6b17c12632f0525d286d4b6c671441c96e1b1b38 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 fd3cdcca41a1521a4c0fab4cb34babefa5a44062..f921fecd9e138f763eee1dea94a78937888abcf9 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 505db2690d78f4e425963cc249db4239fa2dc4c2..e24a1a459e6508c325f217ff0c5aa89eb9793fdf 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 4221348c066cbae48f9ed36f768469e801caaaa5..7e2c20c31ecc8dc81bb17b6015952946dcb96974 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 e260f85339571cb1d6b6b1c34f497b36a2475612..056e24abddf739fbde1f126da4b16da0f4bfbf7e 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 a6fb68bd3a21a1b19f270a67018457a10a49f7f8..dad27ea225f337cdcdc260a1128009829886c5c3 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 3618824b36843e8d8d4978dc37c9dd3cd9211c18..e8a82ba170c61cfbd9ba0ddf546cfe9299dd3146 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 d9966431ca6f611f01e44f4495aa998c4c35d509..321ecf31e9f2a5209c6981c9fa7a992e39ebe689 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 6d176191f1cee57577674126bcb9f2a5b4bcd908..24e580a1e2c527881c4395399947ba417522000d 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 56f3942fa41c9967c206720e28ea59fa9692540a..173b6b23ef69ad48d377b8625d109cdaef5629e4 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 24c0bf36165d91935e1d287ec787131e7074ebf4..7516e510d6437f6b9803fe562344684827bb4ce1 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 32c0587e85cd11153f3dcb1915589ee13947bfd9..044c1044b3e5ef15470ed13fd0d4d47815a27bdc 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 7c655a8ce9125c13c39e28090ac790dc934b7bc9..d7789435c1dcc1701b73e88479809ab43c78eb8b 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 5e8968141f950fb504121820e770ab0065afd3b4..500c28ca4604a097b1d37c061ea6814f1b8ae6ca 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 3d1f42143b89bbe42a2119bf900bcf23bca22bd1..a8630072b887e3bef70ee422695aad116c819790 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 7bec8c3e3e782827c01cae3d062cabd2e70b0378..94553d73ee6b7c1e4a4edb1e2d8e53f2f968a039 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 8a13af95d05e8b6042b8121df5f04a1473ddef8b..70920861bac99495e8b202bd1015e47aaa4017a5 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 c6057ff070dde01e901c5431f9e7d14ecd5b7cb2..e6684ba7d38b493da3497038fd59549750e4e6a8 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 503d2a566b3ab99df68e7c9c36cdbee07e8e7251..7375491208c88d58c24df8bc0a002e864fe2ec09 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 427a98a217ddbeaccf0ab1aac8f38e1acc39af3e..455327a307fe7040e1b9b61f472fa0aef7d8062a 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 656c8fc189a68a2fffa23fc7da175ab134081fde..52b6fac141cc41cc36623f75097d8b3ad740af9c 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 f119b677f0eb6ff30685e8bc4bf9653f6f3a66da..84c27f2c51253a3d7303a844c2cdea575d4918ce 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 1084c30fed789ce08195313e0b0ec26bdde7247d..0d6c21dc2f5c237eea4cc9d631680f52967f7820 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 c2fd44a1859b77d9670ce6fc29bc186962b075a4..cd3c97f2f1d1ecba95c17ce2cb39c47408f27a09 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 f834cac6f9ca7139d2a244183b489a2063bdac64..ece752725e3f4b071c4f1599d7e6bf7c0271a1a4 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 19c5cc87741bbdb61c9893746753710e2689171b..a83c1f0baf2d034a5faaedf350ba74111af25f62 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 afb29bc3e81c9c88f53b33eabd0ff6e521557116..c258caea79d936f2f2a6a6950443b4108adf8b1d 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 b840c1324ea7efdcdc050093cce36c7e593d47a3..afe41d5575390cf929f01e31c78a1c973bc9bdc5 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 bb105b91d3ed80030fa620dac17f75fa3f0c550a..811701fb4266c0f698d542c647987f69d8f9bfe9 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 9bf492e915f184434e8b933962a89b7374cb569d..d8a2df57bcf0bc2d1111ce4fa97f12f408b9a446 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 ca840516466093a8305d55cf3e3ce26eaad2705c..86a71acc8ec1109ae0d67aabcbd70f8c899ad662 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 81c2644881fae9dcc8054e77f6dcd3d72fd81644..c459838697b458800c741daf07acd68d56848d94 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 c84c241e62742ea08970bb6bd2af9fa7418ad32f..7116be53081af0b5641ccd5574251a12259d1775 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 e71200f5e78a0956f7f8542c8d0dd8f72abf2499..c5edaca54776e4ba87c19404e907ae5313813266 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 c6c027a7c708b3da9f613ae7c65043d6a8bd0c67..7faae5ee2fba41ec31d0559fdfbc67d9a3179b4c 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 dd4c8a058047aa3f7fb0ca53d34153d6a89c6362..a9ea316aff63fc99b43a0b916974bfaf1de29eaf 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 9aa7ede3908661542faac33921f03850057b49da..862ff38b6e4e5300456b4e177160fd45a62ca66a 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 c45bad0d4dbade4e16e065679261ed0177b3c4a9..e3c07badfa4fca7bee01b5efc6ce97c1f891cf1b 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 02a35d7d87518e674f958b987a834f64779af4db..fa606955e5f68e6fef83e9349ee097ded2cba17a 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,