diff options
author | Stefan Weil <weil@mail.berlios.de> | 2011-08-31 12:38:01 +0200 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2011-09-03 10:45:59 +0000 |
commit | 541dc0d47f10973c241e9955afc2aefc96adec51 (patch) | |
tree | 33d3224319ba8d33738cf5d2073f62687f1352c7 /hw/srp.h | |
parent | 0f7fdd347514ea97b24f5f658f3ae31f9b078397 (diff) |
Use new macro QEMU_PACKED for packed structures
Most changes were made using these commands:
git grep -la '__attribute__((packed))'|xargs perl -pi -e 's/__attribute__\(\(packed\)\)/QEMU_PACKED/'
git grep -la '__attribute__ ((packed))'|xargs perl -pi -e 's/__attribute__ \(\(packed\)\)/QEMU_PACKED/'
git grep -la '__attribute__((__packed__))'|xargs perl -pi -e 's/__attribute__\(\(__packed__\)\)/QEMU_PACKED/'
git grep -la '__attribute__ ((__packed__))'|xargs perl -pi -e 's/__attribute__ \(\(__packed__\)\)/QEMU_PACKED/'
git grep -la '__attribute((packed))'|xargs perl -pi -e 's/__attribute\(\(packed\)\)/QEMU_PACKED/'
Whitespace in linux-user/syscall_defs.h was fixed manually
to avoid warnings from scripts/checkpatch.pl.
Manual changes were also applied to hw/pc.c.
I did not fix indentation with tabs in block/vvfat.c.
The patch will show 4 errors with scripts/checkpatch.pl.
Signed-off-by: Stefan Weil <weil@mail.berlios.de>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/srp.h')
-rw-r--r-- | hw/srp.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -106,7 +106,7 @@ struct srp_indirect_buf { struct srp_direct_buf table_desc; uint32_t len; struct srp_direct_buf desc_list[0]; -} __attribute__((packed)); +} QEMU_PACKED; enum { SRP_MULTICHAN_SINGLE = 0, @@ -141,7 +141,7 @@ struct srp_login_rsp { uint16_t buf_fmt; uint8_t rsp_flags; uint8_t reserved2[25]; -} __attribute__((packed)); +} QEMU_PACKED; struct srp_login_rej { uint8_t opcode; @@ -177,7 +177,7 @@ struct srp_tsk_mgmt { uint8_t reserved1[6]; uint64_t tag; uint8_t reserved2[4]; - uint64_t lun __attribute__((packed)); + uint64_t lun QEMU_PACKED; uint8_t reserved3[2]; uint8_t tsk_mgmt_func; uint8_t reserved4; @@ -198,7 +198,7 @@ struct srp_cmd { uint8_t data_in_desc_cnt; uint64_t tag; uint8_t reserved2[4]; - uint64_t lun __attribute__((packed)); + uint64_t lun QEMU_PACKED; uint8_t reserved3; uint8_t task_attr; uint8_t reserved4; @@ -235,6 +235,6 @@ struct srp_rsp { uint32_t sense_data_len; uint32_t resp_data_len; uint8_t data[0]; -} __attribute__((packed)); +} QEMU_PACKED; #endif /* SCSI_SRP_H */ |