License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-block.git] / include / net / netns / mpls.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
0189197f
EB
2/*
3 * mpls in net namespaces
4 */
5
6#ifndef __NETNS_MPLS_H__
7#define __NETNS_MPLS_H__
8
9struct mpls_route;
7720c01f 10struct ctl_table_header;
0189197f
EB
11
12struct netns_mpls {
5b441ac8 13 int ip_ttl_propagate;
a59166e4 14 int default_ttl;
0189197f
EB
15 size_t platform_labels;
16 struct mpls_route __rcu * __rcu *platform_label;
5b441ac8 17
7720c01f 18 struct ctl_table_header *ctl;
0189197f
EB
19};
20
21#endif /* __NETNS_MPLS_H__ */