search for: daddr_t

Displaying 8 results from an estimated 8 matches for "daddr_t".

Did you mean: maddr_t
2006 Jan 21
2
Xen kernel compilation fails - no such file or directory features.h (but its there)
...x/types.h:26: error: syntax error before "pid_t" include/linux/types.h:26: warning: type defaults to `int'' in declaration of `pid_t'' include/linux/types.h:26: warning: data definition has no type or storage class include/linux/types.h:27: error: syntax error before "daddr_t" include/linux/types.h:27: warning: type defaults to `int'' in declaration of `daddr_t'' include/linux/types.h:27: warning: data definition has no type or storage class include/linux/types.h:29: error: syntax error before "suseconds_t" include/linux/types.h:29: warnin...
2004 Sep 02
1
__kernel_timer_t missing
..._t. Can we just get rid of the __kernel_timer_t? --- klibc-0.171/klibc/include/sys/types.h.orig 2004-06-08 07:32:48.000000000 +0200 +++ klibc-0.171/klibc/include/sys/types.h 2004-09-02 15:14:04.495486895 +0200 @@ -28,7 +28,7 @@ typedef __kernel_pid_t pid_t; typedef __kernel_daddr_t daddr_t; typedef __kernel_key_t key_t; typedef __kernel_suseconds_t suseconds_t; -typedef __kernel_timer_t timer_t; +typedef int timer_t; typedef __kernel_uid32_t uid_t; typedef __kernel_gid32_t gid_t; -- USB is for mice, FireWire is for...
2006 May 15
3
Eicon Diva - problems building new v3 melware driver
...ude/linux/types.h:26: error: syntax error before "pid_t" include/linux/types.h:26: warning: type defaults to `int' in declaration of `pid_t' include/linux/types.h:26: warning: data definition has no type or storage class include/linux/types.h:27: error: syntax error before "daddr_t" include/linux/types.h:27: warning: type defaults to `int' in declaration of `daddr_t' include/linux/types.h:27: warning: data definition has no type or storage class include/linux/types.h:29: error: syntax error before "suseconds_t" include/linux/types.h:29: warning: type...
2004 Feb 22
3
ARM/Thumb updates and some other minor tweaks
...thumb_func diff -ruN klibc-0.114_orig/klibc/include/sys/types.h klibc-0.114/klibc/include/sys/types.h --- klibc-0.114_orig/klibc/include/sys/types.h 2004-02-08 22:19:37.000000000 -0800 +++ klibc-0.114/klibc/include/sys/types.h 2004-02-22 04:39:00.000000000 -0800 @@ -27,7 +27,12 @@ typedef __kernel_daddr_t daddr_t; typedef __kernel_key_t key_t; typedef __kernel_suseconds_t suseconds_t; -typedef __kernel_timer_t timer_t; +/* + * __kernel_timer_t is not defined in arm kernel 2.4.21-rmk2 which causes + * arm klibc builds to fail. timer_t doesn't seem to be used within klibc + * so commenting out...
2009 Jan 28
2
7.1 new install halts on BTX error
I upgraded my 7.0 system to 7.1-RELEASE with freebsd-update only to find that it no longer boots correctly, instead crashing with a BTX backtrace. If I break to the loader prompt and use 'ls /boot', I also get a backtrace. A new install of 7.1 on this hardware using a separate SCSI card and drive array also leads to a BTX backtrace. I have copied this below as the first (most
2012 Sep 03
1
[GIT-PULL] XFS filesystem driver
...bytes(fs, XFS_FSB_TO_AGNO(fs, (x))) + \ + agblock_to_bytes(fs, XFS_FSB_TO_AGBNO(fs, (x)))) +#define ino_to_bytes(fs, x) \ + (agnumber_to_bytes(fs, XFS_INO_TO_AGNO(fs, (x))) + \ + agino_to_bytes(fs, XFS_INO_TO_AGINO(fs, (x)))) + +/* Superblock's LBA */ +#define XFS_SB_DADDR ((xfs_daddr_t)0) /* daddr in filesystem/ag */ + +/* Magic numbers */ +#define XFS_AGI_MAGIC "XAGI" +#define XFS_IBT_MAGIC "IABT" +#define XFS_DINODE_MAGIC "IN" + +#define XFS_DIR2_BLOCK_MAGIC 0x58443242U /* XD2B: single block dirs */ +#define XFS_DIR2_DATA_MAGIC 0x58...
2012 Nov 29
2
[LLVMdev] problem trying to write an LLVM register-allocation pass
I have a new problem: Register RBP is used in a function foo. (I am not allocating RBP to any virtual register, the instances of RBP in function foo are in the machine code when my register allocator starts.) Function foo calls function bar. Register RBP is not saved across the call, though it is live after the call. Function bar includes a virtual register. The code that I'm using to
2012 Dec 01
0
[LLVMdev] problem trying to write an LLVM register-allocation pass
...edef int __pid_t; typedef struct { int __val[2]; } __fsid_t; typedef long int __clock_t; typedef unsigned long int __rlim_t; typedef unsigned long int __rlim64_t; typedef unsigned int __id_t; typedef long int __time_t; typedef unsigned int __useconds_t; typedef long int __suseconds_t; typedef int __daddr_t; typedef long int __swblk_t; typedef int __key_t; typedef int __clockid_t; typedef void * __timer_t; typedef long int __blksize_t; typedef long int __blkcnt_t; typedef long int __blkcnt64_t; typedef unsigned long int __fsblkcnt_t; typedef unsigned long int __fsblkcnt64_t; typedef unsigned long int...