Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
a7073fa6
Commit
a7073fa6
authored
Sep 12, 2003
by
Stephen Hemminger
Committed by
David S. Miller
Sep 12, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[NET]: Better proc_net macros for non-procfs case.
parent
d684348d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
include/linux/proc_fs.h
include/linux/proc_fs.h
+4
-3
No files found.
include/linux/proc_fs.h
View file @
a7073fa6
...
@@ -185,9 +185,10 @@ static inline void proc_net_remove(const char *name)
...
@@ -185,9 +185,10 @@ static inline void proc_net_remove(const char *name)
#else
#else
#define proc_root_driver NULL
#define proc_root_driver NULL
#define proc_net_fops_create(name,mode,fops) do {} while(0)
#define proc_net NULL
static
inline
struct
proc_dir_entry
*
proc_net_create
(
const
char
*
name
,
mode_t
mode
,
get_info_t
*
get_info
)
{
return
NULL
;}
#define proc_net_fops_create(name, mode, fops) ({ (void)(mode), NULL; })
#define proc_net_create(name, mode, info) ({ (void)(mode), NULL; })
static
inline
void
proc_net_remove
(
const
char
*
name
)
{}
static
inline
void
proc_net_remove
(
const
char
*
name
)
{}
static
inline
struct
dentry
*
proc_pid_unhash
(
struct
task_struct
*
p
)
{
return
NULL
;
}
static
inline
struct
dentry
*
proc_pid_unhash
(
struct
task_struct
*
p
)
{
return
NULL
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment