mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 17:23:56 -06:00
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>
This commit is contained in:
parent
0f7fdd3475
commit
541dc0d47f
36 changed files with 259 additions and 259 deletions
10
hw/srp.h
10
hw/srp.h
|
@ -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 */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue