-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 113715 b: refs/heads/master c: 4245e59 h: refs/heads/master i: 113713: e8034f0 113711: c627db8 v: v3
- Loading branch information
Robert Reif
authored and
David S. Miller
committed
Oct 13, 2008
1 parent
185ce63
commit 8073627
Showing
341 changed files
with
9,334 additions
and
10,747 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: be3bfbba8f7f6c8f32e8444ef895433701a3f801 | ||
refs/heads/master: 4245e59d1239a5270670807b114856365a863df8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,6 @@ | ||
#ifndef _ALPHA_STATFS_H | ||
#define _ALPHA_STATFS_H | ||
|
||
/* Alpha is the only 64-bit platform with 32-bit statfs. And doesn't | ||
even seem to implement statfs64 */ | ||
#define __statfs_word __u32 | ||
|
||
#include <asm-generic/statfs.h> | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,42 @@ | ||
#ifndef _ASMARM_STATFS_H | ||
#define _ASMARM_STATFS_H | ||
|
||
#ifndef __KERNEL_STRICT_NAMES | ||
# include <linux/types.h> | ||
typedef __kernel_fsid_t fsid_t; | ||
#endif | ||
|
||
struct statfs { | ||
__u32 f_type; | ||
__u32 f_bsize; | ||
__u32 f_blocks; | ||
__u32 f_bfree; | ||
__u32 f_bavail; | ||
__u32 f_files; | ||
__u32 f_ffree; | ||
__kernel_fsid_t f_fsid; | ||
__u32 f_namelen; | ||
__u32 f_frsize; | ||
__u32 f_spare[5]; | ||
}; | ||
|
||
/* | ||
* With EABI there is 4 bytes of padding added to this structure. | ||
* Let's pack it so the padding goes away to simplify dual ABI support. | ||
* Note that user space does NOT have to pack this structure. | ||
*/ | ||
#define ARCH_PACK_STATFS64 __attribute__((packed,aligned(4))) | ||
struct statfs64 { | ||
__u32 f_type; | ||
__u32 f_bsize; | ||
__u64 f_blocks; | ||
__u64 f_bfree; | ||
__u64 f_bavail; | ||
__u64 f_files; | ||
__u64 f_ffree; | ||
__kernel_fsid_t f_fsid; | ||
__u32 f_namelen; | ||
__u32 f_frsize; | ||
__u32 f_spare[5]; | ||
} __attribute__ ((packed,aligned(4))); | ||
|
||
#include <asm-generic/statfs.h> | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#ifndef __ASM_AVR32_A_OUT_H | ||
#define __ASM_AVR32_A_OUT_H | ||
|
||
struct exec | ||
{ | ||
unsigned long a_info; /* Use macros N_MAGIC, etc for access */ | ||
unsigned a_text; /* length of text, in bytes */ | ||
unsigned a_data; /* length of data, in bytes */ | ||
unsigned a_bss; /* length of uninitialized data area for file, in bytes */ | ||
unsigned a_syms; /* length of symbol table data in file, in bytes */ | ||
unsigned a_entry; /* start address */ | ||
unsigned a_trsize; /* length of relocation info for text, in bytes */ | ||
unsigned a_drsize; /* length of relocation info for data, in bytes */ | ||
}; | ||
|
||
#define N_TRSIZE(a) ((a).a_trsize) | ||
#define N_DRSIZE(a) ((a).a_drsize) | ||
#define N_SYMSIZE(a) ((a).a_syms) | ||
|
||
#endif /* __ASM_AVR32_A_OUT_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#ifndef __BFIN_A_OUT_H__ | ||
#define __BFIN_A_OUT_H__ | ||
|
||
struct exec { | ||
unsigned long a_info; /* Use macros N_MAGIC, etc for access */ | ||
unsigned a_text; /* length of text, in bytes */ | ||
unsigned a_data; /* length of data, in bytes */ | ||
unsigned a_bss; /* length of uninitialized data area for file, in bytes */ | ||
unsigned a_syms; /* length of symbol table data in file, in bytes */ | ||
unsigned a_entry; /* start address */ | ||
unsigned a_trsize; /* length of relocation info for text, in bytes */ | ||
unsigned a_drsize; /* length of relocation info for data, in bytes */ | ||
}; | ||
|
||
#define N_TRSIZE(a) ((a).a_trsize) | ||
#define N_DRSIZE(a) ((a).a_drsize) | ||
#define N_SYMSIZE(a) ((a).a_syms) | ||
|
||
#endif /* __BFIN_A_OUT_H__ */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.