diff options
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/842/842_compress.c | 11 | ||||
| -rw-r--r-- | lib/842/842_decompress.c | 11 | ||||
| -rw-r--r-- | lib/atomic64.c | 6 | ||||
| -rw-r--r-- | lib/atomic64_test.c | 6 | ||||
| -rw-r--r-- | lib/chacha.c | 6 | ||||
| -rw-r--r-- | lib/checksum.c | 6 | ||||
| -rw-r--r-- | lib/extable.c | 6 | ||||
| -rw-r--r-- | lib/find_bit.c | 6 | ||||
| -rw-r--r-- | lib/irq_regs.c | 6 | ||||
| -rw-r--r-- | lib/libcrc32c.c | 7 | ||||
| -rw-r--r-- | lib/list_sort.c | 3 | ||||
| -rw-r--r-- | lib/radix-tree.c | 15 | ||||
| -rw-r--r-- | lib/rbtree.c | 14 | ||||
| -rw-r--r-- | lib/sha256.c | 6 | ||||
| -rw-r--r-- | lib/stackdepot.c | 11 | ||||
| -rw-r--r-- | lib/stmp_device.c | 6 | ||||
| -rw-r--r-- | lib/textsearch.c | 6 | ||||
| -rw-r--r-- | lib/timerqueue.c | 15 | ||||
| -rw-r--r-- | lib/ts_bm.c | 6 | ||||
| -rw-r--r-- | lib/ts_fsm.c | 6 | ||||
| -rw-r--r-- | lib/ts_kmp.c | 6 | ||||
| -rw-r--r-- | lib/uuid.c | 10 |
22 files changed, 23 insertions, 152 deletions
diff --git a/lib/842/842_compress.c b/lib/842/842_compress.c index 4051339bdfbd..c02baa4168e1 100644 --- a/lib/842/842_compress.c +++ b/lib/842/842_compress.c | |||
| @@ -1,18 +1,9 @@ | |||
| 1 | // SPDX-License-Identifier: GPL-2.0-or-later | ||
| 1 | /* | 2 | /* |
| 2 | * 842 Software Compression | 3 | * 842 Software Compression |
| 3 | * | 4 | * |
| 4 | * Copyright (C) 2015 Dan Streetman, IBM Corp | 5 | * Copyright (C) 2015 Dan Streetman, IBM Corp |
| 5 | * | 6 | * |
| 6 | * This program is free software; you can redistribute it and/or modify | ||
| 7 | * it under the terms of the GNU General Public License as published by | ||
| 8 | * the Free Software Foundation; either version 2 of the License, or | ||
| 9 | * (at your option) any later version. | ||
| 10 | * | ||
| 11 | * This program is distributed in the hope that it will be useful, | ||
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | * GNU General Public License for more details. | ||
| 15 | * | ||
| 16 | * See 842.h for details of the 842 compressed format. | 7 | * See 842.h for details of the 842 compressed format. |
| 17 | */ | 8 | */ |
| 18 | 9 | ||
diff --git a/lib/842/842_decompress.c b/lib/842/842_decompress.c index 11fc39b4032b..582085ef8b49 100644 --- a/lib/842/842_decompress.c +++ b/lib/842/842_decompress.c | |||
| @@ -1,18 +1,9 @@ | |||
| 1 | // SPDX-License-Identifier: GPL-2.0-or-later | ||
| 1 | /* | 2 | /* |
| 2 | * 842 Software Decompression | 3 | * 842 Software Decompression |
| 3 | * | 4 | * |
| 4 | * Copyright (C) 2015 Dan Streetman, IBM Corp | 5 | * Copyright (C) 2015 Dan Streetman, IBM Corp |
| 5 | * | 6 | * |
| 6 | * This program is free software; you can redistribute it and/or modify | ||
| 7 | * it under the terms of the GNU General Public License as published by | ||
| 8 | * the Free Software Foundation; either version 2 of the License, or | ||
| 9 | * (at your option) any later version. | ||
| 10 | * | ||
| 11 | * This program is distributed in the hope that it will be useful, | ||
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | * GNU General Public License for more details. | ||
| 15 | * | ||
| 16 | * See 842.h for details of the 842 compressed format. | 7 | * See 842.h for details of the 842 compressed format. |
| 17 | */ | 8 | */ |
| 18 | 9 | ||
diff --git a/lib/atomic64.c b/lib/atomic64.c index 1d91e31eceec..7e6905751522 100644 --- a/lib/atomic64.c +++ b/lib/atomic64.c | |||
| @@ -1,13 +1,9 @@ | |||
| 1 | // SPDX-License-Identifier: GPL-2.0-or-later | ||
| 1 | /* | 2 | /* |
| 2 | * Generic implementation of 64-bit atomics using spinlocks, | 3 | * Generic implementation of 64-bit atomics using spinlocks, |
| 3 | * useful on processors that don't have 64-bit atomic instructions. | 4 | * useful on processors that don't have 64-bit atomic instructions. |
| 4 | * | 5 | * |
| 5 | * Copyright © 2009 Paul Mackerras, IBM Corp. <paulus@au1.ibm.com> | 6 | * Copyright © 2009 Paul Mackerras, IBM Corp. <paulus@au1.ibm.com> |
| 6 | * | ||
| 7 | * This program is free software; you can redistribute it and/or | ||
| 8 | * modify it under the terms of the GNU General Public License | ||
| 9 | * as published by the Free Software Foundation; either version | ||
| 10 | * 2 of the License, or (at your option) any later version. | ||
| 11 | */ | 7 | */ |
| 12 | #include <linux/types.h> | 8 | #include <linux/types.h> |
| 13 | #include <linux/cache.h> | 9 | #include <linux/cache.h> |
diff --git a/lib/atomic64_test.c b/lib/atomic64_test.c index 62ab629f51ca..d9d170238165 100644 --- a/lib/atomic64_test.c +++ b/lib/atomic64_test.c | |||
| @@ -1,12 +1,8 @@ | |||
| 1 | // SPDX-License-Identifier: GPL-2.0-or-later | ||
| 1 | /* | 2 | /* |
| 2 | * Testsuite for atomic64_t functions | 3 | * Testsuite for atomic64_t functions |
| 3 | * | 4 | * |
| 4 | * Copyright © 2010 Luca Barbieri | 5 | * Copyright © 2010 Luca Barbieri |
| 5 | * | ||
| 6 | * This program is free software; you can redistribute it and/or modify | ||
| 7 | * it under the terms of the GNU General Public License as published by | ||
| 8 | * the Free Software Foundation; either version 2 of the License, or | ||
| 9 | * (at your option) any later version. | ||
| 10 | */ | 6 | */ |
| 11 | 7 | ||
| 12 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | 8 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
diff --git a/lib/chacha.c b/lib/chacha.c index a46d2832dbab..c7c9826564d3 100644 --- a/lib/chacha.c +++ b/lib/chacha.c | |||
| @@ -1,12 +1,8 @@ | |||
| 1 | // SPDX-License-Identifier: GPL-2.0-or-later | ||
| 1 | /* | 2 | /* |
| 2 | * The "hash function" used as the core of the ChaCha stream cipher (RFC7539) | 3 | * The "hash function" used as the core of the ChaCha stream cipher (RFC7539) |
| 3 | * | 4 | * |
| 4 | * Copyright (C) 2015 Martin Willi | 5 | * Copyright (C) 2015 Martin Willi |
| 5 | * | ||
| 6 | * This program is free software; you can redistribute it and/or modify | ||
| 7 | * it under the terms of the GNU General Public License as published by | ||
| 8 | * the Free Software Foundation; either version 2 of the License, or | ||
| 9 | * (at your option) any later version. | ||
| 10 | */ | 6 | */ |
| 11 | 7 | ||
| 12 | #include <linux/kernel.h> | 8 | #include <linux/kernel.h> |
diff --git a/lib/checksum.c b/lib/checksum.c index d3ec93f9e5f3..de032ad96f4a 100644 --- a/lib/checksum.c +++ b/lib/checksum.c | |||
| @@ -1,3 +1,4 @@ | |||
| 1 | // SPDX-License-Identifier: GPL-2.0-or-later | ||
| 1 | /* | 2 | /* |
| 2 | * | 3 | * |
| 3 | * INET An implementation of the TCP/IP protocol suite for the LINUX | 4 | * INET An implementation of the TCP/IP protocol suite for the LINUX |
| @@ -22,11 +23,6 @@ | |||
| 22 | * data-registers to hold input values and one tries to | 23 | * data-registers to hold input values and one tries to |
| 23 | * specify d0 and d1 as scratch registers. Letting gcc | 24 | * specify d0 and d1 as scratch registers. Letting gcc |
| 24 | * choose these registers itself solves the problem. | 25 | * choose these registers itself solves the problem. |
| 25 | * | ||
| 26 | * This program is free software; you can redistribute it and/or | ||
| 27 | * modify it under the terms of the GNU General Public License | ||
| 28 | * as published by the Free Software Foundation; either version | ||
| 29 | * 2 of the License, or (at your option) any later version. | ||
| 30 | */ | 26 | */ |
| 31 | 27 | ||
| 32 | /* Revised by Kenneth Albanowski for m68knommu. Basic problem: unaligned access | 28 | /* Revised by Kenneth Albanowski for m68knommu. Basic problem: unaligned access |
diff --git a/lib/extable.c b/lib/extable.c index f54996fdd0b8..25da4071122a 100644 --- a/lib/extable.c +++ b/lib/extable.c | |||
| @@ -1,12 +1,8 @@ | |||
| 1 | // SPDX-License-Identifier: GPL-2.0-or-later | ||
| 1 | /* | 2 | /* |
| 2 | * Derived from arch/ppc/mm/extable.c and arch/i386/mm/extable.c. | 3 | * Derived from arch/ppc/mm/extable.c and arch/i386/mm/extable.c. |
| 3 | * | 4 | * |
| 4 | * Copyright (C) 2004 Paul Mackerras, IBM Corp. | 5 | * Copyright (C) 2004 Paul Mackerras, IBM Corp. |
| 5 | * | ||
| 6 | * This program is free software; you can redistribute it and/or | ||
| 7 | * modify it under the terms of the GNU General Public License | ||
| 8 | * as published by the Free Software Foundation; either version | ||
| 9 | * 2 of the License, or (at your option) any later version. | ||
| 10 | */ | 6 | */ |
| 11 | 7 | ||
| 12 | #include <linux/bsearch.h> | 8 | #include <linux/bsearch.h> |
diff --git a/lib/find_bit.c b/lib/find_bit.c index ee3df93ba69a..5c51eb45178a 100644 --- a/lib/find_bit.c +++ b/lib/find_bit.c | |||
| @@ -1,3 +1,4 @@ | |||
| 1 | // SPDX-License-Identifier: GPL-2.0-or-later | ||
| 1 | /* bit search implementation | 2 | /* bit search implementation |
| 2 | * | 3 | * |
| 3 | * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved. | 4 | * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved. |
| @@ -9,11 +10,6 @@ | |||
| 9 | * | 10 | * |
| 10 | * Rewritten by Yury Norov <yury.norov@gmail.com> to decrease | 11 | * Rewritten by Yury Norov <yury.norov@gmail.com> to decrease |
| 11 | * size and improve performance, 2015. | 12 | * size and improve performance, 2015. |
| 12 | * | ||
| 13 | * This program is free software; you can redistribute it and/or | ||
| 14 | * modify it under the terms of the GNU General Public License | ||
| 15 | * as published by the Free Software Foundation; either version | ||
| 16 | * 2 of the License, or (at your option) any later version. | ||
| 17 | */ | 13 | */ |
| 18 | 14 | ||
| 19 | #include <linux/bitops.h> | 15 | #include <linux/bitops.h> |
diff --git a/lib/irq_regs.c b/lib/irq_regs.c index 9c0a1d70fbe8..0d545a93070e 100644 --- a/lib/irq_regs.c +++ b/lib/irq_regs.c | |||
| @@ -1,12 +1,8 @@ | |||
| 1 | // SPDX-License-Identifier: GPL-2.0-or-later | ||
| 1 | /* saved per-CPU IRQ register pointer | 2 | /* saved per-CPU IRQ register pointer |
| 2 | * | 3 | * |
| 3 | * Copyright (C) 2006 Red Hat, Inc. All Rights Reserved. | 4 | * Copyright (C) 2006 Red Hat, Inc. All Rights Reserved. |
| 4 | * Written by David Howells (dhowells@redhat.com) | 5 | * Written by David Howells (dhowells@redhat.com) |
| 5 | * | ||
| 6 | * This program is free software; you can redistribute it and/or | ||
| 7 | * modify it under the terms of the GNU General Public License | ||
| 8 | * as published by the Free Software Foundation; either version | ||
| 9 | * 2 of the License, or (at your option) any later version. | ||
| 10 | */ | 6 | */ |
| 11 | #include <linux/export.h> | 7 | #include <linux/export.h> |
| 12 | #include <linux/percpu.h> | 8 | #include <linux/percpu.h> |
diff --git a/lib/libcrc32c.c b/lib/libcrc32c.c index 4e9829c4d64c..77ab839644c5 100644 --- a/lib/libcrc32c.c +++ b/lib/libcrc32c.c | |||
| @@ -1,3 +1,4 @@ | |||
| 1 | // SPDX-License-Identifier: GPL-2.0-or-later | ||
| 1 | /* | 2 | /* |
| 2 | * CRC32C | 3 | * CRC32C |
| 3 | *@Article{castagnoli-crc, | 4 | *@Article{castagnoli-crc, |
| @@ -23,12 +24,6 @@ | |||
| 23 | * <endoflist> | 24 | * <endoflist> |
| 24 | * | 25 | * |
| 25 | * Copyright (c) 2004 Cisco Systems, Inc. | 26 | * Copyright (c) 2004 Cisco Systems, Inc. |
| 26 | * | ||
| 27 | * This program is free software; you can redistribute it and/or modify it | ||
| 28 | * under the terms of the GNU General Public License as published by the Free | ||
| 29 | * Software Foundation; either version 2 of the License, or (at your option) | ||
| 30 | * any later version. | ||
| 31 | * | ||
| 32 | */ | 27 | */ |
| 33 | 28 | ||
| 34 | #include <crypto/hash.h> | 29 | #include <crypto/hash.h> |
diff --git a/lib/list_sort.c b/lib/list_sort.c index 06e900c5587b..712ed1f4eb64 100644 --- a/lib/list_sort.c +++ b/lib/list_sort.c | |||
| @@ -120,7 +120,8 @@ static void merge_final(void *priv, cmp_func cmp, struct list_head *head, | |||
| 120 | * The latter offers a chance to save a few cycles in the comparison | 120 | * The latter offers a chance to save a few cycles in the comparison |
| 121 | * (which is used by e.g. plug_ctx_cmp() in block/blk-mq.c). | 121 | * (which is used by e.g. plug_ctx_cmp() in block/blk-mq.c). |
| 122 | * | 122 | * |
| 123 | * A good way to write a multi-word comparison is | 123 | * A good way to write a multi-word comparison is:: |
| 124 | * | ||
| 124 | * if (a->high != b->high) | 125 | * if (a->high != b->high) |
| 125 | * return a->high > b->high; | 126 | * return a->high > b->high; |
| 126 | * if (a->middle != b->middle) | 127 | * if (a->middle != b->middle) |
diff --git a/lib/radix-tree.c b/lib/radix-tree.c index 14d51548bea6..18c1dfbb1765 100644 --- a/lib/radix-tree.c +++ b/lib/radix-tree.c | |||
| @@ -1,3 +1,4 @@ | |||
| 1 | // SPDX-License-Identifier: GPL-2.0-or-later | ||
| 1 | /* | 2 | /* |
| 2 | * Copyright (C) 2001 Momchil Velikov | 3 | * Copyright (C) 2001 Momchil Velikov |
| 3 | * Portions Copyright (C) 2001 Christoph Hellwig | 4 | * Portions Copyright (C) 2001 Christoph Hellwig |
| @@ -6,20 +7,6 @@ | |||
| 6 | * Copyright (C) 2012 Konstantin Khlebnikov | 7 | * Copyright (C) 2012 Konstantin Khlebnikov |
| 7 | * Copyright (C) 2016 Intel, Matthew Wilcox | 8 | * Copyright (C) 2016 Intel, Matthew Wilcox |
| 8 | * Copyright (C) 2016 Intel, Ross Zwisler | 9 | * Copyright (C) 2016 Intel, Ross Zwisler |
| 9 | * | ||
| 10 | * This program is free software; you can redistribute it and/or | ||
| 11 | * modify it under the terms of the GNU General Public License as | ||
| 12 | * published by the Free Software Foundation; either version 2, or (at | ||
| 13 | * your option) any later version. | ||
| 14 | * | ||
| 15 | * This program is distributed in the hope that it will be useful, but | ||
| 16 | * WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
| 18 | * General Public License for more details. | ||
| 19 | * | ||
| 20 | * You should have received a copy of the GNU General Public License | ||
| 21 | * along with this program; if not, write to the Free Software | ||
| 22 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 23 | */ | 10 | */ |
| 24 | 11 | ||
| 25 | #include <linux/bitmap.h> | 12 | #include <linux/bitmap.h> |
diff --git a/lib/rbtree.c b/lib/rbtree.c index d3ff682fd4b8..1ef6e25d031c 100644 --- a/lib/rbtree.c +++ b/lib/rbtree.c | |||
| @@ -1,22 +1,10 @@ | |||
| 1 | // SPDX-License-Identifier: GPL-2.0-or-later | ||
| 1 | /* | 2 | /* |
| 2 | Red Black Trees | 3 | Red Black Trees |
| 3 | (C) 1999 Andrea Arcangeli <andrea@suse.de> | 4 | (C) 1999 Andrea Arcangeli <andrea@suse.de> |
| 4 | (C) 2002 David Woodhouse <dwmw2@infradead.org> | 5 | (C) 2002 David Woodhouse <dwmw2@infradead.org> |
| 5 | (C) 2012 Michel Lespinasse <walken@google.com> | 6 | (C) 2012 Michel Lespinasse <walken@google.com> |
| 6 | 7 | ||
| 7 | This program is free software; you can redistribute it and/or modify | ||
| 8 | it under the terms of the GNU General Public License as published by | ||
| 9 | the Free Software Foundation; either version 2 of the License, or | ||
| 10 | (at your option) any later version. | ||
| 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
| 20 | 8 | ||
| 21 | linux/lib/rbtree.c | 9 | linux/lib/rbtree.c |
| 22 | */ | 10 | */ |
diff --git a/lib/sha256.c b/lib/sha256.c index 4400c832e2aa..d9af148d4349 100644 --- a/lib/sha256.c +++ b/lib/sha256.c | |||
| @@ -1,3 +1,4 @@ | |||
| 1 | // SPDX-License-Identifier: GPL-2.0-or-later | ||
| 1 | /* | 2 | /* |
| 2 | * SHA-256, as specified in | 3 | * SHA-256, as specified in |
| 3 | * http://csrc.nist.gov/groups/STM/cavp/documents/shs/sha256-384-512.pdf | 4 | * http://csrc.nist.gov/groups/STM/cavp/documents/shs/sha256-384-512.pdf |
| @@ -8,11 +9,6 @@ | |||
| 8 | * Copyright (c) Andrew McDonald <andrew@mcdonald.org.uk> | 9 | * Copyright (c) Andrew McDonald <andrew@mcdonald.org.uk> |
| 9 | * Copyright (c) 2002 James Morris <jmorris@intercode.com.au> | 10 | * Copyright (c) 2002 James Morris <jmorris@intercode.com.au> |
| 10 | * Copyright (c) 2014 Red Hat Inc. | 11 | * Copyright (c) 2014 Red Hat Inc. |
| 11 | * | ||
| 12 | * This program is free software; you can redistribute it and/or modify it | ||
| 13 | * under the terms of the GNU General Public License as published by the Free | ||
| 14 | * Software Foundation; either version 2 of the License, or (at your option) | ||
| 15 | * any later version. | ||
| 16 | */ | 12 | */ |
| 17 | 13 | ||
| 18 | #include <linux/bitops.h> | 14 | #include <linux/bitops.h> |
diff --git a/lib/stackdepot.c b/lib/stackdepot.c index 605c61f65d94..66cab785bea0 100644 --- a/lib/stackdepot.c +++ b/lib/stackdepot.c | |||
| @@ -1,3 +1,4 @@ | |||
| 1 | // SPDX-License-Identifier: GPL-2.0-only | ||
| 1 | /* | 2 | /* |
| 2 | * Generic stack depot for storing stack traces. | 3 | * Generic stack depot for storing stack traces. |
| 3 | * | 4 | * |
| @@ -16,16 +17,6 @@ | |||
| 16 | * Copyright (C) 2016 Google, Inc. | 17 | * Copyright (C) 2016 Google, Inc. |
| 17 | * | 18 | * |
| 18 | * Based on code by Dmitry Chernenkov. | 19 | * Based on code by Dmitry Chernenkov. |
| 19 | * | ||
| 20 | * This program is free software; you can redistribute it and/or | ||
| 21 | * modify it under the terms of the GNU General Public License | ||
| 22 | * version 2 as published by the Free Software Foundation. | ||
| 23 | * | ||
| 24 | * This program is distributed in the hope that it will be useful, but | ||
| 25 | * WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 26 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
| 27 | * General Public License for more details. | ||
| 28 | * | ||
| 29 | */ | 20 | */ |
| 30 | 21 | ||
| 31 | #include <linux/gfp.h> | 22 | #include <linux/gfp.h> |
diff --git a/lib/stmp_device.c b/lib/stmp_device.c index a904656f4fd7..a4f77b6a91e3 100644 --- a/lib/stmp_device.c +++ b/lib/stmp_device.c | |||
| @@ -1,3 +1,4 @@ | |||
| 1 | // SPDX-License-Identifier: GPL-2.0-or-later | ||
| 1 | /* | 2 | /* |
| 2 | * Copyright (C) 1999 ARM Limited | 3 | * Copyright (C) 1999 ARM Limited |
| 3 | * Copyright (C) 2000 Deep Blue Solutions Ltd | 4 | * Copyright (C) 2000 Deep Blue Solutions Ltd |
| @@ -5,11 +6,6 @@ | |||
| 5 | * Copyright 2008 Juergen Beisert, kernel@pengutronix.de | 6 | * Copyright 2008 Juergen Beisert, kernel@pengutronix.de |
| 6 | * Copyright 2009 Ilya Yanok, Emcraft Systems Ltd, yanok@emcraft.com | 7 | * Copyright 2009 Ilya Yanok, Emcraft Systems Ltd, yanok@emcraft.com |
| 7 | * Copyright (C) 2011 Wolfram Sang, Pengutronix e.K. | 8 | * Copyright (C) 2011 Wolfram Sang, Pengutronix e.K. |
| 8 | * | ||
| 9 | * This program is free software; you can redistribute it and/or modify | ||
| 10 | * it under the terms of the GNU General Public License as published by | ||
| 11 | * the Free Software Foundation; either version 2 of the License, or | ||
| 12 | * (at your option) any later version. | ||
| 13 | */ | 9 | */ |
| 14 | 10 | ||
| 15 | #include <linux/io.h> | 11 | #include <linux/io.h> |
diff --git a/lib/textsearch.c b/lib/textsearch.c index 5939549c0e7b..4f16eec5d554 100644 --- a/lib/textsearch.c +++ b/lib/textsearch.c | |||
| @@ -1,11 +1,7 @@ | |||
| 1 | // SPDX-License-Identifier: GPL-2.0-or-later | ||
| 1 | /* | 2 | /* |
| 2 | * lib/textsearch.c Generic text search interface | 3 | * lib/textsearch.c Generic text search interface |
| 3 | * | 4 | * |
| 4 | * This program is free software; you can redistribute it and/or | ||
| 5 | * modify it under the terms of the GNU General Public License | ||
| 6 | * as published by the Free Software Foundation; either version | ||
| 7 | * 2 of the License, or (at your option) any later version. | ||
| 8 | * | ||
| 9 | * Authors: Thomas Graf <tgraf@suug.ch> | 5 | * Authors: Thomas Graf <tgraf@suug.ch> |
| 10 | * Pablo Neira Ayuso <pablo@netfilter.org> | 6 | * Pablo Neira Ayuso <pablo@netfilter.org> |
| 11 | * | 7 | * |
diff --git a/lib/timerqueue.c b/lib/timerqueue.c index 0d54bcbc8170..bc7e64df27df 100644 --- a/lib/timerqueue.c +++ b/lib/timerqueue.c | |||
| @@ -1,3 +1,4 @@ | |||
| 1 | // SPDX-License-Identifier: GPL-2.0-or-later | ||
| 1 | /* | 2 | /* |
| 2 | * Generic Timer-queue | 3 | * Generic Timer-queue |
| 3 | * | 4 | * |
| @@ -6,20 +7,6 @@ | |||
| 6 | * | 7 | * |
| 7 | * NOTE: All of the following functions need to be serialized | 8 | * NOTE: All of the following functions need to be serialized |
| 8 | * to avoid races. No locking is done by this library code. | 9 | * to avoid races. No locking is done by this library code. |
| 9 | * | ||
| 10 | * This program is free software; you can redistribute it and/or modify | ||
| 11 | * it under the terms of the GNU General Public License as published by | ||
| 12 | * the Free Software Foundation; either version 2 of the License, or | ||
| 13 | * (at your option) any later version. | ||
| 14 | * | ||
| 15 | * This program is distributed in the hope that it will be useful, | ||
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 18 | * GNU General Public License for more details. | ||
| 19 | * | ||
| 20 | * You should have received a copy of the GNU General Public License | ||
| 21 | * along with this program; if not, write to the Free Software | ||
| 22 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
| 23 | */ | 10 | */ |
| 24 | 11 | ||
| 25 | #include <linux/bug.h> | 12 | #include <linux/bug.h> |
diff --git a/lib/ts_bm.c b/lib/ts_bm.c index 9e66ee4020e9..b352903c50e3 100644 --- a/lib/ts_bm.c +++ b/lib/ts_bm.c | |||
| @@ -1,11 +1,7 @@ | |||
| 1 | // SPDX-License-Identifier: GPL-2.0-or-later | ||
| 1 | /* | 2 | /* |
| 2 | * lib/ts_bm.c Boyer-Moore text search implementation | 3 | * lib/ts_bm.c Boyer-Moore text search implementation |
| 3 | * | 4 | * |
| 4 | * This program is free software; you can redistribute it and/or | ||
| 5 | * modify it under the terms of the GNU General Public License | ||
| 6 | * as published by the Free Software Foundation; either version | ||
| 7 | * 2 of the License, or (at your option) any later version. | ||
| 8 | * | ||
| 9 | * Authors: Pablo Neira Ayuso <pablo@eurodev.net> | 5 | * Authors: Pablo Neira Ayuso <pablo@eurodev.net> |
| 10 | * | 6 | * |
| 11 | * ========================================================================== | 7 | * ========================================================================== |
diff --git a/lib/ts_fsm.c b/lib/ts_fsm.c index 69557c74ef9f..9c873cadab7c 100644 --- a/lib/ts_fsm.c +++ b/lib/ts_fsm.c | |||
| @@ -1,11 +1,7 @@ | |||
| 1 | // SPDX-License-Identifier: GPL-2.0-or-later | ||
| 1 | /* | 2 | /* |
| 2 | * lib/ts_fsm.c A naive finite state machine text search approach | 3 | * lib/ts_fsm.c A naive finite state machine text search approach |
| 3 | * | 4 | * |
| 4 | * This program is free software; you can redistribute it and/or | ||
| 5 | * modify it under the terms of the GNU General Public License | ||
| 6 | * as published by the Free Software Foundation; either version | ||
| 7 | * 2 of the License, or (at your option) any later version. | ||
| 8 | * | ||
| 9 | * Authors: Thomas Graf <tgraf@suug.ch> | 5 | * Authors: Thomas Graf <tgraf@suug.ch> |
| 10 | * | 6 | * |
| 11 | * ========================================================================== | 7 | * ========================================================================== |
diff --git a/lib/ts_kmp.c b/lib/ts_kmp.c index ffbe66cbb0ed..94617e014b3a 100644 --- a/lib/ts_kmp.c +++ b/lib/ts_kmp.c | |||
| @@ -1,11 +1,7 @@ | |||
| 1 | // SPDX-License-Identifier: GPL-2.0-or-later | ||
| 1 | /* | 2 | /* |
| 2 | * lib/ts_kmp.c Knuth-Morris-Pratt text search implementation | 3 | * lib/ts_kmp.c Knuth-Morris-Pratt text search implementation |
| 3 | * | 4 | * |
| 4 | * This program is free software; you can redistribute it and/or | ||
| 5 | * modify it under the terms of the GNU General Public License | ||
| 6 | * as published by the Free Software Foundation; either version | ||
| 7 | * 2 of the License, or (at your option) any later version. | ||
| 8 | * | ||
| 9 | * Authors: Thomas Graf <tgraf@suug.ch> | 5 | * Authors: Thomas Graf <tgraf@suug.ch> |
| 10 | * | 6 | * |
| 11 | * ========================================================================== | 7 | * ========================================================================== |
diff --git a/lib/uuid.c b/lib/uuid.c index 2290b9f001a9..b6a1edb61d87 100644 --- a/lib/uuid.c +++ b/lib/uuid.c | |||
| @@ -1,17 +1,9 @@ | |||
| 1 | // SPDX-License-Identifier: GPL-2.0-only | ||
| 1 | /* | 2 | /* |
| 2 | * Unified UUID/GUID definition | 3 | * Unified UUID/GUID definition |
| 3 | * | 4 | * |
| 4 | * Copyright (C) 2009, 2016 Intel Corp. | 5 | * Copyright (C) 2009, 2016 Intel Corp. |
| 5 | * Huang Ying <ying.huang@intel.com> | 6 | * Huang Ying <ying.huang@intel.com> |
| 6 | * | ||
| 7 | * This program is free software; you can redistribute it and/or | ||
| 8 | * modify it under the terms of the GNU General Public License version | ||
| 9 | * 2 as published by the Free Software Foundation; | ||
| 10 | * | ||
| 11 | * This program is distributed in the hope that it will be useful, | ||
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | * GNU General Public License for more details. | ||
| 15 | */ | 7 | */ |
| 16 | 8 | ||
| 17 | #include <linux/kernel.h> | 9 | #include <linux/kernel.h> |
