dc68054305
- Restore 29 recipe symlinks (libdrm, qtbase, dbus, sddm, pipewire, etc.) - Restore 33 patches (KDE, libdrm, mesa, pipewire, sddm, wireplumber) - Restore 20+ local/scripts (audit, lint, test, build helpers) - Restore src/cook/scheduler.rs, status.rs, gnu-config/ - Restore scripts/patch-inclusion-gate.sh, run_mini1.sh, validate-collision-log.sh - Recover TLC source from HEAD (was overwritten by 0.2.3 checkout) - Recover 11 local/docs plans from HEAD (were overwritten) - Recover qt6-wayland-smoke symlink from HEAD - Fix MOTD: remove garbled ASCII art, use clean text - Update version: 0.2.0 -> 0.2.4 in os-release, motd, config - Reduce filesystem_size: 1536 -> 512 MiB - Add ABSOLUTE RULE to AGENTS.md: never delete/ignore packages - Reduce pcid scheme log verbosity: info -> debug
59 lines
1.9 KiB
C
59 lines
1.9 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
/* Kernel object name space definitions
|
|
*
|
|
* Copyright (c) 2002-2003 Patrick Mochel
|
|
* Copyright (c) 2002-2003 Open Source Development Labs
|
|
* Copyright (c) 2006-2008 Greg Kroah-Hartman <greg@kroah.com>
|
|
* Copyright (c) 2006-2008 Novell Inc.
|
|
*
|
|
* Split from kobject.h by David Howells (dhowells@redhat.com)
|
|
*
|
|
* Please read Documentation/core-api/kobject.rst before using the kobject
|
|
* interface, ESPECIALLY the parts about reference counts and object
|
|
* destructors.
|
|
*/
|
|
|
|
#ifndef _LINUX_KOBJECT_NS_H
|
|
#define _LINUX_KOBJECT_NS_H
|
|
|
|
struct ns_common;
|
|
struct sock;
|
|
struct kobject;
|
|
|
|
/*
|
|
* Namespace types which are used to tag kobjects and sysfs entries.
|
|
* Network namespace will likely be the first.
|
|
*/
|
|
enum kobj_ns_type {
|
|
KOBJ_NS_TYPE_NONE = 0,
|
|
KOBJ_NS_TYPE_NET,
|
|
KOBJ_NS_TYPES
|
|
};
|
|
|
|
/*
|
|
* Callbacks so sysfs can determine namespaces
|
|
* @grab_current_ns: return a new reference to calling task's namespace
|
|
* @netlink_ns: return namespace to which a sock belongs (right?)
|
|
* @initial_ns: return the initial namespace (i.e. init_net_ns)
|
|
* @drop_ns: drops a reference to namespace
|
|
*/
|
|
struct kobj_ns_type_operations {
|
|
enum kobj_ns_type type;
|
|
bool (*current_may_mount)(void);
|
|
struct ns_common *(*grab_current_ns)(void);
|
|
const struct ns_common *(*netlink_ns)(struct sock *sk);
|
|
const struct ns_common *(*initial_ns)(void);
|
|
void (*drop_ns)(struct ns_common *);
|
|
};
|
|
|
|
int kobj_ns_type_register(const struct kobj_ns_type_operations *ops);
|
|
int kobj_ns_type_registered(enum kobj_ns_type type);
|
|
const struct kobj_ns_type_operations *kobj_child_ns_ops(const struct kobject *parent);
|
|
const struct kobj_ns_type_operations *kobj_ns_ops(const struct kobject *kobj);
|
|
|
|
bool kobj_ns_current_may_mount(enum kobj_ns_type type);
|
|
struct ns_common *kobj_ns_grab_current(enum kobj_ns_type type);
|
|
void kobj_ns_drop(enum kobj_ns_type type, struct ns_common *ns);
|
|
|
|
#endif /* _LINUX_KOBJECT_NS_H */
|