Skip to content

Commit 2a9ff8d

Browse files
committed
HVM-585 Make sure copyright notices are up to date on all files in kvm repo
1 parent 1fcd331 commit 2a9ff8d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+945
-23
lines changed

COPYING.linux

+357
Large diffs are not rendered by default.

hyperv.h

+22
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
/*
2+
* GPL HEADER START
3+
*
4+
* This program is free software; you can redistribute it and/or modify
5+
* it under the terms of the GNU General Public License as published by
6+
* the Free Software Foundation; either version 2 of the License.
7+
*
8+
* This program is distributed in the hope that it will be useful,
9+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11+
* GNU General Public License for more details.
12+
*
13+
* You should have received a copy of the GNU General Public License
14+
* along with this program; if not, write to the Free Software
15+
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
16+
*
17+
* GPL HEADER END
18+
*
19+
* Copyright 2011 various Linux Kernel contributors.
20+
* Copyright 2011 Joyent, Inc. All Rights Reserved.
21+
*/
22+
123
#ifndef _ASM_X86_KVM_HYPERV_H
224
#define _ASM_X86_KVM_HYPERV_H
325

kvm.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
*
44
* This program is free software; you can redistribute it and/or modify
55
* it under the terms of the GNU General Public License as published by
6-
* the Free Software Foundation; either version 2 of the License, or
7-
* (at your option) any later version.
6+
* the Free Software Foundation; either version 2 of the License.
87
*
98
* This program is distributed in the hope that it will be useful,
109
* but WITHOUT ANY WARRANTY; without even the implied warranty of

kvm.h

+22
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
/*
2+
* GPL HEADER START
3+
*
4+
* This program is free software; you can redistribute it and/or modify
5+
* it under the terms of the GNU General Public License as published by
6+
* the Free Software Foundation; either version 2 of the License.
7+
*
8+
* This program is distributed in the hope that it will be useful,
9+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11+
* GNU General Public License for more details.
12+
*
13+
* You should have received a copy of the GNU General Public License
14+
* along with this program; if not, write to the Free Software
15+
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
16+
*
17+
* GPL HEADER END
18+
*
19+
* Copyright 2011 various Linux Kernel contributors.
20+
* Copyright 2011 Joyent, Inc. All Rights Reserved.
21+
*/
22+
123
#ifndef __KVM_H
224
#define __KVM_H
325

kvm_apicdef.h

+19
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* GPL HEADER START
3+
*
4+
* This program is free software; you can redistribute it and/or modify
5+
* it under the terms of the GNU General Public License as published by
6+
* the Free Software Foundation; either version 2 of the License.
7+
*
8+
* This program is distributed in the hope that it will be useful,
9+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11+
* GNU General Public License for more details.
12+
*
13+
* You should have received a copy of the GNU General Public License
14+
* along with this program; if not, write to the Free Software
15+
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
16+
*
17+
* GPL HEADER END
18+
*/
119
#ifndef _ASM_X86_APICDEF_H
220
#define _ASM_X86_APICDEF_H
321

@@ -6,6 +24,7 @@
624
*
725
* Alan Cox <[email protected]>, 1995.
826
* Ingo Molnar <[email protected]>, 1999, 2000
27+
* Joyent, Inc. 2011
928
*/
1029

1130
#define IO_APIC_DEFAULT_PHYS_BASE 0xfec00000

kvm_bitops.c

+22
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
1+
/*
2+
* GPL HEADER START
3+
*
4+
* This program is free software; you can redistribute it and/or modify
5+
* it under the terms of the GNU General Public License as published by
6+
* the Free Software Foundation; either version 2 of the License.
7+
*
8+
* This program is distributed in the hope that it will be useful,
9+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11+
* GNU General Public License for more details.
12+
*
13+
* You should have received a copy of the GNU General Public License
14+
* along with this program; if not, write to the Free Software
15+
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
16+
*
17+
* GPL HEADER END
18+
*
19+
* Copyright 2011 various Linux Kernel contributors.
20+
* Copyright 2011 Joyent, Inc. All Rights Reserved.
21+
*/
122
/*
223
* Copyright 1992, Linus Torvalds.
24+
* Copyright 2011 Joyent, Inc.
325
*
426
* Note: inlines with more than a single statement should be marked
527
* __always_inline to avoid problems with older gcc's inlining heuristics.

kvm_bitops.h

+20
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,28 @@
1+
/*
2+
* GPL HEADER START
3+
*
4+
* This program is free software; you can redistribute it and/or modify
5+
* it under the terms of the GNU General Public License as published by
6+
* the Free Software Foundation; either version 2 of the License.
7+
*
8+
* This program is distributed in the hope that it will be useful,
9+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11+
* GNU General Public License for more details.
12+
*
13+
* You should have received a copy of the GNU General Public License
14+
* along with this program; if not, write to the Free Software
15+
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
16+
*
17+
* GPL HEADER END
18+
*/
19+
120
#ifndef _ASM_X86_BITOPS_H
221
#define _ASM_X86_BITOPS_H
322

423
/*
524
* Copyright 1992, Linus Torvalds.
25+
* Copyright 2011, Joyent, Inc.
626
*
727
* Note: inlines with more than a single statement should be marked
828
* __always_inline to avoid problems with older gcc's inlining heuristics.

kvm_cache_regs.c

+19-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,23 @@
11
/*
2-
* Ported from Linux by Joyent.
3-
* Copyright 2011 Joyent, Inc.
2+
* GPL HEADER START
3+
*
4+
* This program is free software; you can redistribute it and/or modify
5+
* it under the terms of the GNU General Public License as published by
6+
* the Free Software Foundation; either version 2 of the License.
7+
*
8+
* This program is distributed in the hope that it will be useful,
9+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11+
* GNU General Public License for more details.
12+
*
13+
* You should have received a copy of the GNU General Public License
14+
* along with this program; if not, write to the Free Software
15+
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
16+
*
17+
* GPL HEADER END
18+
*
19+
* Copyright 2011 various Linux Kernel contributors.
20+
* Copyright 2011 Joyent, Inc. All Rights Reserved.
421
*/
522

623
#include "kvm_bitops.h"

kvm_cache_regs.h

+22
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
/*
2+
* GPL HEADER START
3+
*
4+
* This program is free software; you can redistribute it and/or modify
5+
* it under the terms of the GNU General Public License as published by
6+
* the Free Software Foundation; either version 2 of the License.
7+
*
8+
* This program is distributed in the hope that it will be useful,
9+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11+
* GNU General Public License for more details.
12+
*
13+
* You should have received a copy of the GNU General Public License
14+
* along with this program; if not, write to the Free Software
15+
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
16+
*
17+
* GPL HEADER END
18+
*
19+
* Copyright 1992, Linus Torvalds.
20+
* Copyright 2011 Joyent, Inc. All Rights Reserved.
21+
*/
22+
123
#ifndef ASM_KVM_CACHE_REGS_H
224
#define ASM_KVM_CACHE_REGS_H
325

kvm_coalesced_mmio.c

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
*
66
* Author: Laurent Vivier <[email protected]>
77
*
8-
* Ported to illumos by Joyent.
98
* Copyright 2011 Joyent, Inc. All Rights Reserved.
109
*/
1110

kvm_coalesced_mmio.h

+20
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* GPL HEADER START
3+
*
4+
* This program is free software; you can redistribute it and/or modify
5+
* it under the terms of the GNU General Public License as published by
6+
* the Free Software Foundation; either version 2 of the License.
7+
*
8+
* This program is distributed in the hope that it will be useful,
9+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11+
* GNU General Public License for more details.
12+
*
13+
* You should have received a copy of the GNU General Public License
14+
* along with this program; if not, write to the Free Software
15+
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
16+
*
17+
* GPL HEADER END
18+
*/
119
#ifndef __KVM_COALESCED_MMIO_H__
220
#define __KVM_COALESCED_MMIO_H__
321

@@ -8,6 +26,8 @@
826
*
927
* Author: Laurent Vivier <[email protected]>
1028
*
29+
* Copyright (c) 2011 Joyent, Inc.
30+
*
1131
*/
1232
#include <sys/mutex.h>
1333

kvm_cpuid.h

+23
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
1+
/*
2+
* GPL HEADER START
3+
*
4+
* This program is free software; you can redistribute it and/or modify
5+
* it under the terms of the GNU General Public License as published by
6+
* the Free Software Foundation; either version 2 of the License.
7+
*
8+
* This program is distributed in the hope that it will be useful,
9+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11+
* GNU General Public License for more details.
12+
*
13+
* You should have received a copy of the GNU General Public License
14+
* along with this program; if not, write to the Free Software
15+
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
16+
*
17+
* GPL HEADER END
18+
*
19+
* Copyright 2011 various Linux Kernel contributors.
20+
* Copyright 2011 Joyent, Inc. All Rights Reserved.
21+
*/
122
/*
223
* Common CPUID definitions for KVM
24+
*
25+
* Derived from Linux arch/x86/include/asm/cpufeature.h
326
*/
427

528
#ifndef __KVM_CPUID_H

kvm_emulate.c

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
* the COPYING file in the top-level directory.
1818
*
1919
* From: xen-unstable 10676:af9809f51f81a3c43f276f00c81a52ef558afda4
20+
*
21+
* Copyright 2011 Joyent, Inc.
2022
*/
2123

2224
#include <sys/types.h>

kvm_emulate.h

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
* Copyright (c) 2005 Keir Fraser
77
*
88
* From: xen-unstable 10676:af9809f51f81a3c43f276f00c81a52ef558afda4
9+
*
10+
* Copyright (c) 2011 Joyent, Inc.
911
*/
1012

1113
#ifndef _ASM_X86_KVM_X86_EMULATE_H

kvm_host.h

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
/*
22
* This work is licensed under the terms of the GNU GPL, version 2. See the
33
* COPYING file in the top-level directory.
4+
*
5+
* Copyright 2011 various Linux Kernel contributors.
6+
* Copyright 2011 Joyent, Inc. All Rights Reserved.
47
*/
58

69
#ifndef __KVM_HOST_H

kvm_i8254.c

-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
* Sheng Yang <[email protected]>
2929
* Based on QEMU and Xen.
3030
*
31-
* This has been ported to illumos by Joyent.
3231
* Copyright 2011 Joyent, Inc. All rights reserved.
3332
*/
3433

kvm_i8254.h

+22
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
/*
2+
* GPL HEADER START
3+
*
4+
* This program is free software; you can redistribute it and/or modify
5+
* it under the terms of the GNU General Public License as published by
6+
* the Free Software Foundation; either version 2 of the License.
7+
*
8+
* This program is distributed in the hope that it will be useful,
9+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11+
* GNU General Public License for more details.
12+
*
13+
* You should have received a copy of the GNU General Public License
14+
* along with this program; if not, write to the Free Software
15+
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
16+
*
17+
* GPL HEADER END
18+
*
19+
* Copyright 2011 various Linux Kernel contributors.
20+
* Copyright 2011 Joyent, Inc. All Rights Reserved.
21+
*/
22+
123
#ifndef __KVM_I8254_H
224
#define __KVM_I8254_H
325

kvm_i8259.c

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
* Yaozu (Eddie) Dong <[email protected]>
2626
* Port from Qemu.
2727
*
28-
* Ported from Linux to illumos by Joyent.
2928
* Copyright 2011 Joyent, Inc. All Rights Reserved.
3029
*/
3130

kvm_impl.h

+21
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,27 @@
22
* This header files contains pieces necessary for the illumos implementation of
33
* the kvm driver. These definitions should not be exported to userland.
44
*/
5+
/*
6+
* GPL HEADER START
7+
*
8+
* This program is free software; you can redistribute it and/or modify
9+
* it under the terms of the GNU General Public License as published by
10+
* the Free Software Foundation; either version 2 of the License.
11+
*
12+
* This program is distributed in the hope that it will be useful,
13+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
* GNU General Public License for more details.
16+
*
17+
* You should have received a copy of the GNU General Public License
18+
* along with this program; if not, write to the Free Software
19+
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20+
*
21+
* GPL HEADER END
22+
*
23+
* Copyright 2011 Joyent, Inc. All Rights Reserved.
24+
*/
25+
526
#ifndef __KVM_IMPL_H
627
#define __KVM_IMPL_H
728

kvm_ioapic.h

+22
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
/*
2+
* GPL HEADER START
3+
*
4+
* This program is free software; you can redistribute it and/or modify
5+
* it under the terms of the GNU General Public License as published by
6+
* the Free Software Foundation; either version 2 of the License.
7+
*
8+
* This program is distributed in the hope that it will be useful,
9+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11+
* GNU General Public License for more details.
12+
*
13+
* You should have received a copy of the GNU General Public License
14+
* along with this program; if not, write to the Free Software
15+
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
16+
*
17+
* GPL HEADER END
18+
*
19+
* Copyright 2011 various Linux Kernel contributors.
20+
* Copyright 2011 Joyent, Inc. All Rights Reserved.
21+
*/
22+
123
#ifndef __KVM_IO_APIC_H
224
#define __KVM_IO_APIC_H
325

0 commit comments

Comments
 (0)