Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

xen: fix wrong SPDX headers of Xen related headers

Commit b24413180f5600 ("License cleanup: add SPDX GPL-2.0 license
identifier to files with no license") was meant to do a tree-wide
cleanup for files without any license information by adding a SPDX
GPL-2.0 line to them.

Unfortunately this was applied even to several Xen-related headers
which have been originally under the MIT license, but obviously have
been copied to the Linux tree from the Xen project without keeping the
license boiler plate as required.

Correct that by changing the license of those files back to "MIT".

Some files still contain the MIT license text. Replace that by the
related SPDX line.

Signed-off-by: Juergen Gross <jgross@suse.com>
Reviewed-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Link: https://lore.kernel.org/r/20211015143312.29900-1-jgross@suse.com
Signed-off-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>

authored by

Juergen Gross and committed by
Boris Ostrovsky
9e2b3e83 d8da2667

+36 -410
+1 -18
include/xen/interface/callback.h
··· 1 + /* SPDX-License-Identifier: MIT */ 1 2 /****************************************************************************** 2 3 * callback.h 3 4 * 4 5 * Register guest OS callbacks with Xen. 5 - * 6 - * Permission is hereby granted, free of charge, to any person obtaining a copy 7 - * of this software and associated documentation files (the "Software"), to 8 - * deal in the Software without restriction, including without limitation the 9 - * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 10 - * sell copies of the Software, and to permit persons to whom the Software is 11 - * furnished to do so, subject to the following conditions: 12 - * 13 - * The above copyright notice and this permission notice shall be included in 14 - * all copies or substantial portions of the Software. 15 - * 16 - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 21 - * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22 - * DEALINGS IN THE SOFTWARE. 23 6 * 24 7 * Copyright (c) 2006, Ian Campbell 25 8 */
+1 -18
include/xen/interface/elfnote.h
··· 1 + /* SPDX-License-Identifier: MIT */ 1 2 /****************************************************************************** 2 3 * elfnote.h 3 4 * 4 5 * Definitions used for the Xen ELF notes. 5 - * 6 - * Permission is hereby granted, free of charge, to any person obtaining a copy 7 - * of this software and associated documentation files (the "Software"), to 8 - * deal in the Software without restriction, including without limitation the 9 - * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 10 - * sell copies of the Software, and to permit persons to whom the Software is 11 - * furnished to do so, subject to the following conditions: 12 - * 13 - * The above copyright notice and this permission notice shall be included in 14 - * all copies or substantial portions of the Software. 15 - * 16 - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 21 - * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22 - * DEALINGS IN THE SOFTWARE. 23 6 * 24 7 * Copyright (c) 2006, Ian Campbell, XenSource Ltd. 25 8 */
+1 -1
include/xen/interface/event_channel.h
··· 1 - /* SPDX-License-Identifier: GPL-2.0 */ 1 + /* SPDX-License-Identifier: MIT */ 2 2 /****************************************************************************** 3 3 * event_channel.h 4 4 *
+1 -1
include/xen/interface/features.h
··· 1 - /* SPDX-License-Identifier: GPL-2.0 */ 1 + /* SPDX-License-Identifier: MIT */ 2 2 /****************************************************************************** 3 3 * features.h 4 4 *
+1 -18
include/xen/interface/grant_table.h
··· 1 + /* SPDX-License-Identifier: MIT */ 1 2 /****************************************************************************** 2 3 * grant_table.h 3 4 * 4 5 * Interface for granting foreign access to page frames, and receiving 5 6 * page-ownership transfers. 6 - * 7 - * Permission is hereby granted, free of charge, to any person obtaining a copy 8 - * of this software and associated documentation files (the "Software"), to 9 - * deal in the Software without restriction, including without limitation the 10 - * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 11 - * sell copies of the Software, and to permit persons to whom the Software is 12 - * furnished to do so, subject to the following conditions: 13 - * 14 - * The above copyright notice and this permission notice shall be included in 15 - * all copies or substantial portions of the Software. 16 - * 17 - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 18 - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 19 - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 20 - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 21 - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 22 - * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 23 - * DEALINGS IN THE SOFTWARE. 24 7 * 25 8 * Copyright (c) 2004, K A Fraser 26 9 */
+1 -18
include/xen/interface/hvm/dm_op.h
··· 1 + /* SPDX-License-Identifier: MIT */ 1 2 /* 2 3 * Copyright (c) 2016, Citrix Systems Inc 3 - * 4 - * Permission is hereby granted, free of charge, to any person obtaining a copy 5 - * of this software and associated documentation files (the "Software"), to 6 - * deal in the Software without restriction, including without limitation the 7 - * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 8 - * sell copies of the Software, and to permit persons to whom the Software is 9 - * furnished to do so, subject to the following conditions: 10 - * 11 - * The above copyright notice and this permission notice shall be included in 12 - * all copies or substantial portions of the Software. 13 - * 14 - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 17 - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 18 - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 19 - * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 20 - * DEALINGS IN THE SOFTWARE. 21 4 */ 22 5 23 6 #ifndef __XEN_PUBLIC_HVM_DM_OP_H__
+1 -19
include/xen/interface/hvm/hvm_op.h
··· 1 - /* 2 - * Permission is hereby granted, free of charge, to any person obtaining a copy 3 - * of this software and associated documentation files (the "Software"), to 4 - * deal in the Software without restriction, including without limitation the 5 - * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 6 - * sell copies of the Software, and to permit persons to whom the Software is 7 - * furnished to do so, subject to the following conditions: 8 - * 9 - * The above copyright notice and this permission notice shall be included in 10 - * all copies or substantial portions of the Software. 11 - * 12 - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 14 - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 15 - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 16 - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 17 - * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 18 - * DEALINGS IN THE SOFTWARE. 19 - */ 1 + /* SPDX-License-Identifier: MIT */ 20 2 21 3 #ifndef __XEN_PUBLIC_HVM_HVM_OP_H__ 22 4 #define __XEN_PUBLIC_HVM_HVM_OP_H__
+1 -18
include/xen/interface/hvm/hvm_vcpu.h
··· 1 + /* SPDX-License-Identifier: MIT */ 1 2 /* 2 - * Permission is hereby granted, free of charge, to any person obtaining a copy 3 - * of this software and associated documentation files (the "Software"), to 4 - * deal in the Software without restriction, including without limitation the 5 - * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 6 - * sell copies of the Software, and to permit persons to whom the Software is 7 - * furnished to do so, subject to the following conditions: 8 - * 9 - * The above copyright notice and this permission notice shall be included in 10 - * all copies or substantial portions of the Software. 11 - * 12 - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 14 - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 15 - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 16 - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 17 - * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 18 - * DEALINGS IN THE SOFTWARE. 19 - * 20 3 * Copyright (c) 2015, Roger Pau Monne <roger.pau@citrix.com> 21 4 */ 22 5
+1 -19
include/xen/interface/hvm/params.h
··· 1 - /* 2 - * Permission is hereby granted, free of charge, to any person obtaining a copy 3 - * of this software and associated documentation files (the "Software"), to 4 - * deal in the Software without restriction, including without limitation the 5 - * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 6 - * sell copies of the Software, and to permit persons to whom the Software is 7 - * furnished to do so, subject to the following conditions: 8 - * 9 - * The above copyright notice and this permission notice shall be included in 10 - * all copies or substantial portions of the Software. 11 - * 12 - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 14 - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 15 - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 16 - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 17 - * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 18 - * DEALINGS IN THE SOFTWARE. 19 - */ 1 + /* SPDX-License-Identifier: MIT */ 20 2 21 3 #ifndef __XEN_PUBLIC_HVM_PARAMS_H__ 22 4 #define __XEN_PUBLIC_HVM_PARAMS_H__
+1 -18
include/xen/interface/hvm/start_info.h
··· 1 + /* SPDX-License-Identifier: MIT */ 1 2 /* 2 - * Permission is hereby granted, free of charge, to any person obtaining a copy 3 - * of this software and associated documentation files (the "Software"), to 4 - * deal in the Software without restriction, including without limitation the 5 - * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 6 - * sell copies of the Software, and to permit persons to whom the Software is 7 - * furnished to do so, subject to the following conditions: 8 - * 9 - * The above copyright notice and this permission notice shall be included in 10 - * all copies or substantial portions of the Software. 11 - * 12 - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 14 - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 15 - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 16 - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 17 - * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 18 - * DEALINGS IN THE SOFTWARE. 19 - * 20 3 * Copyright (c) 2016, Citrix Systems, Inc. 21 4 */ 22 5
+1 -18
include/xen/interface/io/9pfs.h
··· 1 + /* SPDX-License-Identifier: MIT */ 1 2 /* 2 3 * 9pfs.h -- Xen 9PFS transport 3 - * 4 - * Permission is hereby granted, free of charge, to any person obtaining a copy 5 - * of this software and associated documentation files (the "Software"), to 6 - * deal in the Software without restriction, including without limitation the 7 - * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 8 - * sell copies of the Software, and to permit persons to whom the Software is 9 - * furnished to do so, subject to the following conditions: 10 - * 11 - * The above copyright notice and this permission notice shall be included in 12 - * all copies or substantial portions of the Software. 13 - * 14 - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 17 - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 18 - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 19 - * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 20 - * DEALINGS IN THE SOFTWARE. 21 4 * 22 5 * Copyright (C) 2017 Stefano Stabellini <stefano@aporeto.com> 23 6 */
+1 -1
include/xen/interface/io/blkif.h
··· 1 - /* SPDX-License-Identifier: GPL-2.0 */ 1 + /* SPDX-License-Identifier: MIT */ 2 2 /****************************************************************************** 3 3 * blkif.h 4 4 *
+1 -1
include/xen/interface/io/console.h
··· 1 - /* SPDX-License-Identifier: GPL-2.0 */ 1 + /* SPDX-License-Identifier: MIT */ 2 2 /****************************************************************************** 3 3 * console.h 4 4 *
+1 -18
include/xen/interface/io/displif.h
··· 1 + /* SPDX-License-Identifier: MIT */ 1 2 /****************************************************************************** 2 3 * displif.h 3 4 * 4 5 * Unified display device I/O interface for Xen guest OSes. 5 - * 6 - * Permission is hereby granted, free of charge, to any person obtaining a copy 7 - * of this software and associated documentation files (the "Software"), to 8 - * deal in the Software without restriction, including without limitation the 9 - * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 10 - * sell copies of the Software, and to permit persons to whom the Software is 11 - * furnished to do so, subject to the following conditions: 12 - * 13 - * The above copyright notice and this permission notice shall be included in 14 - * all copies or substantial portions of the Software. 15 - * 16 - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 21 - * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22 - * DEALINGS IN THE SOFTWARE. 23 6 * 24 7 * Copyright (C) 2016-2017 EPAM Systems Inc. 25 8 *
+1 -18
include/xen/interface/io/fbif.h
··· 1 + /* SPDX-License-Identifier: MIT */ 1 2 /* 2 3 * fbif.h -- Xen virtual frame buffer device 3 - * 4 - * Permission is hereby granted, free of charge, to any person obtaining a copy 5 - * of this software and associated documentation files (the "Software"), to 6 - * deal in the Software without restriction, including without limitation the 7 - * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 8 - * sell copies of the Software, and to permit persons to whom the Software is 9 - * furnished to do so, subject to the following conditions: 10 - * 11 - * The above copyright notice and this permission notice shall be included in 12 - * all copies or substantial portions of the Software. 13 - * 14 - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 17 - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 18 - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 19 - * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 20 - * DEALINGS IN THE SOFTWARE. 21 4 * 22 5 * Copyright (C) 2005 Anthony Liguori <aliguori@us.ibm.com> 23 6 * Copyright (C) 2006 Red Hat, Inc., Markus Armbruster <armbru@redhat.com>
+1 -18
include/xen/interface/io/kbdif.h
··· 1 + /* SPDX-License-Identifier: MIT */ 1 2 /* 2 3 * kbdif.h -- Xen virtual keyboard/mouse 3 - * 4 - * Permission is hereby granted, free of charge, to any person obtaining a copy 5 - * of this software and associated documentation files (the "Software"), to 6 - * deal in the Software without restriction, including without limitation the 7 - * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 8 - * sell copies of the Software, and to permit persons to whom the Software is 9 - * furnished to do so, subject to the following conditions: 10 - * 11 - * The above copyright notice and this permission notice shall be included in 12 - * all copies or substantial portions of the Software. 13 - * 14 - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 17 - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 18 - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 19 - * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 20 - * DEALINGS IN THE SOFTWARE. 21 4 * 22 5 * Copyright (C) 2005 Anthony Liguori <aliguori@us.ibm.com> 23 6 * Copyright (C) 2006 Red Hat, Inc., Markus Armbruster <armbru@redhat.com>
+1 -18
include/xen/interface/io/netif.h
··· 1 + /* SPDX-License-Identifier: MIT */ 1 2 /****************************************************************************** 2 3 * xen_netif.h 3 4 * 4 5 * Unified network-device I/O interface for Xen guest OSes. 5 - * 6 - * Permission is hereby granted, free of charge, to any person obtaining a copy 7 - * of this software and associated documentation files (the "Software"), to 8 - * deal in the Software without restriction, including without limitation the 9 - * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 10 - * sell copies of the Software, and to permit persons to whom the Software is 11 - * furnished to do so, subject to the following conditions: 12 - * 13 - * The above copyright notice and this permission notice shall be included in 14 - * all copies or substantial portions of the Software. 15 - * 16 - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 21 - * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22 - * DEALINGS IN THE SOFTWARE. 23 6 * 24 7 * Copyright (c) 2003-2004, Keir Fraser 25 8 */
+1 -18
include/xen/interface/io/pciif.h
··· 1 + /* SPDX-License-Identifier: MIT */ 1 2 /* 2 3 * PCI Backend/Frontend Common Data Structures & Macros 3 - * 4 - * Permission is hereby granted, free of charge, to any person obtaining a copy 5 - * of this software and associated documentation files (the "Software"), to 6 - * deal in the Software without restriction, including without limitation the 7 - * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 8 - * sell copies of the Software, and to permit persons to whom the Software is 9 - * furnished to do so, subject to the following conditions: 10 - * 11 - * The above copyright notice and this permission notice shall be included in 12 - * all copies or substantial portions of the Software. 13 - * 14 - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 17 - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 18 - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 19 - * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 20 - * DEALINGS IN THE SOFTWARE. 21 4 * 22 5 * Author: Ryan Wilson <hap9@epoch.ncsc.mil> 23 6 */
+1 -1
include/xen/interface/io/protocols.h
··· 1 - /* SPDX-License-Identifier: GPL-2.0 */ 1 + /* SPDX-License-Identifier: MIT */ 2 2 #ifndef __XEN_PROTOCOLS_H__ 3 3 #define __XEN_PROTOCOLS_H__ 4 4
+2
include/xen/interface/io/pvcalls.h
··· 1 + /* SPDX-License-Identifier: MIT */ 2 + 1 3 #ifndef __XEN_PUBLIC_IO_XEN_PVCALLS_H__ 2 4 #define __XEN_PUBLIC_IO_XEN_PVCALLS_H__ 3 5
+1 -18
include/xen/interface/io/ring.h
··· 1 + /* SPDX-License-Identifier: MIT */ 1 2 /****************************************************************************** 2 3 * ring.h 3 4 * 4 5 * Shared producer-consumer ring macros. 5 - * 6 - * Permission is hereby granted, free of charge, to any person obtaining a copy 7 - * of this software and associated documentation files (the "Software"), to 8 - * deal in the Software without restriction, including without limitation the 9 - * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 10 - * sell copies of the Software, and to permit persons to whom the Software is 11 - * furnished to do so, subject to the following conditions: 12 - * 13 - * The above copyright notice and this permission notice shall be included in 14 - * all copies or substantial portions of the Software. 15 - * 16 - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 21 - * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22 - * DEALINGS IN THE SOFTWARE. 23 6 * 24 7 * Tim Deegan and Andrew Warfield November 2004. 25 8 */
+1 -18
include/xen/interface/io/sndif.h
··· 1 + /* SPDX-License-Identifier: MIT */ 1 2 /****************************************************************************** 2 3 * sndif.h 3 4 * 4 5 * Unified sound-device I/O interface for Xen guest OSes. 5 - * 6 - * Permission is hereby granted, free of charge, to any person obtaining a copy 7 - * of this software and associated documentation files (the "Software"), to 8 - * deal in the Software without restriction, including without limitation the 9 - * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 10 - * sell copies of the Software, and to permit persons to whom the Software is 11 - * furnished to do so, subject to the following conditions: 12 - * 13 - * The above copyright notice and this permission notice shall be included in 14 - * all copies or substantial portions of the Software. 15 - * 16 - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 21 - * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22 - * DEALINGS IN THE SOFTWARE. 23 6 * 24 7 * Copyright (C) 2013-2015 GlobalLogic Inc. 25 8 * Copyright (C) 2016-2017 EPAM Systems Inc.
+1 -18
include/xen/interface/io/vscsiif.h
··· 1 + /* SPDX-License-Identifier: MIT */ 1 2 /****************************************************************************** 2 3 * vscsiif.h 3 4 * 4 5 * Based on the blkif.h code. 5 - * 6 - * Permission is hereby granted, free of charge, to any person obtaining a copy 7 - * of this software and associated documentation files (the "Software"), to 8 - * deal in the Software without restriction, including without limitation the 9 - * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 10 - * sell copies of the Software, and to permit persons to whom the Software is 11 - * furnished to do so, subject to the following conditions: 12 - * 13 - * The above copyright notice and this permission notice shall be included in 14 - * all copies or substantial portions of the Software. 15 - * 16 - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 21 - * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22 - * DEALINGS IN THE SOFTWARE. 23 6 * 24 7 * Copyright(c) FUJITSU Limited 2008. 25 8 */
+1 -1
include/xen/interface/io/xenbus.h
··· 1 - /* SPDX-License-Identifier: GPL-2.0 */ 1 + /* SPDX-License-Identifier: MIT */ 2 2 /***************************************************************************** 3 3 * xenbus.h 4 4 *
+1 -1
include/xen/interface/io/xs_wire.h
··· 1 - /* SPDX-License-Identifier: GPL-2.0 */ 1 + /* SPDX-License-Identifier: MIT */ 2 2 /* 3 3 * Details of the "wire" protocol between Xen Store Daemon and client 4 4 * library or guest kernel.
+1 -1
include/xen/interface/memory.h
··· 1 - /* SPDX-License-Identifier: GPL-2.0 */ 1 + /* SPDX-License-Identifier: MIT */ 2 2 /****************************************************************************** 3 3 * memory.h 4 4 *
+1 -1
include/xen/interface/nmi.h
··· 1 - /* SPDX-License-Identifier: GPL-2.0 */ 1 + /* SPDX-License-Identifier: MIT */ 2 2 /****************************************************************************** 3 3 * nmi.h 4 4 *
+1 -19
include/xen/interface/physdev.h
··· 1 - /* 2 - * Permission is hereby granted, free of charge, to any person obtaining a copy 3 - * of this software and associated documentation files (the "Software"), to 4 - * deal in the Software without restriction, including without limitation the 5 - * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 6 - * sell copies of the Software, and to permit persons to whom the Software is 7 - * furnished to do so, subject to the following conditions: 8 - * 9 - * The above copyright notice and this permission notice shall be included in 10 - * all copies or substantial portions of the Software. 11 - * 12 - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 14 - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 15 - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 16 - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 17 - * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 18 - * DEALINGS IN THE SOFTWARE. 19 - */ 1 + /* SPDX-License-Identifier: MIT */ 20 2 21 3 #ifndef __XEN_PUBLIC_PHYSDEV_H__ 22 4 #define __XEN_PUBLIC_PHYSDEV_H__
+1 -18
include/xen/interface/platform.h
··· 1 + /* SPDX-License-Identifier: MIT */ 1 2 /****************************************************************************** 2 3 * platform.h 3 4 * 4 5 * Hardware platform operations. Intended for use by domain-0 kernel. 5 - * 6 - * Permission is hereby granted, free of charge, to any person obtaining a copy 7 - * of this software and associated documentation files (the "Software"), to 8 - * deal in the Software without restriction, including without limitation the 9 - * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 10 - * sell copies of the Software, and to permit persons to whom the Software is 11 - * furnished to do so, subject to the following conditions: 12 - * 13 - * The above copyright notice and this permission notice shall be included in 14 - * all copies or substantial portions of the Software. 15 - * 16 - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 21 - * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22 - * DEALINGS IN THE SOFTWARE. 23 6 * 24 7 * Copyright (c) 2002-2006, K Fraser 25 8 */
+1 -18
include/xen/interface/sched.h
··· 1 + /* SPDX-License-Identifier: MIT */ 1 2 /****************************************************************************** 2 3 * sched.h 3 4 * 4 5 * Scheduler state interactions 5 - * 6 - * Permission is hereby granted, free of charge, to any person obtaining a copy 7 - * of this software and associated documentation files (the "Software"), to 8 - * deal in the Software without restriction, including without limitation the 9 - * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 10 - * sell copies of the Software, and to permit persons to whom the Software is 11 - * furnished to do so, subject to the following conditions: 12 - * 13 - * The above copyright notice and this permission notice shall be included in 14 - * all copies or substantial portions of the Software. 15 - * 16 - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 21 - * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22 - * DEALINGS IN THE SOFTWARE. 23 6 * 24 7 * Copyright (c) 2005, Keir Fraser <keir@xensource.com> 25 8 */
+1 -18
include/xen/interface/vcpu.h
··· 1 + /* SPDX-License-Identifier: MIT */ 1 2 /****************************************************************************** 2 3 * vcpu.h 3 4 * 4 5 * VCPU initialisation, query, and hotplug. 5 - * 6 - * Permission is hereby granted, free of charge, to any person obtaining a copy 7 - * of this software and associated documentation files (the "Software"), to 8 - * deal in the Software without restriction, including without limitation the 9 - * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 10 - * sell copies of the Software, and to permit persons to whom the Software is 11 - * furnished to do so, subject to the following conditions: 12 - * 13 - * The above copyright notice and this permission notice shall be included in 14 - * all copies or substantial portions of the Software. 15 - * 16 - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 21 - * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22 - * DEALINGS IN THE SOFTWARE. 23 6 * 24 7 * Copyright (c) 2005, Keir Fraser <keir@xensource.com> 25 8 */
+1 -1
include/xen/interface/version.h
··· 1 - /* SPDX-License-Identifier: GPL-2.0 */ 1 + /* SPDX-License-Identifier: MIT */ 2 2 /****************************************************************************** 3 3 * version.h 4 4 *
+1
include/xen/interface/xen-mca.h
··· 1 + /* SPDX-License-Identifier: MIT */ 1 2 /****************************************************************************** 2 3 * arch-x86/mca.h 3 4 * Guest OS machine check interface to x86 Xen.
+1 -18
include/xen/interface/xen.h
··· 1 + /* SPDX-License-Identifier: MIT */ 1 2 /****************************************************************************** 2 3 * xen.h 3 4 * 4 5 * Guest OS interface to Xen. 5 - * 6 - * Permission is hereby granted, free of charge, to any person obtaining a copy 7 - * of this software and associated documentation files (the "Software"), to 8 - * deal in the Software without restriction, including without limitation the 9 - * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 10 - * sell copies of the Software, and to permit persons to whom the Software is 11 - * furnished to do so, subject to the following conditions: 12 - * 13 - * The above copyright notice and this permission notice shall be included in 14 - * all copies or substantial portions of the Software. 15 - * 16 - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 21 - * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22 - * DEALINGS IN THE SOFTWARE. 23 6 * 24 7 * Copyright (c) 2004, K A Fraser 25 8 */
+1 -1
include/xen/interface/xenpmu.h
··· 1 - /* SPDX-License-Identifier: GPL-2.0 */ 1 + /* SPDX-License-Identifier: MIT */ 2 2 #ifndef __XEN_PUBLIC_XENPMU_H__ 3 3 #define __XEN_PUBLIC_XENPMU_H__ 4 4