aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/smb_fs_i.h
blob: 8516954a51416ef434e46ba09db9ed88e130a647 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
 *  smb_fs_i.h
 *
 *  Copyright (C) 1995 by Paal-Kr. Engstad and Volker Lendecke
 *  Copyright (C) 1997 by Volker Lendecke
 *
 */

#ifndef _LINUX_SMB_FS_I
#define _LINUX_SMB_FS_I

#ifdef __KERNEL__
#include <linux/types.h>
#include <linux/fs.h>

/*
 * smb fs inode data (in memory only)
 */
struct smb_inode_info {

	/*
	 * file handles are local to a connection. A file is open if
	 * (open == generation).
	 */
        unsigned int open;	/* open generation */
	__u16 fileid;		/* What id to handle a file with? */
	__u16 attr;		/* Attribute fields, DOS value */

	__u16 access;		/* Access mode */
	__u16 flags;
	unsigned long oldmtime;	/* last time refreshed */
	unsigned long closed;	/* timestamp when closed */
	unsigned openers;	/* number of fileid users */

	struct inode vfs_inode;	/* must be at the end */
};

#endif
#endif
itter Linus Torvalds <torvalds@woody.linux-foundation.org> 2007-10-19 14:53:38 -0400 pid namespaces: add support for pid namespaces hierarchy' href='/cgit/cgit.cgi/litmus-rt.git/commit/include/linux/pid_namespace.h?h=wip-kernthreads&id=faacbfd3a6808bf87d8f353b42eceeaba2c78a47'>faacbfd3a680
07543f5c75ce


3fbc96486459

61a58c6c238c
3fbc96486459
57d5f66b8607
a05f7b15deb2
9a575a92db33
b461cc03828c

a05f7b15deb2
9a575a92db33

213dd266d48a
9a575a92db33



b461cc03828c

9a575a92db33

57d5f66b8607





















2894d650cd97




88f21d818255
84d737866e2b
b461cc03828c

84d737866e2b

61a58c6c238c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82

                       



                          

                          







                                                                              
                      


                                             
                                         
                                      

                                     


                                  

  
                                        
 
                    
                                                                        
 

                                    
                  

 
                                                                                        



                                                       

                                                 

 





















                                                                        




                                                                               
                                                                            
 

                                                  

 
                            
#ifndef _LINUX_PID_NS_H
#define _LINUX_PID_NS_H

#include <linux/sched.h>
#include <linux/mm.h>
#include <linux/threads.h>
#include <linux/nsproxy.h>
#include <linux/kref.h>

struct pidmap {
       atomic_t nr_free;
       void *page;
};

#define PIDMAP_ENTRIES         ((PID_MAX_LIMIT + 8*PAGE_SIZE - 1)/PAGE_SIZE/8)

struct pid_namespace {
	struct kref kref;
	struct pidmap pidmap[PIDMAP_ENTRIES];
	int last_pid;
	struct task_struct *child_reaper;
	struct kmem_cache *pid_cachep;
	int level;
	struct pid_namespace *parent;
#ifdef CONFIG_PROC_FS
	struct vfsmount *proc_mnt;
#endif
};

extern struct pid_namespace init_pid_ns;

#ifdef CONFIG_PID_NS
static inline struct pid_namespace *get_pid_ns(struct pid_namespace *ns)
{
	if (ns != &init_pid_ns)
		kref_get(&ns->kref);
	return ns;
}

extern struct pid_namespace *copy_pid_ns(unsigned long flags, struct pid_namespace *ns);
extern void free_pid_ns(struct kref *kref);

static inline void put_pid_ns(struct pid_namespace *ns)
{
	if (ns != &init_pid_ns)
		kref_put(&ns->kref, free_pid_ns);
}

#else /* !CONFIG_PID_NS */
#include <linux/err.h>

static inline struct pid_namespace *get_pid_ns(struct pid_namespace *ns)
{
	return ns;
}

static inline struct pid_namespace *
copy_pid_ns(unsigned long flags, struct pid_namespace *ns)
{
	if (flags & CLONE_NEWPID)
		ns = ERR_PTR(-EINVAL);
	return ns;
}

static inline void put_pid_ns(struct pid_namespace *ns)
{
}

#endif /* CONFIG_PID_NS */

static inline struct pid_namespace *task_active_pid_ns(struct task_struct *tsk)
{
	return tsk->nsproxy->pid_ns;
}

static inline struct task_struct *task_child_reaper(struct task_struct *tsk)
{
	BUG_ON(tsk != current);
	return tsk->nsproxy->pid_ns->child_reaper;
}

#endif /* _LINUX_PID_NS_H */