include/linux/seq_file_net.h

Source file repositories/reference/linux-study-clean/include/linux/seq_file_net.h

File Facts

System
Linux kernel
Corpus path
include/linux/seq_file_net.h
Extension
.h
Size
787 bytes
Lines
41
Domain
Core OS
Bucket
Core Kernel Interface
Inferred role
Core OS: implementation source
Status
source implementation candidate

Why This File Exists

Core operating-system implementation surface: boot, tasks, memory, VFS, syscall-facing interfaces, synchronization, credentials, and isolation.

Dependency Surface

Detected Declarations

Annotated Snippet

struct seq_net_private {
#ifdef CONFIG_NET_NS
	struct net	*net;
	netns_tracker	ns_tracker;
#endif
};

static inline struct net *seq_file_net(struct seq_file *seq)
{
#ifdef CONFIG_NET_NS
	return ((struct seq_net_private *)seq->private)->net;
#else
	return &init_net;
#endif
}

/*
 * This one is needed for proc_create_net_single since net is stored directly
 * in private not as a struct i.e. seq_file_net can't be used.
 */
static inline struct net *seq_file_single_net(struct seq_file *seq)
{
#ifdef CONFIG_NET_NS
	return (struct net *)seq->private;
#else
	return &init_net;
#endif
}

#endif

Annotation

Implementation Notes