summaryrefslogtreecommitdiff
path: root/sys/dev/vmware/vmci
diff options
context:
space:
mode:
authorMark Peek <mp@FreeBSD.org>2018-04-08 01:32:56 +0000
committerMark Peek <mp@FreeBSD.org>2018-04-08 01:32:56 +0000
commit3eeb75112272ef9ef244a00bc73beef3a146856a (patch)
treee532a2afe6750f54f3622934750cb7b5961b0d00 /sys/dev/vmware/vmci
parent91cc58af37efebb3ef1d959e07d8953473962d96 (diff)
Notes
Diffstat (limited to 'sys/dev/vmware/vmci')
-rw-r--r--sys/dev/vmware/vmci/LICENSE51
-rw-r--r--sys/dev/vmware/vmci/vmci.c2
-rw-r--r--sys/dev/vmware/vmci/vmci.h2
-rw-r--r--sys/dev/vmware/vmci/vmci_call_defs.h2
-rw-r--r--sys/dev/vmware/vmci/vmci_datagram.c2
-rw-r--r--sys/dev/vmware/vmci/vmci_datagram.h2
-rw-r--r--sys/dev/vmware/vmci/vmci_defs.h2
-rw-r--r--sys/dev/vmware/vmci/vmci_doorbell.c2
-rw-r--r--sys/dev/vmware/vmci/vmci_doorbell.h2
-rw-r--r--sys/dev/vmware/vmci/vmci_driver.c2
-rw-r--r--sys/dev/vmware/vmci/vmci_driver.h2
-rw-r--r--sys/dev/vmware/vmci/vmci_event.c2
-rw-r--r--sys/dev/vmware/vmci/vmci_event.h2
-rw-r--r--sys/dev/vmware/vmci/vmci_hashtable.c2
-rw-r--r--sys/dev/vmware/vmci/vmci_hashtable.h2
-rw-r--r--sys/dev/vmware/vmci/vmci_kernel_api.h2
-rw-r--r--sys/dev/vmware/vmci/vmci_kernel_api_1.h2
-rw-r--r--sys/dev/vmware/vmci/vmci_kernel_api_2.h2
-rw-r--r--sys/dev/vmware/vmci/vmci_kernel_defs.h2
-rw-r--r--sys/dev/vmware/vmci/vmci_kernel_if.c2
-rw-r--r--sys/dev/vmware/vmci/vmci_kernel_if.h2
-rw-r--r--sys/dev/vmware/vmci/vmci_qpair.c2
-rw-r--r--sys/dev/vmware/vmci/vmci_queue.h2
-rw-r--r--sys/dev/vmware/vmci/vmci_queue_pair.c2
-rw-r--r--sys/dev/vmware/vmci/vmci_queue_pair.h2
-rw-r--r--sys/dev/vmware/vmci/vmci_resource.c2
-rw-r--r--sys/dev/vmware/vmci/vmci_resource.h2
-rw-r--r--sys/dev/vmware/vmci/vmci_utils.h2
28 files changed, 78 insertions, 27 deletions
diff --git a/sys/dev/vmware/vmci/LICENSE b/sys/dev/vmware/vmci/LICENSE
new file mode 100644
index 000000000000..a736cc1324a7
--- /dev/null
+++ b/sys/dev/vmware/vmci/LICENSE
@@ -0,0 +1,51 @@
+$FreeBSD$
+
+These files are provided under a dual BSD-2 Clause/GPLv2 license. When
+using or redistributing this file, you may do so under either license.
+
+BSD-2 Clause License
+
+Copyright (c) 2018 VMware, Inc.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions
+are met:
+
+ * Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+
+ * Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in
+ the documentation and/or other materials provided with the
+ distribution.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+GPL License Summary
+
+Copyright (c) 2018 VMware, Inc.
+
+This program is free software; you can redistribute it and/or modify
+it under the terms of version 2 of the GNU General Public License as
+published by the Free Software Foundation.
+
+This program is distributed in the hope that it will be useful, but
+WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program; if not, write to the Free Software
+Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
+The full GNU General Public License is included in this distribution
+in the file called LICENSE.GPL.
diff --git a/sys/dev/vmware/vmci/vmci.c b/sys/dev/vmware/vmci/vmci.c
index a4ddbc6be175..dc029419e20d 100644
--- a/sys/dev/vmware/vmci/vmci.c
+++ b/sys/dev/vmware/vmci/vmci.c
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 2018 VMware, Inc. All Rights Reserved.
+ * Copyright (c) 2018 VMware, Inc.
*
* SPDX-License-Identifier: (BSD-2-Clause OR GPL-2.0)
*/
diff --git a/sys/dev/vmware/vmci/vmci.h b/sys/dev/vmware/vmci/vmci.h
index e92f33ed005e..ca55bd395bb0 100644
--- a/sys/dev/vmware/vmci/vmci.h
+++ b/sys/dev/vmware/vmci/vmci.h
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 2018 VMware, Inc. All Rights Reserved.
+ * Copyright (c) 2018 VMware, Inc.
*
* SPDX-License-Identifier: (BSD-2-Clause OR GPL-2.0)
*
diff --git a/sys/dev/vmware/vmci/vmci_call_defs.h b/sys/dev/vmware/vmci/vmci_call_defs.h
index 903a24b6c546..d33e95d6f723 100644
--- a/sys/dev/vmware/vmci/vmci_call_defs.h
+++ b/sys/dev/vmware/vmci/vmci_call_defs.h
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 2018 VMware, Inc. All Rights Reserved.
+ * Copyright (c) 2018 VMware, Inc.
*
* SPDX-License-Identifier: (BSD-2-Clause OR GPL-2.0)
*
diff --git a/sys/dev/vmware/vmci/vmci_datagram.c b/sys/dev/vmware/vmci/vmci_datagram.c
index a5554fe3dd2c..0149dd62271d 100644
--- a/sys/dev/vmware/vmci/vmci_datagram.c
+++ b/sys/dev/vmware/vmci/vmci_datagram.c
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 2018 VMware, Inc. All Rights Reserved.
+ * Copyright (c) 2018 VMware, Inc.
*
* SPDX-License-Identifier: (BSD-2-Clause OR GPL-2.0)
*/
diff --git a/sys/dev/vmware/vmci/vmci_datagram.h b/sys/dev/vmware/vmci/vmci_datagram.h
index 753694037872..8b48c973a905 100644
--- a/sys/dev/vmware/vmci/vmci_datagram.h
+++ b/sys/dev/vmware/vmci/vmci_datagram.h
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 2018 VMware, Inc. All Rights Reserved.
+ * Copyright (c) 2018 VMware, Inc.
*
* SPDX-License-Identifier: (BSD-2-Clause OR GPL-2.0)
*
diff --git a/sys/dev/vmware/vmci/vmci_defs.h b/sys/dev/vmware/vmci/vmci_defs.h
index 3d24f5e947a7..94dfe44d1596 100644
--- a/sys/dev/vmware/vmci/vmci_defs.h
+++ b/sys/dev/vmware/vmci/vmci_defs.h
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 2018 VMware, Inc. All Rights Reserved.
+ * Copyright (c) 2018 VMware, Inc.
*
* SPDX-License-Identifier: (BSD-2-Clause OR GPL-2.0)
*
diff --git a/sys/dev/vmware/vmci/vmci_doorbell.c b/sys/dev/vmware/vmci/vmci_doorbell.c
index e5c7d71e1d4f..226c69b8483a 100644
--- a/sys/dev/vmware/vmci/vmci_doorbell.c
+++ b/sys/dev/vmware/vmci/vmci_doorbell.c
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 2018 VMware, Inc. All Rights Reserved.
+ * Copyright (c) 2018 VMware, Inc.
*
* SPDX-License-Identifier: (BSD-2-Clause OR GPL-2.0)
*/
diff --git a/sys/dev/vmware/vmci/vmci_doorbell.h b/sys/dev/vmware/vmci/vmci_doorbell.h
index 5838be8d6509..a819ff342e94 100644
--- a/sys/dev/vmware/vmci/vmci_doorbell.h
+++ b/sys/dev/vmware/vmci/vmci_doorbell.h
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 2018 VMware, Inc. All Rights Reserved.
+ * Copyright (c) 2018 VMware, Inc.
*
* SPDX-License-Identifier: (BSD-2-Clause OR GPL-2.0)
*
diff --git a/sys/dev/vmware/vmci/vmci_driver.c b/sys/dev/vmware/vmci/vmci_driver.c
index bc7a03242d03..c742cc46c742 100644
--- a/sys/dev/vmware/vmci/vmci_driver.c
+++ b/sys/dev/vmware/vmci/vmci_driver.c
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 2018 VMware, Inc. All Rights Reserved.
+ * Copyright (c) 2018 VMware, Inc.
*
* SPDX-License-Identifier: (BSD-2-Clause OR GPL-2.0)
*/
diff --git a/sys/dev/vmware/vmci/vmci_driver.h b/sys/dev/vmware/vmci/vmci_driver.h
index aa7d117ce359..5a814c70e54c 100644
--- a/sys/dev/vmware/vmci/vmci_driver.h
+++ b/sys/dev/vmware/vmci/vmci_driver.h
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 2018 VMware, Inc. All Rights Reserved.
+ * Copyright (c) 2018 VMware, Inc.
*
* SPDX-License-Identifier: (BSD-2-Clause OR GPL-2.0)
*
diff --git a/sys/dev/vmware/vmci/vmci_event.c b/sys/dev/vmware/vmci/vmci_event.c
index 8d649bfe21d8..9a932340a7b6 100644
--- a/sys/dev/vmware/vmci/vmci_event.c
+++ b/sys/dev/vmware/vmci/vmci_event.c
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 2018 VMware, Inc. All Rights Reserved.
+ * Copyright (c) 2018 VMware, Inc.
*
* SPDX-License-Identifier: (BSD-2-Clause OR GPL-2.0)
*/
diff --git a/sys/dev/vmware/vmci/vmci_event.h b/sys/dev/vmware/vmci/vmci_event.h
index af7133718794..7afaf361bde5 100644
--- a/sys/dev/vmware/vmci/vmci_event.h
+++ b/sys/dev/vmware/vmci/vmci_event.h
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 2018 VMware, Inc. All Rights Reserved.
+ * Copyright (c) 2018 VMware, Inc.
*
* SPDX-License-Identifier: (BSD-2-Clause OR GPL-2.0)
*
diff --git a/sys/dev/vmware/vmci/vmci_hashtable.c b/sys/dev/vmware/vmci/vmci_hashtable.c
index f9eb66363524..c8559b008c10 100644
--- a/sys/dev/vmware/vmci/vmci_hashtable.c
+++ b/sys/dev/vmware/vmci/vmci_hashtable.c
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 2018 VMware, Inc. All Rights Reserved.
+ * Copyright (c) 2018 VMware, Inc.
*
* SPDX-License-Identifier: (BSD-2-Clause OR GPL-2.0)
*/
diff --git a/sys/dev/vmware/vmci/vmci_hashtable.h b/sys/dev/vmware/vmci/vmci_hashtable.h
index a83288ad6880..1c4c9c462b8f 100644
--- a/sys/dev/vmware/vmci/vmci_hashtable.h
+++ b/sys/dev/vmware/vmci/vmci_hashtable.h
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 2018 VMware, Inc. All Rights Reserved.
+ * Copyright (c) 2018 VMware, Inc.
*
* SPDX-License-Identifier: (BSD-2-Clause OR GPL-2.0)
*
diff --git a/sys/dev/vmware/vmci/vmci_kernel_api.h b/sys/dev/vmware/vmci/vmci_kernel_api.h
index 8f984485db31..85f0a23ea332 100644
--- a/sys/dev/vmware/vmci/vmci_kernel_api.h
+++ b/sys/dev/vmware/vmci/vmci_kernel_api.h
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 2018 VMware, Inc. All Rights Reserved.
+ * Copyright (c) 2018 VMware, Inc.
*
* SPDX-License-Identifier: (BSD-2-Clause OR GPL-2.0)
*
diff --git a/sys/dev/vmware/vmci/vmci_kernel_api_1.h b/sys/dev/vmware/vmci/vmci_kernel_api_1.h
index 8fa77c480b6f..eac29bd1581c 100644
--- a/sys/dev/vmware/vmci/vmci_kernel_api_1.h
+++ b/sys/dev/vmware/vmci/vmci_kernel_api_1.h
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 2018 VMware, Inc. All Rights Reserved.
+ * Copyright (c) 2018 VMware, Inc.
*
* SPDX-License-Identifier: (BSD-2-Clause OR GPL-2.0)
*
diff --git a/sys/dev/vmware/vmci/vmci_kernel_api_2.h b/sys/dev/vmware/vmci/vmci_kernel_api_2.h
index ad41666a4a0a..df38a5717a83 100644
--- a/sys/dev/vmware/vmci/vmci_kernel_api_2.h
+++ b/sys/dev/vmware/vmci/vmci_kernel_api_2.h
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 2018 VMware, Inc. All Rights Reserved.
+ * Copyright (c) 2018 VMware, Inc.
*
* SPDX-License-Identifier: (BSD-2-Clause OR GPL-2.0)
*
diff --git a/sys/dev/vmware/vmci/vmci_kernel_defs.h b/sys/dev/vmware/vmci/vmci_kernel_defs.h
index a2c4f7424a7a..521bd8a960c6 100644
--- a/sys/dev/vmware/vmci/vmci_kernel_defs.h
+++ b/sys/dev/vmware/vmci/vmci_kernel_defs.h
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 2018 VMware, Inc. All Rights Reserved.
+ * Copyright (c) 2018 VMware, Inc.
*
* SPDX-License-Identifier: (BSD-2-Clause OR GPL-2.0)
*
diff --git a/sys/dev/vmware/vmci/vmci_kernel_if.c b/sys/dev/vmware/vmci/vmci_kernel_if.c
index 4f5e44b8f6cd..851c4c9df214 100644
--- a/sys/dev/vmware/vmci/vmci_kernel_if.c
+++ b/sys/dev/vmware/vmci/vmci_kernel_if.c
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 2018 VMware, Inc. All Rights Reserved.
+ * Copyright (c) 2018 VMware, Inc.
*
* SPDX-License-Identifier: (BSD-2-Clause OR GPL-2.0)
*/
diff --git a/sys/dev/vmware/vmci/vmci_kernel_if.h b/sys/dev/vmware/vmci/vmci_kernel_if.h
index 24b876061ada..fc23eefe98e0 100644
--- a/sys/dev/vmware/vmci/vmci_kernel_if.h
+++ b/sys/dev/vmware/vmci/vmci_kernel_if.h
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 2018 VMware, Inc. All Rights Reserved.
+ * Copyright (c) 2018 VMware, Inc.
*
* SPDX-License-Identifier: (BSD-2-Clause OR GPL-2.0)
*
diff --git a/sys/dev/vmware/vmci/vmci_qpair.c b/sys/dev/vmware/vmci/vmci_qpair.c
index 7644e2900b32..acaef7256f5d 100644
--- a/sys/dev/vmware/vmci/vmci_qpair.c
+++ b/sys/dev/vmware/vmci/vmci_qpair.c
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 2018 VMware, Inc. All Rights Reserved.
+ * Copyright (c) 2018 VMware, Inc.
*
* SPDX-License-Identifier: (BSD-2-Clause OR GPL-2.0)
*/
diff --git a/sys/dev/vmware/vmci/vmci_queue.h b/sys/dev/vmware/vmci/vmci_queue.h
index 9840d44acadb..966af2fdf646 100644
--- a/sys/dev/vmware/vmci/vmci_queue.h
+++ b/sys/dev/vmware/vmci/vmci_queue.h
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 2018 VMware, Inc. All Rights Reserved.
+ * Copyright (c) 2018 VMware, Inc.
*
* SPDX-License-Identifier: (BSD-2-Clause OR GPL-2.0)
*
diff --git a/sys/dev/vmware/vmci/vmci_queue_pair.c b/sys/dev/vmware/vmci/vmci_queue_pair.c
index a5d312ebbc55..65ae00c8d167 100644
--- a/sys/dev/vmware/vmci/vmci_queue_pair.c
+++ b/sys/dev/vmware/vmci/vmci_queue_pair.c
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 2018 VMware, Inc. All Rights Reserved.
+ * Copyright (c) 2018 VMware, Inc.
*
* SPDX-License-Identifier: (BSD-2-Clause OR GPL-2.0)
*/
diff --git a/sys/dev/vmware/vmci/vmci_queue_pair.h b/sys/dev/vmware/vmci/vmci_queue_pair.h
index c4f33538d646..70e02c4ee272 100644
--- a/sys/dev/vmware/vmci/vmci_queue_pair.h
+++ b/sys/dev/vmware/vmci/vmci_queue_pair.h
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 2018 VMware, Inc. All Rights Reserved.
+ * Copyright (c) 2018 VMware, Inc.
*
* SPDX-License-Identifier: (BSD-2-Clause OR GPL-2.0)
*
diff --git a/sys/dev/vmware/vmci/vmci_resource.c b/sys/dev/vmware/vmci/vmci_resource.c
index 219fc0af301c..060484f5a1d5 100644
--- a/sys/dev/vmware/vmci/vmci_resource.c
+++ b/sys/dev/vmware/vmci/vmci_resource.c
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 2018 VMware, Inc. All Rights Reserved.
+ * Copyright (c) 2018 VMware, Inc.
*
* SPDX-License-Identifier: (BSD-2-Clause OR GPL-2.0)
*/
diff --git a/sys/dev/vmware/vmci/vmci_resource.h b/sys/dev/vmware/vmci/vmci_resource.h
index ff4e97c6901a..057a96aef43d 100644
--- a/sys/dev/vmware/vmci/vmci_resource.h
+++ b/sys/dev/vmware/vmci/vmci_resource.h
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 2018 VMware, Inc. All Rights Reserved.
+ * Copyright (c) 2018 VMware, Inc.
*
* SPDX-License-Identifier: (BSD-2-Clause OR GPL-2.0)
*
diff --git a/sys/dev/vmware/vmci/vmci_utils.h b/sys/dev/vmware/vmci/vmci_utils.h
index ab48fe91f524..b4cefa96a7fd 100644
--- a/sys/dev/vmware/vmci/vmci_utils.h
+++ b/sys/dev/vmware/vmci/vmci_utils.h
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 2018 VMware, Inc. All Rights Reserved.
+ * Copyright (c) 2018 VMware, Inc.
*
* SPDX-License-Identifier: (BSD-2-Clause OR GPL-2.0)
*