aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/linux/tipc.h42
-rw-r--r--include/linux/tipc_config.h42
-rw-r--r--include/net/tipc/tipc.h42
-rw-r--r--include/net/tipc/tipc_bearer.h42
-rw-r--r--include/net/tipc/tipc_msg.h42
-rw-r--r--include/net/tipc/tipc_port.h42
-rw-r--r--net/tipc/addr.c42
-rw-r--r--net/tipc/addr.h42
-rw-r--r--net/tipc/bcast.c42
-rw-r--r--net/tipc/bcast.h42
-rw-r--r--net/tipc/bearer.c42
-rw-r--r--net/tipc/bearer.h42
-rw-r--r--net/tipc/cluster.c20
-rw-r--r--net/tipc/cluster.h42
-rw-r--r--net/tipc/config.c42
-rw-r--r--net/tipc/config.h42
-rw-r--r--net/tipc/core.c42
-rw-r--r--net/tipc/core.h42
-rw-r--r--net/tipc/dbg.c42
-rw-r--r--net/tipc/dbg.h42
-rw-r--r--net/tipc/discover.c42
-rw-r--r--net/tipc/discover.h42
-rw-r--r--net/tipc/eth_media.c42
-rw-r--r--net/tipc/handler.c42
-rw-r--r--net/tipc/link.c42
-rw-r--r--net/tipc/link.h42
-rw-r--r--net/tipc/msg.c42
-rw-r--r--net/tipc/msg.h42
-rw-r--r--net/tipc/name_distr.c42
-rw-r--r--net/tipc/name_distr.h42
-rw-r--r--net/tipc/name_table.c42
-rw-r--r--net/tipc/name_table.h42
-rw-r--r--net/tipc/net.c20
-rw-r--r--net/tipc/net.h22
-rw-r--r--net/tipc/netlink.c42
-rw-r--r--net/tipc/node.c42
-rw-r--r--net/tipc/node.h42
-rw-r--r--net/tipc/node_subscr.c42
-rw-r--r--net/tipc/node_subscr.h42
-rw-r--r--net/tipc/port.c42
-rw-r--r--net/tipc/port.h42
-rw-r--r--net/tipc/ref.c22
-rw-r--r--net/tipc/ref.h42
-rw-r--r--net/tipc/socket.c42
-rw-r--r--net/tipc/subscr.c42
-rw-r--r--net/tipc/subscr.h42
-rw-r--r--net/tipc/user_reg.c22
-rw-r--r--net/tipc/user_reg.h42
-rw-r--r--net/tipc/zone.c20
-rw-r--r--net/tipc/zone.h20
50 files changed, 1076 insertions, 876 deletions
diff --git a/include/linux/tipc.h b/include/linux/tipc.h
index 4ecd004755..ff109c1c14 100644
--- a/include/linux/tipc.h
+++ b/include/linux/tipc.h
@@ -6,28 +6,32 @@
6 * Copyright (c) 2005-2006, Ericsson AB 6 * Copyright (c) 2005-2006, Ericsson AB
7 * All rights reserved. 7 * All rights reserved.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 * 20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 * Alternatively, this software may be distributed under the terms of the
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * Software Foundation.
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 24 *
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE. 35 * POSSIBILITY OF SUCH DAMAGE.
32 */ 36 */
33 37
diff --git a/include/linux/tipc_config.h b/include/linux/tipc_config.h
index 97ead31388..6e5a3af0d2 100644
--- a/include/linux/tipc_config.h
+++ b/include/linux/tipc_config.h
@@ -6,28 +6,32 @@
6 * Copyright (c) 2005-2006, Ericsson AB 6 * Copyright (c) 2005-2006, Ericsson AB
7 * All rights reserved. 7 * All rights reserved.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 * 20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 * Alternatively, this software may be distributed under the terms of the
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * Software Foundation.
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 24 *
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE. 35 * POSSIBILITY OF SUCH DAMAGE.
32 */ 36 */
33 37
diff --git a/include/net/tipc/tipc.h b/include/net/tipc/tipc.h
index 1d4d8d0701..b763d55635 100644
--- a/include/net/tipc/tipc.h
+++ b/include/net/tipc/tipc.h
@@ -6,28 +6,32 @@
6 * Copyright (c) 2005-2006, Ericsson AB 6 * Copyright (c) 2005-2006, Ericsson AB
7 * All rights reserved. 7 * All rights reserved.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 * 20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 * Alternatively, this software may be distributed under the terms of the
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * Software Foundation.
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 24 *
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE. 35 * POSSIBILITY OF SUCH DAMAGE.
32 */ 36 */
33 37
diff --git a/include/net/tipc/tipc_bearer.h b/include/net/tipc/tipc_bearer.h
index df7b9145a5..0cfb9bbd9a 100644
--- a/include/net/tipc/tipc_bearer.h
+++ b/include/net/tipc/tipc_bearer.h
@@ -6,28 +6,32 @@
6 * Copyright (c) 2005-2006, Ericsson AB 6 * Copyright (c) 2005-2006, Ericsson AB
7 * All rights reserved. 7 * All rights reserved.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 * 20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 * Alternatively, this software may be distributed under the terms of the
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * Software Foundation.
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 24 *
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE. 35 * POSSIBILITY OF SUCH DAMAGE.
32 */ 36 */
33 37
diff --git a/include/net/tipc/tipc_msg.h b/include/net/tipc/tipc_msg.h
index 78513f5236..a5c7ed598f 100644
--- a/include/net/tipc/tipc_msg.h
+++ b/include/net/tipc/tipc_msg.h
@@ -6,28 +6,32 @@
6 * Copyright (c) 2005-2006, Ericsson AB 6 * Copyright (c) 2005-2006, Ericsson AB
7 * All rights reserved. 7 * All rights reserved.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 * 20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 * Alternatively, this software may be distributed under the terms of the
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * Software Foundation.
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 24 *
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE. 35 * POSSIBILITY OF SUCH DAMAGE.
32 */ 36 */
33 37
diff --git a/include/net/tipc/tipc_port.h b/include/net/tipc/tipc_port.h
index ec0f0de7f0..db947ff126 100644
--- a/include/net/tipc/tipc_port.h
+++ b/include/net/tipc/tipc_port.h
@@ -6,28 +6,32 @@
6 * Copyright (c) 2005-2006, Ericsson AB 6 * Copyright (c) 2005-2006, Ericsson AB
7 * All rights reserved. 7 * All rights reserved.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 * 20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 * Alternatively, this software may be distributed under the terms of the
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * Software Foundation.
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 24 *
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE. 35 * POSSIBILITY OF SUCH DAMAGE.
32 */ 36 */
33 37
diff --git a/net/tipc/addr.c b/net/tipc/addr.c
index bc35363956..89a25a2d03 100644
--- a/net/tipc/addr.c
+++ b/net/tipc/addr.c
@@ -6,28 +6,32 @@
6 * Copyright (c) 2005-2006, Ericsson AB 6 * Copyright (c) 2005-2006, Ericsson AB
7 * All rights reserved. 7 * All rights reserved.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 * 20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 * Alternatively, this software may be distributed under the terms of the
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * Software Foundation.
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 24 *
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE. 35 * POSSIBILITY OF SUCH DAMAGE.
32 */ 36 */
33 37
diff --git a/net/tipc/addr.h b/net/tipc/addr.h
index 9dabebcba6..b65a0ab264 100644
--- a/net/tipc/addr.h
+++ b/net/tipc/addr.h
@@ -6,28 +6,32 @@
6 * Copyright (c) 2005-2006, Ericsson AB 6 * Copyright (c) 2005-2006, Ericsson AB
7 * All rights reserved. 7 * All rights reserved.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 * 20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 * Alternatively, this software may be distributed under the terms of the
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * Software Foundation.
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 24 *
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE. 35 * POSSIBILITY OF SUCH DAMAGE.
32 */ 36 */
33 37
diff --git a/net/tipc/bcast.c b/net/tipc/bcast.c
index 35ca90667a..180d80b37a 100644
--- a/net/tipc/bcast.c
+++ b/net/tipc/bcast.c
@@ -7,28 +7,32 @@
7 * Copyright (c) 2005-2006, Ericsson AB 7 * Copyright (c) 2005-2006, Ericsson AB
8 * All rights reserved. 8 * All rights reserved.
9 * 9 *
10 * Redistribution and use in source and binary forms, with or without 10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions are met: 11 * modification, are permitted provided that the following conditions are met:
12 * 12 *
13 * Redistributions of source code must retain the above copyright notice, this 13 * 1. Redistributions of source code must retain the above copyright
14 * list of conditions and the following disclaimer. 14 * notice, this list of conditions and the following disclaimer.
15 * Redistributions in binary form must reproduce the above copyright notice, 15 * 2. Redistributions in binary form must reproduce the above copyright
16 * this list of conditions and the following disclaimer in the documentation 16 * notice, this list of conditions and the following disclaimer in the
17 * and/or other materials provided with the distribution. 17 * documentation and/or other materials provided with the distribution.
18 * Neither the names of the copyright holders nor the names of its 18 * 3. Neither the names of the copyright holders nor the names of its
19 * contributors may be used to endorse or promote products derived from this 19 * contributors may be used to endorse or promote products derived from
20 * software without specific prior written permission. 20 * this software without specific prior written permission.
21 * 21 *
22 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 22 * Alternatively, this software may be distributed under the terms of the
23 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 23 * GNU General Public License ("GPL") version 2 as published by the Free
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 24 * Software Foundation.
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 25 *
26 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 26 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
27 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 27 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 28 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 29 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
30 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 30 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 31 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32 * POSSIBILITY OF SUCH DAMAGE. 36 * POSSIBILITY OF SUCH DAMAGE.
33 */ 37 */
34 38
diff --git a/net/tipc/bcast.h b/net/tipc/bcast.h
index cc2ede15c4..27d1bba5c9 100644
--- a/net/tipc/bcast.h
+++ b/net/tipc/bcast.h
@@ -6,28 +6,32 @@
6 * Copyright (c) 2005-2006, Ericsson AB 6 * Copyright (c) 2005-2006, Ericsson AB
7 * All rights reserved. 7 * All rights reserved.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 * 20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 * Alternatively, this software may be distributed under the terms of the
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * Software Foundation.
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 24 *
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE. 35 * POSSIBILITY OF SUCH DAMAGE.
32 */ 36 */
33 37
diff --git a/net/tipc/bearer.c b/net/tipc/bearer.c
index c19465c5f0..579b17ded6 100644
--- a/net/tipc/bearer.c
+++ b/net/tipc/bearer.c
@@ -6,28 +6,32 @@
6 * Copyright (c) 2005-2006, Ericsson AB 6 * Copyright (c) 2005-2006, Ericsson AB
7 * All rights reserved. 7 * All rights reserved.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 * 20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 * Alternatively, this software may be distributed under the terms of the
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * Software Foundation.
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 24 *
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE. 35 * POSSIBILITY OF SUCH DAMAGE.
32 */ 36 */
33 37
diff --git a/net/tipc/bearer.h b/net/tipc/bearer.h
index 02a16f86de..96d4bd9e76 100644
--- a/net/tipc/bearer.h
+++ b/net/tipc/bearer.h
@@ -6,28 +6,32 @@
6 * Copyright (c) 2005-2006, Ericsson AB 6 * Copyright (c) 2005-2006, Ericsson AB
7 * All rights reserved. 7 * All rights reserved.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 * 20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 * Alternatively, this software may be distributed under the terms of the
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * Software Foundation.
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 24 *
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE. 35 * POSSIBILITY OF SUCH DAMAGE.
32 */ 36 */
33 37
diff --git a/net/tipc/cluster.c b/net/tipc/cluster.c
index d7d0f5f17e..4e86b2a6fc 100644
--- a/net/tipc/cluster.c
+++ b/net/tipc/cluster.c
@@ -9,14 +9,18 @@
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 *
21 * Alternatively, this software may be distributed under the terms of the
22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * Software Foundation.
20 * 24 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
diff --git a/net/tipc/cluster.h b/net/tipc/cluster.h
index c12875ab46..a066b5e518 100644
--- a/net/tipc/cluster.h
+++ b/net/tipc/cluster.h
@@ -6,28 +6,32 @@
6 * Copyright (c) 2005-2006, Ericsson AB 6 * Copyright (c) 2005-2006, Ericsson AB
7 * All rights reserved. 7 * All rights reserved.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 * 20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 * Alternatively, this software may be distributed under the terms of the
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * Software Foundation.
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 24 *
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE. 35 * POSSIBILITY OF SUCH DAMAGE.
32 */ 36 */
33 37
diff --git a/net/tipc/config.c b/net/tipc/config.c
index 0f31c342d1..9e55cf8cae 100644
--- a/net/tipc/config.c
+++ b/net/tipc/config.c
@@ -6,28 +6,32 @@
6 * Copyright (c) 2005-2006, Ericsson AB 6 * Copyright (c) 2005-2006, Ericsson AB
7 * All rights reserved. 7 * All rights reserved.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 * 20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 * Alternatively, this software may be distributed under the terms of the
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * Software Foundation.
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 24 *
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE. 35 * POSSIBILITY OF SUCH DAMAGE.
32 */ 36 */
33 37
diff --git a/net/tipc/config.h b/net/tipc/config.h
index ca76cb85a3..a12c6482c9 100644
--- a/net/tipc/config.h
+++ b/net/tipc/config.h
@@ -6,28 +6,32 @@
6 * Copyright (c) 2005-2006, Ericsson AB 6 * Copyright (c) 2005-2006, Ericsson AB
7 * All rights reserved. 7 * All rights reserved.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 * 20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 * Alternatively, this software may be distributed under the terms of the
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * Software Foundation.
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 24 *
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE. 35 * POSSIBILITY OF SUCH DAMAGE.
32 */ 36 */
33 37
diff --git a/net/tipc/core.c b/net/tipc/core.c
index 17c723f491..6d45d71bda 100644
--- a/net/tipc/core.c
+++ b/net/tipc/core.c
@@ -6,28 +6,32 @@
6 * Copyright (c) 2005-2006, Ericsson AB 6 * Copyright (c) 2005-2006, Ericsson AB
7 * All rights reserved. 7 * All rights reserved.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 * 20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 * Alternatively, this software may be distributed under the terms of the
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * Software Foundation.
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 24 *
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE. 35 * POSSIBILITY OF SUCH DAMAGE.
32 */ 36 */
33 37
diff --git a/net/tipc/core.h b/net/tipc/core.h
index d92898d6c0..4b29fb63c8 100644
--- a/net/tipc/core.h
+++ b/net/tipc/core.h
@@ -6,28 +6,32 @@
6 * Copyright (c) 2005-2006, Ericsson AB 6 * Copyright (c) 2005-2006, Ericsson AB
7 * All rights reserved. 7 * All rights reserved.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 * 20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 * Alternatively, this software may be distributed under the terms of the
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * Software Foundation.
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 24 *
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE. 35 * POSSIBILITY OF SUCH DAMAGE.
32 */ 36 */
33 37
diff --git a/net/tipc/dbg.c b/net/tipc/dbg.c
index efd6d652d0..22fa030150 100644
--- a/net/tipc/dbg.c
+++ b/net/tipc/dbg.c
@@ -6,28 +6,32 @@
6 * Copyright (c) 2005-2006, Ericsson AB 6 * Copyright (c) 2005-2006, Ericsson AB
7 * All rights reserved. 7 * All rights reserved.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 * 20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 * Alternatively, this software may be distributed under the terms of the
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * Software Foundation.
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 24 *
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE. 35 * POSSIBILITY OF SUCH DAMAGE.
32 */ 36 */
33 37
diff --git a/net/tipc/dbg.h b/net/tipc/dbg.h
index af4217a993..07a42ba684 100644
--- a/net/tipc/dbg.h
+++ b/net/tipc/dbg.h
@@ -6,28 +6,32 @@
6 * Copyright (c) 2005-2006, Ericsson AB 6 * Copyright (c) 2005-2006, Ericsson AB
7 * All rights reserved. 7 * All rights reserved.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 * 20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 * Alternatively, this software may be distributed under the terms of the
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * Software Foundation.
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 24 *
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE. 35 * POSSIBILITY OF SUCH DAMAGE.
32 */ 36 */
33 37
diff --git a/net/tipc/discover.c b/net/tipc/discover.c
index 73e151cf2a..31e242f39e 100644
--- a/net/tipc/discover.c
+++ b/net/tipc/discover.c
@@ -6,28 +6,32 @@
6 * Copyright (c) 2005-2006, Ericsson AB 6 * Copyright (c) 2005-2006, Ericsson AB
7 * All rights reserved. 7 * All rights reserved.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 * 20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 * Alternatively, this software may be distributed under the terms of the
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * Software Foundation.
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 24 *
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE. 35 * POSSIBILITY OF SUCH DAMAGE.
32 */ 36 */
33 37
diff --git a/net/tipc/discover.h b/net/tipc/discover.h
index 90c1de905e..17c150b18d 100644
--- a/net/tipc/discover.h
+++ b/net/tipc/discover.h
@@ -6,28 +6,32 @@
6 * Copyright (c) 2005-2006, Ericsson AB 6 * Copyright (c) 2005-2006, Ericsson AB
7 * All rights reserved. 7 * All rights reserved.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 * 20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 * Alternatively, this software may be distributed under the terms of the
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * Software Foundation.
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 24 *
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE. 35 * POSSIBILITY OF SUCH DAMAGE.
32 */ 36 */
33 37
diff --git a/net/tipc/eth_media.c b/net/tipc/eth_media.c
index b634d7a564..8acbef8e93 100644
--- a/net/tipc/eth_media.c
+++ b/net/tipc/eth_media.c
@@ -6,28 +6,32 @@
6 * Copyright (c) 2005-2006, Ericsson AB 6 * Copyright (c) 2005-2006, Ericsson AB
7 * All rights reserved. 7 * All rights reserved.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 * 20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 * Alternatively, this software may be distributed under the terms of the
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * Software Foundation.
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 24 *
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE. 35 * POSSIBILITY OF SUCH DAMAGE.
32 */ 36 */
33 37
diff --git a/net/tipc/handler.c b/net/tipc/handler.c
index c8fbb2071d..8f5dcbd4cd 100644
--- a/net/tipc/handler.c
+++ b/net/tipc/handler.c
@@ -6,28 +6,32 @@
6 * Copyright (c) 2005-2006, Ericsson AB 6 * Copyright (c) 2005-2006, Ericsson AB
7 * All rights reserved. 7 * All rights reserved.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 * 20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 * Alternatively, this software may be distributed under the terms of the
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * Software Foundation.
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 24 *
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE. 35 * POSSIBILITY OF SUCH DAMAGE.
32 */ 36 */
33 37
diff --git a/net/tipc/link.c b/net/tipc/link.c
index 92acb80bb2..c9261002ea 100644
--- a/net/tipc/link.c
+++ b/net/tipc/link.c
@@ -6,28 +6,32 @@
6 * Copyright (c) 2005-2006, Ericsson AB 6 * Copyright (c) 2005-2006, Ericsson AB
7 * All rights reserved. 7 * All rights reserved.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 * 20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 * Alternatively, this software may be distributed under the terms of the
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * Software Foundation.
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 24 *
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE. 35 * POSSIBILITY OF SUCH DAMAGE.
32 */ 36 */
33 37
diff --git a/net/tipc/link.h b/net/tipc/link.h
index e7db3476d8..a67868606e 100644
--- a/net/tipc/link.h
+++ b/net/tipc/link.h
@@ -6,28 +6,32 @@
6 * Copyright (c) 2005-2006, Ericsson AB 6 * Copyright (c) 2005-2006, Ericsson AB
7 * All rights reserved. 7 * All rights reserved.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 * 20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 * Alternatively, this software may be distributed under the terms of the
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * Software Foundation.
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 24 *
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE. 35 * POSSIBILITY OF SUCH DAMAGE.
32 */ 36 */
33 37
diff --git a/net/tipc/msg.c b/net/tipc/msg.c
index c6e90efd59..acc6e35429 100644
--- a/net/tipc/msg.c
+++ b/net/tipc/msg.c
@@ -6,28 +6,32 @@
6 * Copyright (c) 2005-2006, Ericsson AB 6 * Copyright (c) 2005-2006, Ericsson AB
7 * All rights reserved. 7 * All rights reserved.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 * 20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 * Alternatively, this software may be distributed under the terms of the
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * Software Foundation.
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 24 *
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE. 35 * POSSIBILITY OF SUCH DAMAGE.
32 */ 36 */
33 37
diff --git a/net/tipc/msg.h b/net/tipc/msg.h
index 3dcd23f518..6323de9743 100644
--- a/net/tipc/msg.h
+++ b/net/tipc/msg.h
@@ -6,28 +6,32 @@
6 * Copyright (c) 2005-2006, Ericsson AB 6 * Copyright (c) 2005-2006, Ericsson AB
7 * All rights reserved. 7 * All rights reserved.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 * 20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 * Alternatively, this software may be distributed under the terms of the
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * Software Foundation.
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 24 *
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE. 35 * POSSIBILITY OF SUCH DAMAGE.
32 */ 36 */
33 37
diff --git a/net/tipc/name_distr.c b/net/tipc/name_distr.c
index 5e0604cb3a..31448272a1 100644
--- a/net/tipc/name_distr.c
+++ b/net/tipc/name_distr.c
@@ -6,28 +6,32 @@
6 * Copyright (c) 2005-2006, Ericsson AB 6 * Copyright (c) 2005-2006, Ericsson AB
7 * All rights reserved. 7 * All rights reserved.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 * 20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 * Alternatively, this software may be distributed under the terms of the
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * Software Foundation.
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 24 *
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE. 35 * POSSIBILITY OF SUCH DAMAGE.
32 */ 36 */
33 37
diff --git a/net/tipc/name_distr.h b/net/tipc/name_distr.h
index 7c6616aecc..3f9c28d87c 100644
--- a/net/tipc/name_distr.h
+++ b/net/tipc/name_distr.h
@@ -6,28 +6,32 @@
6 * Copyright (c) 2005-2006, Ericsson AB 6 * Copyright (c) 2005-2006, Ericsson AB
7 * All rights reserved. 7 * All rights reserved.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 * 20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 * Alternatively, this software may be distributed under the terms of the
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * Software Foundation.
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 24 *
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE. 35 * POSSIBILITY OF SUCH DAMAGE.
32 */ 36 */
33 37
diff --git a/net/tipc/name_table.c b/net/tipc/name_table.c
index 9626c5b306..e152d6dddf 100644
--- a/net/tipc/name_table.c
+++ b/net/tipc/name_table.c
@@ -6,28 +6,32 @@
6 * Copyright (c) 2005-2006, Ericsson AB 6 * Copyright (c) 2005-2006, Ericsson AB
7 * All rights reserved. 7 * All rights reserved.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 * 20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 * Alternatively, this software may be distributed under the terms of the
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * Software Foundation.
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 24 *
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE. 35 * POSSIBILITY OF SUCH DAMAGE.
32 */ 36 */
33 37
diff --git a/net/tipc/name_table.h b/net/tipc/name_table.h
index 5036b5bac3..8e3749cf9b 100644
--- a/net/tipc/name_table.h
+++ b/net/tipc/name_table.h
@@ -6,28 +6,32 @@
6 * Copyright (c) 2005-2006, Ericsson AB 6 * Copyright (c) 2005-2006, Ericsson AB
7 * All rights reserved. 7 * All rights reserved.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 * 20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 * Alternatively, this software may be distributed under the terms of the
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * Software Foundation.
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 24 *
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE. 35 * POSSIBILITY OF SUCH DAMAGE.
32 */ 36 */
33 37
diff --git a/net/tipc/net.c b/net/tipc/net.c
index eba88033b9..73c6aa8fa1 100644
--- a/net/tipc/net.c
+++ b/net/tipc/net.c
@@ -9,14 +9,18 @@
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 *
21 * Alternatively, this software may be distributed under the terms of the
22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * Software Foundation.
20 * 24 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
diff --git a/net/tipc/net.h b/net/tipc/net.h
index 50098455a8..97650ff635 100644
--- a/net/tipc/net.h
+++ b/net/tipc/net.h
@@ -8,15 +8,19 @@
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 *
21 * Alternatively, this software may be distributed under the terms of the
22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * Software Foundation.
20 * 24 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
diff --git a/net/tipc/netlink.c b/net/tipc/netlink.c
index 2d778dfc44..de3eb45a66 100644
--- a/net/tipc/netlink.c
+++ b/net/tipc/netlink.c
@@ -5,28 +5,32 @@
5 * Copyright (c) 2005-2006, Ericsson AB 5 * Copyright (c) 2005-2006, Ericsson AB
6 * All rights reserved. 6 * All rights reserved.
7 * 7 *
8 * Redistribution and use in source and binary forms, with or without 8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are met: 9 * modification, are permitted provided that the following conditions are met:
10 * 10 *
11 * Redistributions of source code must retain the above copyright notice, this 11 * 1. Redistributions of source code must retain the above copyright
12 * list of conditions and the following disclaimer. 12 * notice, this list of conditions and the following disclaimer.
13 * Redistributions in binary form must reproduce the above copyright notice, 13 * 2. Redistributions in binary form must reproduce the above copyright
14 * this list of conditions and the following disclaimer in the documentation 14 * notice, this list of conditions and the following disclaimer in the
15 * and/or other materials provided with the distribution. 15 * documentation and/or other materials provided with the distribution.
16 * Neither the names of the copyright holders nor the names of its 16 * 3. Neither the names of the copyright holders nor the names of its
17 * contributors may be used to endorse or promote products derived from this 17 * contributors may be used to endorse or promote products derived from
18 * software without specific prior written permission. 18 * this software without specific prior written permission.
19 * 19 *
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 20 * Alternatively, this software may be distributed under the terms of the
21 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 * GNU General Public License ("GPL") version 2 as published by the Free
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 * Software Foundation.
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 23 *
24 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
25 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 27 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 28 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 29 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
32 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 * POSSIBILITY OF SUCH DAMAGE. 34 * POSSIBILITY OF SUCH DAMAGE.
31 */ 35 */
32 36
diff --git a/net/tipc/node.c b/net/tipc/node.c
index e311638b9b..e86614494c 100644
--- a/net/tipc/node.c
+++ b/net/tipc/node.c
@@ -6,28 +6,32 @@
6 * Copyright (c) 2005-2006, Ericsson AB 6 * Copyright (c) 2005-2006, Ericsson AB
7 * All rights reserved. 7 * All rights reserved.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 * 20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 * Alternatively, this software may be distributed under the terms of the
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * Software Foundation.
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 24 *
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE. 35 * POSSIBILITY OF SUCH DAMAGE.
32 */ 36 */
33 37
diff --git a/net/tipc/node.h b/net/tipc/node.h
index 1f616873a7..8919c873b0 100644
--- a/net/tipc/node.h
+++ b/net/tipc/node.h
@@ -6,28 +6,32 @@
6 * Copyright (c) 2005-2006, Ericsson AB 6 * Copyright (c) 2005-2006, Ericsson AB
7 * All rights reserved. 7 * All rights reserved.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 * 20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 * Alternatively, this software may be distributed under the terms of the
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * Software Foundation.
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 24 *
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE. 35 * POSSIBILITY OF SUCH DAMAGE.
32 */ 36 */
33 37
diff --git a/net/tipc/node_subscr.c b/net/tipc/node_subscr.c
index c38a3b0e84..ecdb982166 100644
--- a/net/tipc/node_subscr.c
+++ b/net/tipc/node_subscr.c
@@ -6,28 +6,32 @@
6 * Copyright (c) 2005-2006, Ericsson AB 6 * Copyright (c) 2005-2006, Ericsson AB
7 * All rights reserved. 7 * All rights reserved.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 * 20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 * Alternatively, this software may be distributed under the terms of the
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * Software Foundation.
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 24 *
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE. 35 * POSSIBILITY OF SUCH DAMAGE.
32 */ 36 */
33 37
diff --git a/net/tipc/node_subscr.h b/net/tipc/node_subscr.h
index 63ae92e0c8..3d2d8f546e 100644
--- a/net/tipc/node_subscr.h
+++ b/net/tipc/node_subscr.h
@@ -6,28 +6,32 @@
6 * Copyright (c) 2005-2006, Ericsson AB 6 * Copyright (c) 2005-2006, Ericsson AB
7 * All rights reserved. 7 * All rights reserved.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 * 20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 * Alternatively, this software may be distributed under the terms of the
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * Software Foundation.
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 24 *
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE. 35 * POSSIBILITY OF SUCH DAMAGE.
32 */ 36 */
33 37
diff --git a/net/tipc/port.c b/net/tipc/port.c
index f0f228c958..e69e8b42a1 100644
--- a/net/tipc/port.c
+++ b/net/tipc/port.c
@@ -6,28 +6,32 @@
6 * Copyright (c) 2005-2006, Ericsson AB 6 * Copyright (c) 2005-2006, Ericsson AB
7 * All rights reserved. 7 * All rights reserved.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 * 20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 * Alternatively, this software may be distributed under the terms of the
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * Software Foundation.
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 24 *
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE. 35 * POSSIBILITY OF SUCH DAMAGE.
32 */ 36 */
33 37
diff --git a/net/tipc/port.h b/net/tipc/port.h
index e40235ef92..e10d85a4bf 100644
--- a/net/tipc/port.h
+++ b/net/tipc/port.h
@@ -6,28 +6,32 @@
6 * Copyright (c) 2005-2006, Ericsson AB 6 * Copyright (c) 2005-2006, Ericsson AB
7 * All rights reserved. 7 * All rights reserved.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 * 20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 * Alternatively, this software may be distributed under the terms of the
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * Software Foundation.
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 24 *
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE. 35 * POSSIBILITY OF SUCH DAMAGE.
32 */ 36 */
33 37
diff --git a/net/tipc/ref.c b/net/tipc/ref.c
index aee48c797b..b6f60822ec 100644
--- a/net/tipc/ref.c
+++ b/net/tipc/ref.c
@@ -8,15 +8,19 @@
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 *
21 * Alternatively, this software may be distributed under the terms of the
22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * Software Foundation.
20 * 24 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
diff --git a/net/tipc/ref.h b/net/tipc/ref.h
index e6cd5bb3dc..08ba83fd56 100644
--- a/net/tipc/ref.h
+++ b/net/tipc/ref.h
@@ -6,28 +6,32 @@
6 * Copyright (c) 2005-2006, Ericsson AB 6 * Copyright (c) 2005-2006, Ericsson AB
7 * All rights reserved. 7 * All rights reserved.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 * 20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 * Alternatively, this software may be distributed under the terms of the
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * Software Foundation.
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 24 *
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE. 35 * POSSIBILITY OF SUCH DAMAGE.
32 */ 36 */
33 37
diff --git a/net/tipc/socket.c b/net/tipc/socket.c
index 688de0bf72..1120d03403 100644
--- a/net/tipc/socket.c
+++ b/net/tipc/socket.c
@@ -6,28 +6,32 @@
6 * Copyright (c) 2005-2006, Ericsson AB 6 * Copyright (c) 2005-2006, Ericsson AB
7 * All rights reserved. 7 * All rights reserved.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 * 20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 * Alternatively, this software may be distributed under the terms of the
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * Software Foundation.
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 24 *
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE. 35 * POSSIBILITY OF SUCH DAMAGE.
32 */ 36 */
33 37
diff --git a/net/tipc/subscr.c b/net/tipc/subscr.c
index 6f651a2c47..9486d8ee98 100644
--- a/net/tipc/subscr.c
+++ b/net/tipc/subscr.c
@@ -6,28 +6,32 @@
6 * Copyright (c) 2005-2006, Ericsson AB 6 * Copyright (c) 2005-2006, Ericsson AB
7 * All rights reserved. 7 * All rights reserved.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 * 20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 * Alternatively, this software may be distributed under the terms of the
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * Software Foundation.
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 24 *
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE. 35 * POSSIBILITY OF SUCH DAMAGE.
32 */ 36 */
33 37
diff --git a/net/tipc/subscr.h b/net/tipc/subscr.h
index e6cb9c3ad8..6b91ca9e24 100644
--- a/net/tipc/subscr.h
+++ b/net/tipc/subscr.h
@@ -6,28 +6,32 @@
6 * Copyright (c) 2005-2006, Ericsson AB 6 * Copyright (c) 2005-2006, Ericsson AB
7 * All rights reserved. 7 * All rights reserved.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 * 20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 * Alternatively, this software may be distributed under the terms of the
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * Software Foundation.
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 24 *
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE. 35 * POSSIBILITY OF SUCH DAMAGE.
32 */ 36 */
33 37
diff --git a/net/tipc/user_reg.c b/net/tipc/user_reg.c
index e4da5becc3..64165ec460 100644
--- a/net/tipc/user_reg.c
+++ b/net/tipc/user_reg.c
@@ -8,15 +8,19 @@
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 *
21 * Alternatively, this software may be distributed under the terms of the
22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * Software Foundation.
20 * 24 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
diff --git a/net/tipc/user_reg.h b/net/tipc/user_reg.h
index 44f219458a..0f96004ebd 100644
--- a/net/tipc/user_reg.h
+++ b/net/tipc/user_reg.h
@@ -6,28 +6,32 @@
6 * Copyright (c) 2005-2006, Ericsson AB 6 * Copyright (c) 2005-2006, Ericsson AB
7 * All rights reserved. 7 * All rights reserved.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 * 20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 * Alternatively, this software may be distributed under the terms of the
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * Software Foundation.
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 24 *
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE. 35 * POSSIBILITY OF SUCH DAMAGE.
32 */ 36 */
33 37
diff --git a/net/tipc/zone.c b/net/tipc/zone.c
index 336eebb7bf..b47deecb73 100644
--- a/net/tipc/zone.c
+++ b/net/tipc/zone.c
@@ -9,14 +9,18 @@
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 *
21 * Alternatively, this software may be distributed under the terms of the
22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * Software Foundation.
20 * 24 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
diff --git a/net/tipc/zone.h b/net/tipc/zone.h
index 19fd51a8bd..e05cc61020 100644
--- a/net/tipc/zone.h
+++ b/net/tipc/zone.h
@@ -9,14 +9,18 @@
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met: 10 * modification, are permitted provided that the following conditions are met:
11 * 11 *
12 * Redistributions of source code must retain the above copyright notice, this 12 * 1. Redistributions of source code must retain the above copyright
13 * list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice, 14 * 2. Redistributions in binary form must reproduce the above copyright
15 * this list of conditions and the following disclaimer in the documentation 15 * notice, this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution. 16 * documentation and/or other materials provided with the distribution.
17 * Neither the names of the copyright holders nor the names of its 17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from this 18 * contributors may be used to endorse or promote products derived from
19 * software without specific prior written permission. 19 * this software without specific prior written permission.
20 *
21 * Alternatively, this software may be distributed under the terms of the
22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * Software Foundation.
20 * 24 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE