From: Owen Smith Date: Fri, 10 Feb 2023 08:44:38 +0000 (+0000) Subject: Scripted replacement of Copyright notices in source X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=1854b11a99ed381b6448503834ccd4a28cff9e4c;p=pvdrivers%2Fwin%2Fxenbus.git Scripted replacement of Copyright notices in source 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." NOTE: src/xen/vcpu.c was not changed, as copyright is assigned to Amazon.com, 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 Amended commit comment. Fixed whitespace. Signed-off-by: Paul Durrant --- diff --git a/LICENSE b/LICENSE index 00be666..c445255 100644 --- 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, diff --git a/include/balloon_interface.h b/include/balloon_interface.h index 2d62e28..ea5ded1 100644 --- a/include/balloon_interface.h +++ b/include/balloon_interface.h @@ -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, diff --git a/include/cache_interface.h b/include/cache_interface.h index ce50f4e..97fa315 100644 --- a/include/cache_interface.h +++ b/include/cache_interface.h @@ -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, diff --git a/include/console_interface.h b/include/console_interface.h index 7c10cef..6b4ba7a 100644 --- a/include/console_interface.h +++ b/include/console_interface.h @@ -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, diff --git a/include/debug_interface.h b/include/debug_interface.h index cc71db0..13d79ea 100644 --- a/include/debug_interface.h +++ b/include/debug_interface.h @@ -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, diff --git a/include/emulated_interface.h b/include/emulated_interface.h index fe93d72..d8de085 100644 --- a/include/emulated_interface.h +++ b/include/emulated_interface.h @@ -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, diff --git a/include/evtchn_interface.h b/include/evtchn_interface.h index 05c342e..2abe487 100644 --- a/include/evtchn_interface.h +++ b/include/evtchn_interface.h @@ -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, diff --git a/include/gnttab_interface.h b/include/gnttab_interface.h index e3ee888..76c9c07 100644 --- a/include/gnttab_interface.h +++ b/include/gnttab_interface.h @@ -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, diff --git a/include/range_set_interface.h b/include/range_set_interface.h index 5ab416d..78794aa 100644 --- a/include/range_set_interface.h +++ b/include/range_set_interface.h @@ -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, diff --git a/include/revision.h b/include/revision.h index 3e3779f..4d91927 100644 --- a/include/revision.h +++ b/include/revision.h @@ -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, diff --git a/include/shared_info_interface.h b/include/shared_info_interface.h index 27910b0..7aaf4f5 100644 --- a/include/shared_info_interface.h +++ b/include/shared_info_interface.h @@ -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, diff --git a/include/store_interface.h b/include/store_interface.h index e1251dd..e6b9bce 100644 --- a/include/store_interface.h +++ b/include/store_interface.h @@ -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, diff --git a/include/suspend_interface.h b/include/suspend_interface.h index cbe11ab..8d6f40f 100644 --- a/include/suspend_interface.h +++ b/include/suspend_interface.h @@ -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, diff --git a/include/unplug_interface.h b/include/unplug_interface.h index 83b3dc9..687d7cf 100644 --- a/include/unplug_interface.h +++ b/include/unplug_interface.h @@ -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, diff --git a/include/xen-errno.h b/include/xen-errno.h index 9b8588e..5b9a1e6 100644 --- a/include/xen-errno.h +++ b/include/xen-errno.h @@ -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, diff --git a/include/xen-types.h b/include/xen-types.h index dca2903..e4c19a4 100644 --- a/include/xen-types.h +++ b/include/xen-types.h @@ -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, diff --git a/include/xen-version.h b/include/xen-version.h index 5da4233..d77a531 100644 --- a/include/xen-version.h +++ b/include/xen-version.h @@ -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, diff --git a/include/xen-warnings.h b/include/xen-warnings.h index 45d25c9..951eb1f 100644 --- a/include/xen-warnings.h +++ b/include/xen-warnings.h @@ -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, diff --git a/include/xen.h b/include/xen.h index e1ed117..566e713 100644 --- a/include/xen.h +++ b/include/xen.h @@ -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, diff --git a/src/coinst/coinst.c b/src/coinst/coinst.c index 8dc290c..caa1102 100644 --- a/src/coinst/coinst.c +++ b/src/coinst/coinst.c @@ -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, diff --git a/src/coinst/xenbus_coinst.def b/src/coinst/xenbus_coinst.def index df65c7f..71d8f65 100644 --- a/src/coinst/xenbus_coinst.def +++ b/src/coinst/xenbus_coinst.def @@ -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, diff --git a/src/coinst/xenbus_coinst.rc b/src/coinst/xenbus_coinst.rc index dd9f5a3..4d46edc 100644 --- a/src/coinst/xenbus_coinst.rc +++ b/src/coinst/xenbus_coinst.rc @@ -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, diff --git a/src/common/assert.h b/src/common/assert.h index ad186df..0d43ea9 100644 --- a/src/common/assert.h +++ b/src/common/assert.h @@ -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, diff --git a/src/common/dbg_print.h b/src/common/dbg_print.h index baf5831..a0bd727 100644 --- a/src/common/dbg_print.h +++ b/src/common/dbg_print.h @@ -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, diff --git a/src/common/high.h b/src/common/high.h index 42fbcc7..40cf0f5 100644 --- a/src/common/high.h +++ b/src/common/high.h @@ -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, diff --git a/src/common/mutex.h b/src/common/mutex.h index b402270..4f13236 100644 --- a/src/common/mutex.h +++ b/src/common/mutex.h @@ -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, diff --git a/src/common/names.h b/src/common/names.h index 84267d1..9bdfb1c 100644 --- a/src/common/names.h +++ b/src/common/names.h @@ -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, diff --git a/src/common/registry.c b/src/common/registry.c index b9b56e1..0d29ddc 100644 --- a/src/common/registry.c +++ b/src/common/registry.c @@ -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, diff --git a/src/common/registry.h b/src/common/registry.h index 1ac13b8..cbe9015 100644 --- a/src/common/registry.h +++ b/src/common/registry.h @@ -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, diff --git a/src/common/util.h b/src/common/util.h index 61ae403..e68e463 100644 --- a/src/common/util.h +++ b/src/common/util.h @@ -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, diff --git a/src/monitor/messages.mc b/src/monitor/messages.mc index 9fff135..eb1d382 100644 --- a/src/monitor/messages.mc +++ b/src/monitor/messages.mc @@ -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, diff --git a/src/monitor/monitor.c b/src/monitor/monitor.c index 9adfb79..bb872ce 100644 --- a/src/monitor/monitor.c +++ b/src/monitor/monitor.c @@ -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 1and binary forms, diff --git a/src/monitor/xenbus_monitor.rc b/src/monitor/xenbus_monitor.rc index 457bdc5..dc2fc19 100644 --- a/src/monitor/xenbus_monitor.rc +++ b/src/monitor/xenbus_monitor.rc @@ -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, diff --git a/src/xen/acpi.c b/src/xen/acpi.c index 5defd7d..418f8ae 100644 --- a/src/xen/acpi.c +++ b/src/xen/acpi.c @@ -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, diff --git a/src/xen/acpi.h b/src/xen/acpi.h index 334f62a..43759b2 100644 --- a/src/xen/acpi.h +++ b/src/xen/acpi.h @@ -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, diff --git a/src/xen/bug_check.c b/src/xen/bug_check.c index 1bcc3e3..e1da159 100644 --- a/src/xen/bug_check.c +++ b/src/xen/bug_check.c @@ -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, diff --git a/src/xen/bug_check.h b/src/xen/bug_check.h index 1d1727e..93bf811 100644 --- a/src/xen/bug_check.h +++ b/src/xen/bug_check.h @@ -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, diff --git a/src/xen/driver.c b/src/xen/driver.c index 3f126ee..8fe6c5c 100644 --- a/src/xen/driver.c +++ b/src/xen/driver.c @@ -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, diff --git a/src/xen/driver.h b/src/xen/driver.h index 11b421b..210b561 100644 --- a/src/xen/driver.h +++ b/src/xen/driver.h @@ -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, diff --git a/src/xen/event_channel.c b/src/xen/event_channel.c index 2bce1c1..2344169 100644 --- a/src/xen/event_channel.c +++ b/src/xen/event_channel.c @@ -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, diff --git a/src/xen/grant_table.c b/src/xen/grant_table.c index 1006579..65c7d13 100644 --- a/src/xen/grant_table.c +++ b/src/xen/grant_table.c @@ -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, diff --git a/src/xen/hvm.c b/src/xen/hvm.c index 6badbf8..9887681 100644 --- a/src/xen/hvm.c +++ b/src/xen/hvm.c @@ -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, diff --git a/src/xen/hypercall.c b/src/xen/hypercall.c index c56f218..911ae4f 100644 --- a/src/xen/hypercall.c +++ b/src/xen/hypercall.c @@ -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, diff --git a/src/xen/hypercall.h b/src/xen/hypercall.h index c9e34a9..306d9ab 100644 --- a/src/xen/hypercall.h +++ b/src/xen/hypercall.h @@ -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, diff --git a/src/xen/log.c b/src/xen/log.c index 5044070..20c9a4a 100644 --- a/src/xen/log.c +++ b/src/xen/log.c @@ -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, diff --git a/src/xen/log.h b/src/xen/log.h index 6af3158..b159350 100644 --- a/src/xen/log.h +++ b/src/xen/log.h @@ -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, diff --git a/src/xen/memory.c b/src/xen/memory.c index 5cdbe9d..0def337 100644 --- a/src/xen/memory.c +++ b/src/xen/memory.c @@ -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, diff --git a/src/xen/module.c b/src/xen/module.c index 1813e3b..1f0212f 100644 --- a/src/xen/module.c +++ b/src/xen/module.c @@ -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, diff --git a/src/xen/module.h b/src/xen/module.h index 4960ca7..7bed062 100644 --- a/src/xen/module.h +++ b/src/xen/module.h @@ -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, diff --git a/src/xen/process.c b/src/xen/process.c index db3b1f7..4491196 100644 --- a/src/xen/process.c +++ b/src/xen/process.c @@ -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, diff --git a/src/xen/process.h b/src/xen/process.h index d831ded..3b0233e 100644 --- a/src/xen/process.h +++ b/src/xen/process.h @@ -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, diff --git a/src/xen/sched.c b/src/xen/sched.c index 11ca522..a6e2a27 100644 --- a/src/xen/sched.c +++ b/src/xen/sched.c @@ -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, diff --git a/src/xen/system.c b/src/xen/system.c index 6b2a3dc..3c01397 100644 --- a/src/xen/system.c +++ b/src/xen/system.c @@ -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, diff --git a/src/xen/system.h b/src/xen/system.h index 7b2b96b..b80ba94 100644 --- a/src/xen/system.h +++ b/src/xen/system.h @@ -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, diff --git a/src/xen/unplug.c b/src/xen/unplug.c index c9a29a6..ab94da5 100644 --- a/src/xen/unplug.c +++ b/src/xen/unplug.c @@ -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, diff --git a/src/xen/unplug.h b/src/xen/unplug.h index bd8e67c..dbdcf84 100644 --- a/src/xen/unplug.h +++ b/src/xen/unplug.h @@ -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, diff --git a/src/xen/xen.def b/src/xen/xen.def index 27a5dda..dd188cf 100644 --- a/src/xen/xen.def +++ b/src/xen/xen.def @@ -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, diff --git a/src/xen/xen.rc b/src/xen/xen.rc index e9ce1b5..ad79b0c 100644 --- a/src/xen/xen.rc +++ b/src/xen/xen.rc @@ -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, diff --git a/src/xen/xen_version.c b/src/xen/xen_version.c index 6ef061f..3fa20b7 100644 --- a/src/xen/xen_version.c +++ b/src/xen/xen_version.c @@ -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, diff --git a/src/xenbus.inf b/src/xenbus.inf index f9a5475..59eab7b 100644 --- a/src/xenbus.inf +++ b/src/xenbus.inf @@ -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, diff --git a/src/xenbus/balloon.c b/src/xenbus/balloon.c index 202733c..8d7e2c2 100644 --- a/src/xenbus/balloon.c +++ b/src/xenbus/balloon.c @@ -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, diff --git a/src/xenbus/balloon.h b/src/xenbus/balloon.h index 03570f3..db3a72f 100644 --- a/src/xenbus/balloon.h +++ b/src/xenbus/balloon.h @@ -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, diff --git a/src/xenbus/bus.c b/src/xenbus/bus.c index 6443281..2f20a39 100644 --- a/src/xenbus/bus.c +++ b/src/xenbus/bus.c @@ -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, diff --git a/src/xenbus/bus.h b/src/xenbus/bus.h index 8c76566..15ac48d 100644 --- a/src/xenbus/bus.h +++ b/src/xenbus/bus.h @@ -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, diff --git a/src/xenbus/cache.c b/src/xenbus/cache.c index b1d3fe5..07dcd56 100644 --- a/src/xenbus/cache.c +++ b/src/xenbus/cache.c @@ -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, diff --git a/src/xenbus/cache.h b/src/xenbus/cache.h index be94973..2dc3821 100644 --- a/src/xenbus/cache.h +++ b/src/xenbus/cache.h @@ -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, diff --git a/src/xenbus/console.c b/src/xenbus/console.c index e638b3f..b94b00b 100644 --- a/src/xenbus/console.c +++ b/src/xenbus/console.c @@ -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, diff --git a/src/xenbus/console.h b/src/xenbus/console.h index 87be7ec..8c8f0ad 100644 --- a/src/xenbus/console.h +++ b/src/xenbus/console.h @@ -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, diff --git a/src/xenbus/debug.c b/src/xenbus/debug.c index 794a432..937547f 100644 --- a/src/xenbus/debug.c +++ b/src/xenbus/debug.c @@ -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, diff --git a/src/xenbus/debug.h b/src/xenbus/debug.h index dd7ec08..06b21d6 100644 --- a/src/xenbus/debug.h +++ b/src/xenbus/debug.h @@ -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, diff --git a/src/xenbus/dma.c b/src/xenbus/dma.c index a4e5694..a166dbb 100644 --- a/src/xenbus/dma.c +++ b/src/xenbus/dma.c @@ -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, diff --git a/src/xenbus/dma.h b/src/xenbus/dma.h index 457e0eb..dbb829e 100644 --- a/src/xenbus/dma.h +++ b/src/xenbus/dma.h @@ -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, diff --git a/src/xenbus/driver.c b/src/xenbus/driver.c index 667f8e4..522acef 100644 --- a/src/xenbus/driver.c +++ b/src/xenbus/driver.c @@ -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, diff --git a/src/xenbus/driver.h b/src/xenbus/driver.h index 55ec97b..7cd5add 100644 --- a/src/xenbus/driver.h +++ b/src/xenbus/driver.h @@ -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, diff --git a/src/xenbus/evtchn.c b/src/xenbus/evtchn.c index ccc8f2e..2e63edb 100644 --- a/src/xenbus/evtchn.c +++ b/src/xenbus/evtchn.c @@ -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, diff --git a/src/xenbus/evtchn.h b/src/xenbus/evtchn.h index 31250b2..7a869af 100644 --- a/src/xenbus/evtchn.h +++ b/src/xenbus/evtchn.h @@ -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, diff --git a/src/xenbus/evtchn_2l.c b/src/xenbus/evtchn_2l.c index 99a3779..f63ef3e 100644 --- a/src/xenbus/evtchn_2l.c +++ b/src/xenbus/evtchn_2l.c @@ -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, diff --git a/src/xenbus/evtchn_2l.h b/src/xenbus/evtchn_2l.h index c69c555..15ab9b4 100644 --- a/src/xenbus/evtchn_2l.h +++ b/src/xenbus/evtchn_2l.h @@ -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, diff --git a/src/xenbus/evtchn_abi.h b/src/xenbus/evtchn_abi.h index 404f85a..85480df 100644 --- a/src/xenbus/evtchn_abi.h +++ b/src/xenbus/evtchn_abi.h @@ -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, diff --git a/src/xenbus/evtchn_fifo.c b/src/xenbus/evtchn_fifo.c index 88b810a..a9e8591 100644 --- a/src/xenbus/evtchn_fifo.c +++ b/src/xenbus/evtchn_fifo.c @@ -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, diff --git a/src/xenbus/evtchn_fifo.h b/src/xenbus/evtchn_fifo.h index bf96b19..cb1c0d3 100644 --- a/src/xenbus/evtchn_fifo.h +++ b/src/xenbus/evtchn_fifo.h @@ -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, diff --git a/src/xenbus/fdo.c b/src/xenbus/fdo.c index d08c518..99a4605 100644 --- a/src/xenbus/fdo.c +++ b/src/xenbus/fdo.c @@ -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 1and binary forms, diff --git a/src/xenbus/fdo.h b/src/xenbus/fdo.h index d84f02d..a58526a 100644 --- a/src/xenbus/fdo.h +++ b/src/xenbus/fdo.h @@ -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, diff --git a/src/xenbus/filters.c b/src/xenbus/filters.c index fc2a1d8..5b41e11 100644 --- a/src/xenbus/filters.c +++ b/src/xenbus/filters.c @@ -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, diff --git a/src/xenbus/filters.h b/src/xenbus/filters.h index a08855b..df38c5a 100644 --- a/src/xenbus/filters.h +++ b/src/xenbus/filters.h @@ -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, diff --git a/src/xenbus/gnttab.c b/src/xenbus/gnttab.c index 33373c2..1e22a36 100644 --- a/src/xenbus/gnttab.c +++ b/src/xenbus/gnttab.c @@ -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, diff --git a/src/xenbus/gnttab.h b/src/xenbus/gnttab.h index a8cf409..0b3c6f4 100644 --- a/src/xenbus/gnttab.h +++ b/src/xenbus/gnttab.h @@ -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, diff --git a/src/xenbus/hash_table.c b/src/xenbus/hash_table.c index e9ed991..fe193a7 100644 --- a/src/xenbus/hash_table.c +++ b/src/xenbus/hash_table.c @@ -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, diff --git a/src/xenbus/hash_table.h b/src/xenbus/hash_table.h index ce0c906..beed2d6 100644 --- a/src/xenbus/hash_table.h +++ b/src/xenbus/hash_table.h @@ -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, diff --git a/src/xenbus/pdo.c b/src/xenbus/pdo.c index efd29dc..5e6fff3 100644 --- a/src/xenbus/pdo.c +++ b/src/xenbus/pdo.c @@ -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, diff --git a/src/xenbus/pdo.h b/src/xenbus/pdo.h index 84a3469..22bd506 100644 --- a/src/xenbus/pdo.h +++ b/src/xenbus/pdo.h @@ -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, diff --git a/src/xenbus/range_set.c b/src/xenbus/range_set.c index 162e3c8..08af0db 100644 --- a/src/xenbus/range_set.c +++ b/src/xenbus/range_set.c @@ -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, diff --git a/src/xenbus/range_set.h b/src/xenbus/range_set.h index a150fda..cce7a2b 100644 --- a/src/xenbus/range_set.h +++ b/src/xenbus/range_set.h @@ -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, diff --git a/src/xenbus/shared_info.c b/src/xenbus/shared_info.c index 786ffcf..b1ad2dc 100644 --- a/src/xenbus/shared_info.c +++ b/src/xenbus/shared_info.c @@ -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, diff --git a/src/xenbus/shared_info.h b/src/xenbus/shared_info.h index 2d52576..a42116c 100644 --- a/src/xenbus/shared_info.h +++ b/src/xenbus/shared_info.h @@ -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, diff --git a/src/xenbus/store.c b/src/xenbus/store.c index 028fd59..02d3cc2 100644 --- a/src/xenbus/store.c +++ b/src/xenbus/store.c @@ -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, diff --git a/src/xenbus/store.h b/src/xenbus/store.h index 54fff9d..825cfa1 100644 --- a/src/xenbus/store.h +++ b/src/xenbus/store.h @@ -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, diff --git a/src/xenbus/suspend.c b/src/xenbus/suspend.c index 9294ff7..ffae491 100644 --- a/src/xenbus/suspend.c +++ b/src/xenbus/suspend.c @@ -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, diff --git a/src/xenbus/suspend.h b/src/xenbus/suspend.h index 4a36e07..ced30e4 100644 --- a/src/xenbus/suspend.h +++ b/src/xenbus/suspend.h @@ -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, diff --git a/src/xenbus/sync.c b/src/xenbus/sync.c index 5b2b76a..fdfaf2d 100644 --- a/src/xenbus/sync.c +++ b/src/xenbus/sync.c @@ -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, diff --git a/src/xenbus/sync.h b/src/xenbus/sync.h index e64d114..b812e11 100644 --- a/src/xenbus/sync.h +++ b/src/xenbus/sync.h @@ -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, diff --git a/src/xenbus/thread.c b/src/xenbus/thread.c index 665c808..6876930 100644 --- a/src/xenbus/thread.c +++ b/src/xenbus/thread.c @@ -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, diff --git a/src/xenbus/thread.h b/src/xenbus/thread.h index 5ae2b37..6982441 100644 --- a/src/xenbus/thread.h +++ b/src/xenbus/thread.h @@ -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, diff --git a/src/xenbus/types.h b/src/xenbus/types.h index 0f08627..f96da30 100644 --- a/src/xenbus/types.h +++ b/src/xenbus/types.h @@ -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, diff --git a/src/xenbus/unplug.c b/src/xenbus/unplug.c index 1ad737d..f2f13fa 100644 --- a/src/xenbus/unplug.c +++ b/src/xenbus/unplug.c @@ -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, diff --git a/src/xenbus/unplug.h b/src/xenbus/unplug.h index 6a2382d..c1417db 100644 --- a/src/xenbus/unplug.h +++ b/src/xenbus/unplug.h @@ -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, diff --git a/src/xenbus/xenbus.rc b/src/xenbus/xenbus.rc index 56504eb..6d09955 100644 --- a/src/xenbus/xenbus.rc +++ b/src/xenbus/xenbus.rc @@ -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, diff --git a/src/xenfilt/driver.c b/src/xenfilt/driver.c index 6801d59..724d418 100644 --- a/src/xenfilt/driver.c +++ b/src/xenfilt/driver.c @@ -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, diff --git a/src/xenfilt/driver.h b/src/xenfilt/driver.h index 6a5665d..e7bd468 100644 --- a/src/xenfilt/driver.h +++ b/src/xenfilt/driver.h @@ -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, diff --git a/src/xenfilt/emulated.c b/src/xenfilt/emulated.c index 83b2070..177cde3 100644 --- a/src/xenfilt/emulated.c +++ b/src/xenfilt/emulated.c @@ -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, diff --git a/src/xenfilt/emulated.h b/src/xenfilt/emulated.h index 049c0bb..0986ded 100644 --- a/src/xenfilt/emulated.h +++ b/src/xenfilt/emulated.h @@ -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, diff --git a/src/xenfilt/fdo.c b/src/xenfilt/fdo.c index 63fa7b3..78228de 100644 --- a/src/xenfilt/fdo.c +++ b/src/xenfilt/fdo.c @@ -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, diff --git a/src/xenfilt/fdo.h b/src/xenfilt/fdo.h index 11fff44..a2ee386 100644 --- a/src/xenfilt/fdo.h +++ b/src/xenfilt/fdo.h @@ -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, diff --git a/src/xenfilt/pdo.c b/src/xenfilt/pdo.c index 741c2f3..be84996 100644 --- a/src/xenfilt/pdo.c +++ b/src/xenfilt/pdo.c @@ -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, diff --git a/src/xenfilt/pdo.h b/src/xenfilt/pdo.h index 5d57e02..5b8d920 100644 --- a/src/xenfilt/pdo.h +++ b/src/xenfilt/pdo.h @@ -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, diff --git a/src/xenfilt/thread.c b/src/xenfilt/thread.c index c80293d..8013ab6 100644 --- a/src/xenfilt/thread.c +++ b/src/xenfilt/thread.c @@ -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, diff --git a/src/xenfilt/thread.h b/src/xenfilt/thread.h index d38c29c..1f9a2a1 100644 --- a/src/xenfilt/thread.h +++ b/src/xenfilt/thread.h @@ -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, diff --git a/src/xenfilt/types.h b/src/xenfilt/types.h index 6b9519b..1738dab 100644 --- a/src/xenfilt/types.h +++ b/src/xenfilt/types.h @@ -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, diff --git a/src/xenfilt/xenfilt.rc b/src/xenfilt/xenfilt.rc index 3db5fbf..ab16101 100644 --- a/src/xenfilt/xenfilt.rc +++ b/src/xenfilt/xenfilt.rc @@ -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,