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
c66ac94e
Commit
c66ac94e
authored
Dec 20, 2002
by
David S. Miller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[SPARC64]: Fix some circular include deps.
parent
09f382a3
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
23 deletions
+22
-23
include/asm-sparc64/compat.h
include/asm-sparc64/compat.h
+20
-0
include/asm-sparc64/processor.h
include/asm-sparc64/processor.h
+2
-1
include/asm-sparc64/stat.h
include/asm-sparc64/stat.h
+0
-22
No files found.
include/asm-sparc64/compat.h
View file @
c66ac94e
...
...
@@ -12,6 +12,26 @@ typedef s32 compat_ssize_t;
typedef
s32
compat_time_t
;
typedef
s32
compat_clock_t
;
struct
compat_stat
{
__kernel_dev_t32
st_dev
;
__kernel_ino_t32
st_ino
;
__kernel_mode_t32
st_mode
;
s16
st_nlink
;
__kernel_uid_t32
st_uid
;
__kernel_gid_t32
st_gid
;
__kernel_dev_t32
st_rdev
;
__kernel_off_t32
st_size
;
compat_time_t
st_atime
;
u32
__unused1
;
compat_time_t
st_mtime
;
u32
__unused2
;
compat_time_t
st_ctime
;
u32
__unused3
;
__kernel_off_t32
st_blksize
;
__kernel_off_t32
st_blocks
;
u32
__unused4
[
2
];
};
struct
compat_timespec
{
compat_time_t
tv_sec
;
s32
tv_nsec
;
...
...
include/asm-sparc64/processor.h
View file @
c66ac94e
...
...
@@ -18,7 +18,6 @@
#include <asm/a.out.h>
#include <asm/pstate.h>
#include <asm/ptrace.h>
#include <asm/signal.h>
#include <asm/segment.h>
#include <asm/page.h>
#include <asm/delay.h>
...
...
@@ -93,6 +92,8 @@ struct thread_struct {
#ifndef __ASSEMBLY__
#include <linux/types.h>
/* Return saved PC of a blocked thread. */
struct
task_struct
;
extern
unsigned
long
thread_saved_pc
(
struct
task_struct
*
);
...
...
include/asm-sparc64/stat.h
View file @
c66ac94e
...
...
@@ -3,28 +3,6 @@
#define _SPARC64_STAT_H
#include <linux/types.h>
#include <linux/compat.h>
#include <linux/time.h>
struct
compat_stat
{
__kernel_dev_t32
st_dev
;
__kernel_ino_t32
st_ino
;
__kernel_mode_t32
st_mode
;
short
st_nlink
;
__kernel_uid_t32
st_uid
;
__kernel_gid_t32
st_gid
;
__kernel_dev_t32
st_rdev
;
__kernel_off_t32
st_size
;
compat_time_t
st_atime
;
unsigned
int
__unused1
;
compat_time_t
st_mtime
;
unsigned
int
__unused2
;
compat_time_t
st_ctime
;
unsigned
int
__unused3
;
__kernel_off_t32
st_blksize
;
__kernel_off_t32
st_blocks
;
unsigned
int
__unused4
[
2
];
};
struct
stat
{
dev_t
st_dev
;
...
...
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