diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/kobject.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/kobject.c b/lib/kobject.c index b2c6d1f56e65..f07c57252e82 100644 --- a/lib/kobject.c +++ b/lib/kobject.c | |||
@@ -948,6 +948,17 @@ const void *kobj_ns_initial(enum kobj_ns_type type) | |||
948 | return ns; | 948 | return ns; |
949 | } | 949 | } |
950 | 950 | ||
951 | /* | ||
952 | * kobj_ns_exit - invalidate a namespace tag | ||
953 | * | ||
954 | * @type: the namespace type (i.e. KOBJ_NS_TYPE_NET) | ||
955 | * @ns: the actual namespace being invalidated | ||
956 | * | ||
957 | * This is called when a tag is no longer valid. For instance, | ||
958 | * when a network namespace exits, it uses this helper to | ||
959 | * make sure no sb's sysfs_info points to the now-invalidated | ||
960 | * netns. | ||
961 | */ | ||
951 | void kobj_ns_exit(enum kobj_ns_type type, const void *ns) | 962 | void kobj_ns_exit(enum kobj_ns_type type, const void *ns) |
952 | { | 963 | { |
953 | sysfs_exit_ns(type, ns); | 964 | sysfs_exit_ns(type, ns); |