svn commit: r335030 - in head/sys/amd64/vmm: . amd intel io

Marcelo Araujo araujo at FreeBSD.org
Wed Jun 13 07:03:04 UTC 2018


Author: araujo
Date: Wed Jun 13 07:02:58 2018
New Revision: 335030
URL: https://svnweb.freebsd.org/changeset/base/335030

Log:
  Add SPDX tags to vmm(4).
  
  MFC after:	4 weeks.
  Sponsored by:	iXsystems Inc.

Modified:
  head/sys/amd64/vmm/amd/amdvi_hw.c
  head/sys/amd64/vmm/amd/amdvi_priv.h
  head/sys/amd64/vmm/amd/ivrs_drv.c
  head/sys/amd64/vmm/amd/npt.c
  head/sys/amd64/vmm/amd/npt.h
  head/sys/amd64/vmm/amd/svm.c
  head/sys/amd64/vmm/amd/svm.h
  head/sys/amd64/vmm/amd/svm_genassym.c
  head/sys/amd64/vmm/amd/svm_msr.c
  head/sys/amd64/vmm/amd/svm_msr.h
  head/sys/amd64/vmm/amd/svm_softc.h
  head/sys/amd64/vmm/amd/svm_support.S
  head/sys/amd64/vmm/amd/vmcb.c
  head/sys/amd64/vmm/amd/vmcb.h
  head/sys/amd64/vmm/intel/vmx_support.S
  head/sys/amd64/vmm/io/vatpic.c
  head/sys/amd64/vmm/io/vatpit.h
  head/sys/amd64/vmm/io/vpmtmr.c
  head/sys/amd64/vmm/io/vpmtmr.h
  head/sys/amd64/vmm/io/vrtc.c
  head/sys/amd64/vmm/io/vrtc.h
  head/sys/amd64/vmm/vmm_ioport.c
  head/sys/amd64/vmm/vmm_ioport.h

Modified: head/sys/amd64/vmm/amd/amdvi_hw.c
==============================================================================
--- head/sys/amd64/vmm/amd/amdvi_hw.c	Wed Jun 13 06:11:04 2018	(r335029)
+++ head/sys/amd64/vmm/amd/amdvi_hw.c	Wed Jun 13 07:02:58 2018	(r335030)
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
+ *
  * Copyright (c) 2016, Anish Gupta (anish at freebsd.org)
  * All rights reserved.
  *

Modified: head/sys/amd64/vmm/amd/amdvi_priv.h
==============================================================================
--- head/sys/amd64/vmm/amd/amdvi_priv.h	Wed Jun 13 06:11:04 2018	(r335029)
+++ head/sys/amd64/vmm/amd/amdvi_priv.h	Wed Jun 13 07:02:58 2018	(r335030)
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
+ *
  * Copyright (c) 2016 Anish Gupta (anish at freebsd.org)
  * All rights reserved.
  *

Modified: head/sys/amd64/vmm/amd/ivrs_drv.c
==============================================================================
--- head/sys/amd64/vmm/amd/ivrs_drv.c	Wed Jun 13 06:11:04 2018	(r335029)
+++ head/sys/amd64/vmm/amd/ivrs_drv.c	Wed Jun 13 07:02:58 2018	(r335030)
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
+ *
  * Copyright (c) 2016, Anish Gupta (anish at freebsd.org)
  * All rights reserved.
  *

Modified: head/sys/amd64/vmm/amd/npt.c
==============================================================================
--- head/sys/amd64/vmm/amd/npt.c	Wed Jun 13 06:11:04 2018	(r335029)
+++ head/sys/amd64/vmm/amd/npt.c	Wed Jun 13 07:02:58 2018	(r335030)
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
+ *
  * Copyright (c) 2013 Anish Gupta (akgupt3 at gmail.com)
  * All rights reserved.
  *

Modified: head/sys/amd64/vmm/amd/npt.h
==============================================================================
--- head/sys/amd64/vmm/amd/npt.h	Wed Jun 13 06:11:04 2018	(r335029)
+++ head/sys/amd64/vmm/amd/npt.h	Wed Jun 13 07:02:58 2018	(r335030)
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
+ *
  * Copyright (c) 2013 Anish Gupta (akgupt3 at gmail.com)
  * All rights reserved.
  *

Modified: head/sys/amd64/vmm/amd/svm.c
==============================================================================
--- head/sys/amd64/vmm/amd/svm.c	Wed Jun 13 06:11:04 2018	(r335029)
+++ head/sys/amd64/vmm/amd/svm.c	Wed Jun 13 07:02:58 2018	(r335030)
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
+ *
  * Copyright (c) 2013, Anish Gupta (akgupt3 at gmail.com)
  * All rights reserved.
  *

Modified: head/sys/amd64/vmm/amd/svm.h
==============================================================================
--- head/sys/amd64/vmm/amd/svm.h	Wed Jun 13 06:11:04 2018	(r335029)
+++ head/sys/amd64/vmm/amd/svm.h	Wed Jun 13 07:02:58 2018	(r335030)
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
+ *
  * Copyright (c) 2013 Anish Gupta (akgupt3 at gmail.com)
  * All rights reserved.
  *

Modified: head/sys/amd64/vmm/amd/svm_genassym.c
==============================================================================
--- head/sys/amd64/vmm/amd/svm_genassym.c	Wed Jun 13 06:11:04 2018	(r335029)
+++ head/sys/amd64/vmm/amd/svm_genassym.c	Wed Jun 13 07:02:58 2018	(r335030)
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
+ *
  * Copyright (c) 2013 Anish Gupta (akgupt3 at gmail.com)
  * All rights reserved.
  *

Modified: head/sys/amd64/vmm/amd/svm_msr.c
==============================================================================
--- head/sys/amd64/vmm/amd/svm_msr.c	Wed Jun 13 06:11:04 2018	(r335029)
+++ head/sys/amd64/vmm/amd/svm_msr.c	Wed Jun 13 07:02:58 2018	(r335030)
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
+ *
  * Copyright (c) 2014, Neel Natu (neel at freebsd.org)
  * All rights reserved.
  *

Modified: head/sys/amd64/vmm/amd/svm_msr.h
==============================================================================
--- head/sys/amd64/vmm/amd/svm_msr.h	Wed Jun 13 06:11:04 2018	(r335029)
+++ head/sys/amd64/vmm/amd/svm_msr.h	Wed Jun 13 07:02:58 2018	(r335030)
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
+ *
  * Copyright (c) 2014 Neel Natu (neel at freebsd.org)
  * All rights reserved.
  *

Modified: head/sys/amd64/vmm/amd/svm_softc.h
==============================================================================
--- head/sys/amd64/vmm/amd/svm_softc.h	Wed Jun 13 06:11:04 2018	(r335029)
+++ head/sys/amd64/vmm/amd/svm_softc.h	Wed Jun 13 07:02:58 2018	(r335030)
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
+ *
  * Copyright (c) 2013 Anish Gupta (akgupt3 at gmail.com)
  * All rights reserved.
  *

Modified: head/sys/amd64/vmm/amd/svm_support.S
==============================================================================
--- head/sys/amd64/vmm/amd/svm_support.S	Wed Jun 13 06:11:04 2018	(r335029)
+++ head/sys/amd64/vmm/amd/svm_support.S	Wed Jun 13 07:02:58 2018	(r335030)
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
+ *
  * Copyright (c) 2013, Anish Gupta (akgupt3 at gmail.com)
  * All rights reserved.
  *

Modified: head/sys/amd64/vmm/amd/vmcb.c
==============================================================================
--- head/sys/amd64/vmm/amd/vmcb.c	Wed Jun 13 06:11:04 2018	(r335029)
+++ head/sys/amd64/vmm/amd/vmcb.c	Wed Jun 13 07:02:58 2018	(r335030)
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
+ *
  * Copyright (c) 2013 Anish Gupta (akgupt3 at gmail.com)
  * All rights reserved.
  *

Modified: head/sys/amd64/vmm/amd/vmcb.h
==============================================================================
--- head/sys/amd64/vmm/amd/vmcb.h	Wed Jun 13 06:11:04 2018	(r335029)
+++ head/sys/amd64/vmm/amd/vmcb.h	Wed Jun 13 07:02:58 2018	(r335030)
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
+ *
  * Copyright (c) 2013 Anish Gupta (akgupt3 at gmail.com)
  * All rights reserved.
  *

Modified: head/sys/amd64/vmm/intel/vmx_support.S
==============================================================================
--- head/sys/amd64/vmm/intel/vmx_support.S	Wed Jun 13 06:11:04 2018	(r335029)
+++ head/sys/amd64/vmm/intel/vmx_support.S	Wed Jun 13 07:02:58 2018	(r335030)
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
+ *
  * Copyright (c) 2011 NetApp, Inc.
  * Copyright (c) 2013 Neel Natu <neel at freebsd.org>
  * All rights reserved.

Modified: head/sys/amd64/vmm/io/vatpic.c
==============================================================================
--- head/sys/amd64/vmm/io/vatpic.c	Wed Jun 13 06:11:04 2018	(r335029)
+++ head/sys/amd64/vmm/io/vatpic.c	Wed Jun 13 07:02:58 2018	(r335030)
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
+ *
  * Copyright (c) 2014 Tycho Nightingale <tycho.nightingale at pluribusnetworks.com>
  * All rights reserved.
  *

Modified: head/sys/amd64/vmm/io/vatpit.h
==============================================================================
--- head/sys/amd64/vmm/io/vatpit.h	Wed Jun 13 06:11:04 2018	(r335029)
+++ head/sys/amd64/vmm/io/vatpit.h	Wed Jun 13 07:02:58 2018	(r335030)
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
+ *
  * Copyright (c) 2014 Tycho Nightingale <tycho.nightingale at pluribusnetworks.com>
  * Copyright (c) 2011 NetApp, Inc.
  * All rights reserved.

Modified: head/sys/amd64/vmm/io/vpmtmr.c
==============================================================================
--- head/sys/amd64/vmm/io/vpmtmr.c	Wed Jun 13 06:11:04 2018	(r335029)
+++ head/sys/amd64/vmm/io/vpmtmr.c	Wed Jun 13 07:02:58 2018	(r335030)
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
+ *
  * Copyright (c) 2014, Neel Natu (neel at freebsd.org)
  * All rights reserved.
  *

Modified: head/sys/amd64/vmm/io/vpmtmr.h
==============================================================================
--- head/sys/amd64/vmm/io/vpmtmr.h	Wed Jun 13 06:11:04 2018	(r335029)
+++ head/sys/amd64/vmm/io/vpmtmr.h	Wed Jun 13 07:02:58 2018	(r335030)
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
+ *
  * Copyright (c) 2014 Neel Natu (neel at freebsd.org)
  * All rights reserved.
  *

Modified: head/sys/amd64/vmm/io/vrtc.c
==============================================================================
--- head/sys/amd64/vmm/io/vrtc.c	Wed Jun 13 06:11:04 2018	(r335029)
+++ head/sys/amd64/vmm/io/vrtc.c	Wed Jun 13 07:02:58 2018	(r335030)
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
+ *
  * Copyright (c) 2014, Neel Natu (neel at freebsd.org)
  * All rights reserved.
  *

Modified: head/sys/amd64/vmm/io/vrtc.h
==============================================================================
--- head/sys/amd64/vmm/io/vrtc.h	Wed Jun 13 06:11:04 2018	(r335029)
+++ head/sys/amd64/vmm/io/vrtc.h	Wed Jun 13 07:02:58 2018	(r335030)
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
+ *
  * Copyright (c) 2014 Neel Natu (neel at freebsd.org)
  * All rights reserved.
  *

Modified: head/sys/amd64/vmm/vmm_ioport.c
==============================================================================
--- head/sys/amd64/vmm/vmm_ioport.c	Wed Jun 13 06:11:04 2018	(r335029)
+++ head/sys/amd64/vmm/vmm_ioport.c	Wed Jun 13 07:02:58 2018	(r335030)
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
+ *
  * Copyright (c) 2014 Tycho Nightingale <tycho.nightingale at pluribusnetworks.com>
  * All rights reserved.
  *

Modified: head/sys/amd64/vmm/vmm_ioport.h
==============================================================================
--- head/sys/amd64/vmm/vmm_ioport.h	Wed Jun 13 06:11:04 2018	(r335029)
+++ head/sys/amd64/vmm/vmm_ioport.h	Wed Jun 13 07:02:58 2018	(r335030)
@@ -1,4 +1,6 @@
 /*-
+ * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
+ *
  * Copyright (c) 2014 Tycho Nightingale <tycho.nightingale at pluribusnetworks.com>
  * All rights reserved.
  *


More information about the svn-src-head mailing list