Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
221d059d
Commit
221d059d
authored
May 23, 2010
by
Avi Kivity
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
KVM: Update Red Hat copyrights
Signed-off-by:
Avi Kivity
<
avi@redhat.com
>
parent
9fb2d2b4
Changes
18
Hide whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
32 additions
and
1 deletion
+32
-1
arch/x86/kvm/emulate.c
arch/x86/kvm/emulate.c
+1
-0
arch/x86/kvm/i8254.c
arch/x86/kvm/i8254.c
+1
-0
arch/x86/kvm/i8259.c
arch/x86/kvm/i8259.c
+1
-0
arch/x86/kvm/irq.c
arch/x86/kvm/irq.c
+1
-0
arch/x86/kvm/lapic.c
arch/x86/kvm/lapic.c
+1
-0
arch/x86/kvm/mmu.c
arch/x86/kvm/mmu.c
+1
-0
arch/x86/kvm/paging_tmpl.h
arch/x86/kvm/paging_tmpl.h
+1
-0
arch/x86/kvm/svm.c
arch/x86/kvm/svm.c
+1
-0
arch/x86/kvm/timer.c
arch/x86/kvm/timer.c
+14
-0
arch/x86/kvm/vmx.c
arch/x86/kvm/vmx.c
+1
-0
arch/x86/kvm/x86.c
arch/x86/kvm/x86.c
+1
-0
virt/kvm/assigned-dev.c
virt/kvm/assigned-dev.c
+1
-1
virt/kvm/coalesced_mmio.c
virt/kvm/coalesced_mmio.c
+1
-0
virt/kvm/eventfd.c
virt/kvm/eventfd.c
+1
-0
virt/kvm/ioapic.c
virt/kvm/ioapic.c
+1
-0
virt/kvm/iommu.c
virt/kvm/iommu.c
+2
-0
virt/kvm/irq_comm.c
virt/kvm/irq_comm.c
+1
-0
virt/kvm/kvm_main.c
virt/kvm/kvm_main.c
+1
-0
No files found.
arch/x86/kvm/emulate.c
View file @
221d059d
...
...
@@ -9,6 +9,7 @@
* privileged instructions:
*
* Copyright (C) 2006 Qumranet
* Copyright 2010 Red Hat, Inc. and/or its affilates.
*
* Avi Kivity <avi@qumranet.com>
* Yaniv Kamay <yaniv@qumranet.com>
...
...
arch/x86/kvm/i8254.c
View file @
221d059d
...
...
@@ -5,6 +5,7 @@
* Copyright (c) 2006 Intel Corporation
* Copyright (c) 2007 Keir Fraser, XenSource Inc
* Copyright (c) 2008 Intel Corporation
* Copyright 2009 Red Hat, Inc. and/or its affilates.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
...
...
arch/x86/kvm/i8259.c
View file @
221d059d
...
...
@@ -3,6 +3,7 @@
*
* Copyright (c) 2003-2004 Fabrice Bellard
* Copyright (c) 2007 Intel Corporation
* Copyright 2009 Red Hat, Inc. and/or its affilates.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
...
...
arch/x86/kvm/irq.c
View file @
221d059d
/*
* irq.c: API for in kernel interrupt controller
* Copyright (c) 2007, Intel Corporation.
* Copyright 2009 Red Hat, Inc. and/or its affilates.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms and conditions of the GNU General Public License,
...
...
arch/x86/kvm/lapic.c
View file @
221d059d
...
...
@@ -5,6 +5,7 @@
* Copyright (C) 2006 Qumranet, Inc.
* Copyright (C) 2007 Novell
* Copyright (C) 2007 Intel
* Copyright 2009 Red Hat, Inc. and/or its affilates.
*
* Authors:
* Dor Laor <dor.laor@qumranet.com>
...
...
arch/x86/kvm/mmu.c
View file @
221d059d
...
...
@@ -7,6 +7,7 @@
* MMU support
*
* Copyright (C) 2006 Qumranet, Inc.
* Copyright 2010 Red Hat, Inc. and/or its affilates.
*
* Authors:
* Yaniv Kamay <yaniv@qumranet.com>
...
...
arch/x86/kvm/paging_tmpl.h
View file @
221d059d
...
...
@@ -7,6 +7,7 @@
* MMU support
*
* Copyright (C) 2006 Qumranet, Inc.
* Copyright 2010 Red Hat, Inc. and/or its affilates.
*
* Authors:
* Yaniv Kamay <yaniv@qumranet.com>
...
...
arch/x86/kvm/svm.c
View file @
221d059d
...
...
@@ -4,6 +4,7 @@
* AMD SVM support
*
* Copyright (C) 2006 Qumranet, Inc.
* Copyright 2010 Red Hat, Inc. and/or its affilates.
*
* Authors:
* Yaniv Kamay <yaniv@qumranet.com>
...
...
arch/x86/kvm/timer.c
View file @
221d059d
/*
* Kernel-based Virtual Machine driver for Linux
*
* This module enables machines with Intel VT-x extensions to run virtual
* machines without emulation or binary translation.
*
* timer support
*
* Copyright 2010 Red Hat, Inc. and/or its affilates.
*
* This work is licensed under the terms of the GNU GPL, version 2. See
* the COPYING file in the top-level directory.
*/
#include <linux/kvm_host.h>
#include <linux/kvm.h>
#include <linux/hrtimer.h>
...
...
arch/x86/kvm/vmx.c
View file @
221d059d
...
...
@@ -5,6 +5,7 @@
* machines without emulation or binary translation.
*
* Copyright (C) 2006 Qumranet, Inc.
* Copyright 2010 Red Hat, Inc. and/or its affilates.
*
* Authors:
* Avi Kivity <avi@qumranet.com>
...
...
arch/x86/kvm/x86.c
View file @
221d059d
...
...
@@ -6,6 +6,7 @@
* Copyright (C) 2006 Qumranet, Inc.
* Copyright (C) 2008 Qumranet, Inc.
* Copyright IBM Corporation, 2008
* Copyright 2010 Red Hat, Inc. and/or its affilates.
*
* Authors:
* Avi Kivity <avi@qumranet.com>
...
...
virt/kvm/assigned-dev.c
View file @
221d059d
/*
* Kernel-based Virtual Machine - device assignment support
*
* Copyright (C) 20
06-9 Red Hat, Inc
* Copyright (C) 20
10 Red Hat, Inc. and/or its affiliates.
*
* This work is licensed under the terms of the GNU GPL, version 2. See
* the COPYING file in the top-level directory.
...
...
virt/kvm/coalesced_mmio.c
View file @
221d059d
...
...
@@ -2,6 +2,7 @@
* KVM coalesced MMIO
*
* Copyright (c) 2008 Bull S.A.S.
* Copyright 2009 Red Hat, Inc. and/or its affiliates.
*
* Author: Laurent Vivier <Laurent.Vivier@bull.net>
*
...
...
virt/kvm/eventfd.c
View file @
221d059d
...
...
@@ -2,6 +2,7 @@
* kvm eventfd support - use eventfd objects to signal various KVM events
*
* Copyright 2009 Novell. All Rights Reserved.
* Copyright 2010 Red Hat, Inc. and/or its affiliates.
*
* Author:
* Gregory Haskins <ghaskins@novell.com>
...
...
virt/kvm/ioapic.c
View file @
221d059d
/*
* Copyright (C) 2001 MandrakeSoft S.A.
* Copyright 2010 Red Hat, Inc. and/or its affiliates.
*
* MandrakeSoft S.A.
* 43, rue d'Aboukir
...
...
virt/kvm/iommu.c
View file @
221d059d
...
...
@@ -16,6 +16,8 @@
*
* Copyright (C) 2006-2008 Intel Corporation
* Copyright IBM Corporation, 2008
* Copyright 2010 Red Hat, Inc. and/or its affiliates.
*
* Author: Allen M. Kay <allen.m.kay@intel.com>
* Author: Weidong Han <weidong.han@intel.com>
* Author: Ben-Ami Yassour <benami@il.ibm.com>
...
...
virt/kvm/irq_comm.c
View file @
221d059d
...
...
@@ -17,6 +17,7 @@
* Authors:
* Yaozu (Eddie) Dong <Eddie.dong@intel.com>
*
* Copyright 2010 Red Hat, Inc. and/or its affilates.
*/
#include <linux/kvm_host.h>
...
...
virt/kvm/kvm_main.c
View file @
221d059d
...
...
@@ -5,6 +5,7 @@
* machines without emulation or binary translation.
*
* Copyright (C) 2006 Qumranet, Inc.
* Copyright 2010 Red Hat, Inc. and/or its affilates.
*
* Authors:
* Avi Kivity <avi@qumranet.com>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment