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
a1a86b68
Commit
a1a86b68
authored
Apr 01, 2003
by
Stephen Rothwell
Committed by
Linus Torvalds
Apr 01, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] more compat types
parent
31cfe2a7
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
32 additions
and
7 deletions
+32
-7
include/asm-parisc/compat.h
include/asm-parisc/compat.h
+5
-0
include/asm-ppc64/compat.h
include/asm-ppc64/compat.h
+5
-0
include/asm-s390x/compat.h
include/asm-s390x/compat.h
+5
-0
include/asm-sparc64/compat.h
include/asm-sparc64/compat.h
+5
-0
include/asm-x86_64/compat.h
include/asm-x86_64/compat.h
+5
-0
include/net/compat.h
include/net/compat.h
+7
-7
No files found.
include/asm-parisc/compat.h
View file @
a1a86b68
...
...
@@ -24,6 +24,11 @@ typedef u16 compat_ipc_pid_t;
typedef
s32
compat_daddr_t
;
typedef
u32
compat_caddr_t
;
typedef
s32
compat_int_t
;
typedef
s32
compat_long_t
;
typedef
u32
compat_uint_t
;
typedef
u32
compat_ulong_t
;
struct
compat_timespec
{
compat_time_t
tv_sec
;
s32
tv_nsec
;
...
...
include/asm-ppc64/compat.h
View file @
a1a86b68
...
...
@@ -25,6 +25,11 @@ typedef s32 compat_daddr_t;
typedef
u32
compat_caddr_t
;
typedef
__kernel_fsid_t
compat_fsid_t
;
typedef
s32
compat_int_t
;
typedef
s32
compat_long_t
;
typedef
u32
compat_uint_t
;
typedef
u32
compat_ulong_t
;
struct
compat_timespec
{
compat_time_t
tv_sec
;
s32
tv_nsec
;
...
...
include/asm-s390x/compat.h
View file @
a1a86b68
...
...
@@ -25,6 +25,11 @@ typedef s32 compat_daddr_t;
typedef
u32
compat_caddr_t
;
typedef
__kernel_fsid_t
compat_fsid_t
;
typedef
s32
compat_int_t
;
typedef
s32
compat_long_t
;
typedef
u32
compat_uint_t
;
typedef
u32
compat_ulong_t
;
struct
compat_timespec
{
compat_time_t
tv_sec
;
s32
tv_nsec
;
...
...
include/asm-sparc64/compat.h
View file @
a1a86b68
...
...
@@ -25,6 +25,11 @@ typedef s32 compat_daddr_t;
typedef
u32
compat_caddr_t
;
typedef
__kernel_fsid_t
compat_fsid_t
;
typedef
s32
compat_int_t
;
typedef
s32
compat_long_t
;
typedef
u32
compat_uint_t
;
typedef
u32
compat_ulong_t
;
struct
compat_timespec
{
compat_time_t
tv_sec
;
s32
tv_nsec
;
...
...
include/asm-x86_64/compat.h
View file @
a1a86b68
...
...
@@ -27,6 +27,11 @@ typedef s32 compat_daddr_t;
typedef
u32
compat_caddr_t
;
typedef
__kernel_fsid_t
compat_fsid_t
;
typedef
s32
compat_int_t
;
typedef
s32
compat_long_t
;
typedef
u32
compat_uint_t
;
typedef
u32
compat_ulong_t
;
struct
compat_timespec
{
compat_time_t
tv_sec
;
s32
tv_nsec
;
...
...
include/net/compat.h
View file @
a1a86b68
...
...
@@ -8,19 +8,19 @@
#include <linux/compat.h>
struct
compat_msghdr
{
compat_uptr_t
msg_name
;
s32
msg_namelen
;
compat_uptr_t
msg_iov
;
compat_uptr_t
msg_name
;
/* void * */
compat_int_t
msg_namelen
;
compat_uptr_t
msg_iov
;
/* struct compat_iovec * */
compat_size_t
msg_iovlen
;
compat_uptr_t
msg_control
;
compat_uptr_t
msg_control
;
/* void * */
compat_size_t
msg_controllen
;
u32
msg_flags
;
compat_uint_t
msg_flags
;
};
struct
compat_cmsghdr
{
compat_size_t
cmsg_len
;
s32
cmsg_level
;
s32
cmsg_type
;
compat_int_t
cmsg_level
;
compat_int_t
cmsg_type
;
};
#else
/* defined(CONFIG_COMPAT) */
...
...
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