diff options
author | Warner Losh <imp@FreeBSD.org> | 2019-02-04 21:28:25 +0000 |
---|---|---|
committer | Warner Losh <imp@FreeBSD.org> | 2019-02-04 21:28:25 +0000 |
commit | 52467047aa7dd6d21f6303b28e4278cab2d8fe48 (patch) | |
tree | a955484151ea6028ddb185953f10e97caa168a52 /sys | |
parent | e4314da2e45770e4b9b3be74f4b552045a041d3a (diff) | |
download | src-52467047aa7dd6d21f6303b28e4278cab2d8fe48.tar.gz src-52467047aa7dd6d21f6303b28e4278cab2d8fe48.zip |
Regularize the Netflix copyright
Use recent best practices for Copyright form at the top of
the license:
1. Remove all the All Rights Reserved clauses on our stuff. Where we
piggybacked others, use a separate line to make things clear.
2. Use "Netflix, Inc." everywhere.
3. Use a single line for the copyright for grep friendliness.
4. Use date ranges in all places for our stuff.
Approved by: Netflix Legal (who gave me the form), adrian@ (pmc files)
Notes
Notes:
svn path=/head/; revision=343755
Diffstat (limited to 'sys')
-rw-r--r-- | sys/cam/nvme/nvme_all.c | 2 | ||||
-rw-r--r-- | sys/cam/nvme/nvme_all.h | 2 | ||||
-rw-r--r-- | sys/cam/nvme/nvme_da.c | 2 | ||||
-rw-r--r-- | sys/crypto/aesni/aesencdec.h | 3 | ||||
-rw-r--r-- | sys/dev/efidev/efidev.c | 1 | ||||
-rw-r--r-- | sys/dev/nvme/nvme_sim.c | 2 | ||||
-rw-r--r-- | sys/dev/tcp_log/tcp_log_dev.c | 3 | ||||
-rw-r--r-- | sys/dev/tcp_log/tcp_log_dev.h | 3 | ||||
-rw-r--r-- | sys/kern/subr_boot.c | 2 | ||||
-rw-r--r-- | sys/netinet/tcp_hpts.c | 2 | ||||
-rw-r--r-- | sys/netinet/tcp_hpts.h | 2 | ||||
-rw-r--r-- | sys/netinet/tcp_log_buf.c | 3 | ||||
-rw-r--r-- | sys/netinet/tcp_log_buf.h | 3 | ||||
-rw-r--r-- | sys/netinet/tcp_stacks/rack.c | 3 | ||||
-rw-r--r-- | sys/netinet/tcp_stacks/rack_bbr_common.h | 4 | ||||
-rw-r--r-- | sys/netinet/tcp_stacks/sack_filter.c | 4 | ||||
-rw-r--r-- | sys/netinet/tcp_stacks/sack_filter.h | 4 | ||||
-rw-r--r-- | sys/netinet/tcp_stacks/tcp_rack.h | 3 | ||||
-rw-r--r-- | sys/sys/boot.h | 2 | ||||
-rw-r--r-- | sys/sys/efiio.h | 1 | ||||
-rw-r--r-- | sys/sys/kern_prefetch.h | 2 | ||||
-rw-r--r-- | sys/tests/callout_test.h | 3 | ||||
-rw-r--r-- | sys/tests/callout_test/callout_test.c | 3 | ||||
-rw-r--r-- | sys/tests/framework/kern_testfrwk.c | 3 | ||||
-rw-r--r-- | sys/tests/kern_testfrwk.h | 3 |
25 files changed, 25 insertions, 40 deletions
diff --git a/sys/cam/nvme/nvme_all.c b/sys/cam/nvme/nvme_all.c index f79785f77786..d9faea1d7849 100644 --- a/sys/cam/nvme/nvme_all.c +++ b/sys/cam/nvme/nvme_all.c @@ -1,7 +1,7 @@ /*- * SPDX-License-Identifier: BSD-2-Clause-FreeBSD * - * Copyright (c) 2015 Netflix, Inc + * Copyright (c) 2015 Netflix, Inc. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/sys/cam/nvme/nvme_all.h b/sys/cam/nvme/nvme_all.h index e31c1e5e0d7d..2141700a9226 100644 --- a/sys/cam/nvme/nvme_all.h +++ b/sys/cam/nvme/nvme_all.h @@ -1,7 +1,7 @@ /*- * SPDX-License-Identifier: BSD-2-Clause-FreeBSD * - * Copyright (c) 2015 Netflix, Inc + * Copyright (c) 2015 Netflix, Inc. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/sys/cam/nvme/nvme_da.c b/sys/cam/nvme/nvme_da.c index 9e2f26bec07c..9f708d6ad40d 100644 --- a/sys/cam/nvme/nvme_da.c +++ b/sys/cam/nvme/nvme_da.c @@ -1,7 +1,7 @@ /*- * SPDX-License-Identifier: BSD-2-Clause-FreeBSD * - * Copyright (c) 2015 Netflix, Inc + * Copyright (c) 2015 Netflix, Inc. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/sys/crypto/aesni/aesencdec.h b/sys/crypto/aesni/aesencdec.h index 80951a48aad4..73add364c0aa 100644 --- a/sys/crypto/aesni/aesencdec.h +++ b/sys/crypto/aesni/aesencdec.h @@ -1,8 +1,9 @@ /*- * Copyright 2013 John-Mark Gurney <jmg@FreeBSD.org> - * Copyright 2015 Netflix, Inc. * All rights reserved. * + * Copyright 2015 Netflix, Inc. + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/sys/dev/efidev/efidev.c b/sys/dev/efidev/efidev.c index 01b6c379b0c0..b585db4f0117 100644 --- a/sys/dev/efidev/efidev.c +++ b/sys/dev/efidev/efidev.c @@ -1,6 +1,5 @@ /*- * Copyright (c) 2016 Netflix, Inc. - * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/sys/dev/nvme/nvme_sim.c b/sys/dev/nvme/nvme_sim.c index 424c4ecfd5dd..7593920c15fa 100644 --- a/sys/dev/nvme/nvme_sim.c +++ b/sys/dev/nvme/nvme_sim.c @@ -1,5 +1,5 @@ /*- - * Copyright (c) 2016 Netflix, Inc + * Copyright (c) 2016 Netflix, Inc. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/sys/dev/tcp_log/tcp_log_dev.c b/sys/dev/tcp_log/tcp_log_dev.c index c62e106da55f..bea2dd95b0dd 100644 --- a/sys/dev/tcp_log/tcp_log_dev.c +++ b/sys/dev/tcp_log/tcp_log_dev.c @@ -1,8 +1,7 @@ /*- * SPDX-License-Identifier: BSD-2-Clause-FreeBSD * - * Copyright (c) 2016-2017 - * Netflix Inc. All rights reserved. + * Copyright (c) 2016-2017 Netflix, Inc. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/sys/dev/tcp_log/tcp_log_dev.h b/sys/dev/tcp_log/tcp_log_dev.h index 90f0364a2fed..808271f8640b 100644 --- a/sys/dev/tcp_log/tcp_log_dev.h +++ b/sys/dev/tcp_log/tcp_log_dev.h @@ -1,8 +1,7 @@ /*- * SPDX-License-Identifier: BSD-2-Clause-FreeBSD * - * Copyright (c) 2016 - * Netflix Inc. All rights reserved. + * Copyright (c) 2016 Netflix, Inc. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/sys/kern/subr_boot.c b/sys/kern/subr_boot.c index 00890c3150d7..4aa135df5c83 100644 --- a/sys/kern/subr_boot.c +++ b/sys/kern/subr_boot.c @@ -10,7 +10,7 @@ * Copyright (c) 2014 Roger Pau Monné <roger.pau@citrix.com> * All Rights Reserved. * Copyright (c) 2018 Kyle Evans <kevans@FreeBSD.org> - * Copyright (c) 2018 Netflix + * Copyright (c) 2018 Netflix, Inc. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/sys/netinet/tcp_hpts.c b/sys/netinet/tcp_hpts.c index f3737888f3d0..74e796103f8a 100644 --- a/sys/netinet/tcp_hpts.c +++ b/sys/netinet/tcp_hpts.c @@ -1,5 +1,5 @@ /*- - * Copyright (c) 2016-2018 Netflix Inc. + * Copyright (c) 2016-2018 Netflix, Inc. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/sys/netinet/tcp_hpts.h b/sys/netinet/tcp_hpts.h index 04c867698915..ea15bc1ab320 100644 --- a/sys/netinet/tcp_hpts.h +++ b/sys/netinet/tcp_hpts.h @@ -1,5 +1,5 @@ /*- - * Copyright (c) 2016-2018 Netflix Inc. + * Copyright (c) 2016-2018 Netflix, Inc. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/sys/netinet/tcp_log_buf.c b/sys/netinet/tcp_log_buf.c index 9dd6ee8acb1e..3225ce9c31b7 100644 --- a/sys/netinet/tcp_log_buf.c +++ b/sys/netinet/tcp_log_buf.c @@ -1,8 +1,7 @@ /*- * SPDX-License-Identifier: BSD-2-Clause-FreeBSD * - * Copyright (c) 2016-2018 - * Netflix Inc. All rights reserved. + * Copyright (c) 2016-2018 Netflix, Inc. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/sys/netinet/tcp_log_buf.h b/sys/netinet/tcp_log_buf.h index e569395a1aed..0662d1b5d4ad 100644 --- a/sys/netinet/tcp_log_buf.h +++ b/sys/netinet/tcp_log_buf.h @@ -1,8 +1,7 @@ /*- * SPDX-License-Identifier: BSD-2-Clause-FreeBSD * - * Copyright (c) 2016-2018 - * Netflix Inc. All rights reserved. + * Copyright (c) 2016-2018 Netflix, Inc. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/sys/netinet/tcp_stacks/rack.c b/sys/netinet/tcp_stacks/rack.c index 608b6e7e15ad..975367fa7a82 100644 --- a/sys/netinet/tcp_stacks/rack.c +++ b/sys/netinet/tcp_stacks/rack.c @@ -1,6 +1,5 @@ /*- - * Copyright (c) 2016-2018 - * Netflix Inc. All rights reserved. + * Copyright (c) 2016-2018 Netflix, Inc. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/sys/netinet/tcp_stacks/rack_bbr_common.h b/sys/netinet/tcp_stacks/rack_bbr_common.h index d52022daee66..c3d661cfd972 100644 --- a/sys/netinet/tcp_stacks/rack_bbr_common.h +++ b/sys/netinet/tcp_stacks/rack_bbr_common.h @@ -1,9 +1,7 @@ #ifndef __pacer_timer_h__ #define __pacer_timer_h__ /*- - * Copyright (c) 2017 - * Netflix Inc. - * All rights reserved. + * Copyright (c) 2017 Netflix, Inc. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/sys/netinet/tcp_stacks/sack_filter.c b/sys/netinet/tcp_stacks/sack_filter.c index 993d5851db79..2ef0eadfa944 100644 --- a/sys/netinet/tcp_stacks/sack_filter.c +++ b/sys/netinet/tcp_stacks/sack_filter.c @@ -1,7 +1,5 @@ /*- - * Copyright (c) 2017 - * Netflix Inc. - * All rights reserved. + * Copyright (c) 2017 Netflix, Inc. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/sys/netinet/tcp_stacks/sack_filter.h b/sys/netinet/tcp_stacks/sack_filter.h index 3ef0f1693f5b..3ef986209566 100644 --- a/sys/netinet/tcp_stacks/sack_filter.h +++ b/sys/netinet/tcp_stacks/sack_filter.h @@ -1,9 +1,7 @@ #ifndef __sack_filter_h__ #define __sack_filter_h__ /*- - * Copyright (c) 2017 - * Netflix Inc. - * All rights reserved. + * Copyright (c) 2017 Netflix, Inc. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/sys/netinet/tcp_stacks/tcp_rack.h b/sys/netinet/tcp_stacks/tcp_rack.h index c7132ba81893..76c3eb2e5b70 100644 --- a/sys/netinet/tcp_stacks/tcp_rack.h +++ b/sys/netinet/tcp_stacks/tcp_rack.h @@ -1,6 +1,5 @@ /*- - * Copyright (c) 2016 - * Netflix Inc. All rights reserved. + * Copyright (c) 2016 Netflix, Inc. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/sys/sys/boot.h b/sys/sys/boot.h index 3cfebedff19c..68b9e1e0daf3 100644 --- a/sys/sys/boot.h +++ b/sys/sys/boot.h @@ -1,9 +1,9 @@ /*- * SPDX-License-Identifier: BSD-2-Clause-FreeBSD * - * Copyright (c) 2018 Netflix * Copyright (c) 2014 Roger Pau Monné <roger.pau@citrix.com> * All rights reserved. + * Copyright (c) 2018 Netflix, Inc. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/sys/sys/efiio.h b/sys/sys/efiio.h index 1e1cff67b62f..87fed9c3afd8 100644 --- a/sys/sys/efiio.h +++ b/sys/sys/efiio.h @@ -1,6 +1,5 @@ /*- * Copyright (c) 2016 Netflix, Inc. - * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/sys/sys/kern_prefetch.h b/sys/sys/kern_prefetch.h index dd6cf3fa19d7..6945132f12e0 100644 --- a/sys/sys/kern_prefetch.h +++ b/sys/sys/kern_prefetch.h @@ -1,5 +1,5 @@ /*- - * Copyright (c) 2016-2018 Netflix Inc. + * Copyright (c) 2016-2018 Netflix, Inc. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/sys/tests/callout_test.h b/sys/tests/callout_test.h index 2f470dc8bbca..a30b2ad95fe8 100644 --- a/sys/tests/callout_test.h +++ b/sys/tests/callout_test.h @@ -1,8 +1,7 @@ #ifndef __callout_test_h__ #define __callout_test_h__ /*- - * Copyright (c) 2015 - * Netflix Incorporated, All rights reserved. + * Copyright (c) 2015 Netflix, Inc. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/sys/tests/callout_test/callout_test.c b/sys/tests/callout_test/callout_test.c index c42e9decb4bb..ce585380b94a 100644 --- a/sys/tests/callout_test/callout_test.c +++ b/sys/tests/callout_test/callout_test.c @@ -1,5 +1,6 @@ /*- - * Copyright (c) 2015 Netflix Inc. All rights reserved. + * Copyright (c) 2015 Netflix, Inc. + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/sys/tests/framework/kern_testfrwk.c b/sys/tests/framework/kern_testfrwk.c index 2ef1c6f02a50..3e88faa5e8f8 100644 --- a/sys/tests/framework/kern_testfrwk.c +++ b/sys/tests/framework/kern_testfrwk.c @@ -1,6 +1,5 @@ /*- - * Copyright (c) 2015 - * Netflix Incorporated, All rights reserved. + * Copyright (c) 2015 Netflix, Inc. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/sys/tests/kern_testfrwk.h b/sys/tests/kern_testfrwk.h index 844eea411313..dbb4733df962 100644 --- a/sys/tests/kern_testfrwk.h +++ b/sys/tests/kern_testfrwk.h @@ -1,6 +1,5 @@ /*- - * Copyright (c) 2015 - * Netflix Incorporated, All rights reserved. + * Copyright (c) 2015 Netflix, Inc. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions |