inode.c (a02001086bbfb4da35d1228bebc2f1b442db455f) | inode.c (64964528b24ea390824f0e5ce9d34b8d39b28cde) |
---|---|
1/* 2 * linux/fs/proc/inode.c 3 * 4 * Copyright (C) 1991, 1992 Linus Torvalds 5 */ 6 7#include <linux/time.h> 8#include <linux/proc_fs.h> --- 19 unchanged lines hidden (view full) --- 28 29#include "internal.h" 30 31static void proc_evict_inode(struct inode *inode) 32{ 33 struct proc_dir_entry *de; 34 struct ctl_table_header *head; 35 const struct proc_ns_operations *ns_ops; | 1/* 2 * linux/fs/proc/inode.c 3 * 4 * Copyright (C) 1991, 1992 Linus Torvalds 5 */ 6 7#include <linux/time.h> 8#include <linux/proc_fs.h> --- 19 unchanged lines hidden (view full) --- 28 29#include "internal.h" 30 31static void proc_evict_inode(struct inode *inode) 32{ 33 struct proc_dir_entry *de; 34 struct ctl_table_header *head; 35 const struct proc_ns_operations *ns_ops; |
36 void *ns; | 36 struct ns_common *ns; |
37 38 truncate_inode_pages_final(&inode->i_data); 39 clear_inode(inode); 40 41 /* Stop tracking associated processes */ 42 put_pid(PROC_I(inode)->pid); 43 44 /* Let go of any associated proc directory entry */ --- 428 unchanged lines hidden --- | 37 38 truncate_inode_pages_final(&inode->i_data); 39 clear_inode(inode); 40 41 /* Stop tracking associated processes */ 42 put_pid(PROC_I(inode)->pid); 43 44 /* Let go of any associated proc directory entry */ --- 428 unchanged lines hidden --- |