Displaying 3 results from an estimated 3 matches for "aligned_u64".
Did you mean:
__aligned_u64
2011 Nov 06
3
sys/types.h -> linux/types.h and __aligned_u64
When building klibc 1.5.25 against linux/master (ie. post 3.1) I'm seeing:
klibc/generated/include/linux/if_packet.h:176: error: expected
specifier-qualifier-list before '__aligned_u64'
which seems to come from upstream commits:
0d4691ce112be025019999df5f2a5e00c03f03c2 remotes/linux/master~90^2~408 (origin)
96c131842aab45b5d139d0bcb417796819f5ee92 remotes/linux/master~90^2~169
(change from aligned_u64 to __aligned_u64)
and collides with klibc/usr/include/sys/types.h
/* K...
2007 Jan 02
0
[PATCH 1/4] add scsi-target and IO_CMD_EPOLL_WAIT patches
...t_hdr {
++ uint16_t version;
++ uint16_t status;
++ uint16_t type;
++ uint16_t len;
++} __attribute__ ((aligned (sizeof(uint64_t))));
++
++struct tgt_event {
++ struct tgt_event_hdr hdr;
++
++ union {
++ /* user-> kernel */
++ struct {
++ int host_no;
++ uint32_t len;
++ int result;
++ aligned_u64 uaddr;
++ uint8_t rw;
++ aligned_u64 tag;
++ } cmd_rsp;
++ struct {
++ int host_no;
++ aligned_u64 mid;
++ int result;
++ } tsk_mgmt_rsp;
++
++
++ /* kernel -> user */
++ struct {
++ int host_no;
++ uint32_t data_len;
++ uint8_t scb[16];
++ uint8_t lun[8];
++ int attribu...
2011 Dec 04
0
[GIT PULL] klibc minor fixes
...7 files changed, 29 insertions(+), 23 deletions(-)
create mode 100644 usr/include/sys/file.h
Greg Thelen (2):
[klibc] ipconfig: check poll() return value
[klibc] vsscanf: remove unused variables
Maciej ?enczykowski (1):
[klibc] include: [sys/types.h] -> linux/types.h and __aligned_u64
maximilian attems (3):
[klibc] include: [sys/file.h] define flock(2) there
[klibc] include: [limits.h] define OPEN_MAX
[klibc] kbuild: add static to prototypes
Nothing really exciting there yet.
I should get my key signed next week, so soon can commit again.
We should talk about...