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
nexedi
linux
Commits
65968928
Commit
65968928
authored
Oct 04, 2008
by
Alexey Dobriyan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
proc: remove remnants of ->read_proc in proc_misc.c
Signed-off-by:
Alexey Dobriyan
<
adobriyan@gmail.com
>
parent
6e62775e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
27 deletions
+0
-27
fs/proc/proc_misc.c
fs/proc/proc_misc.c
+0
-27
No files found.
fs/proc/proc_misc.c
View file @
65968928
...
...
@@ -57,24 +57,6 @@
#include <asm/div64.h>
#include "internal.h"
/*
* Warning: stuff below (imported functions) assumes that its output will fit
* into one page. For some of those functions it may be wrong. Moreover, we
* have a way to deal with that gracefully. Right now I used straightforward
* wrappers, but this needs further analysis wrt potential overflows.
*/
static
int
proc_calc_metrics
(
char
*
page
,
char
**
start
,
off_t
off
,
int
count
,
int
*
eof
,
int
len
)
{
if
(
len
<=
off
+
count
)
*
eof
=
1
;
*
start
=
page
+
off
;
len
-=
off
;
if
(
len
>
count
)
len
=
count
;
if
(
len
<
0
)
len
=
0
;
return
len
;
}
static
int
fragmentation_open
(
struct
inode
*
inode
,
struct
file
*
file
)
{
(
void
)
inode
;
...
...
@@ -620,15 +602,6 @@ struct proc_dir_entry *proc_root_kcore;
void
__init
proc_misc_init
(
void
)
{
static
struct
{
char
*
name
;
int
(
*
read_proc
)(
char
*
,
char
**
,
off_t
,
int
,
int
*
,
void
*
);
}
*
p
,
simple_ones
[]
=
{
{
NULL
,}
};
for
(
p
=
simple_ones
;
p
->
name
;
p
++
)
create_proc_read_entry
(
p
->
name
,
0
,
NULL
,
p
->
read_proc
,
NULL
);
proc_symlink
(
"mounts"
,
NULL
,
"self/mounts"
);
/* And now for trickier ones */
...
...
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