Skip to content

Commit

Permalink
[media] as102: add __packed attribute to structs defined inside packe…
Browse files Browse the repository at this point in the history
…d structs

This patch fixes a regression in kernel 3.3 due to this patch:

http://patchwork.linuxtv.org/patch/8332/

That patch changes "#pragma pack(1)" with "__packed" attributes, but it is not
complete. In fact, in the as102 driver there are a lot of structs/unions
defined inside other structs/unions.
When the "__packed" attribute is applied only on the external struct, it will
not affect the internal struct definitions.
So the regression is fixed by specifiying the "__packed" attribute also on the
internal structs.

This patch should go into 3.3, as it fixes a regression introduced in the new
kernel version.

Signed-off-by: Gianluca Gennari <gennarone@gmail.com>
Signed-off-by: Ryley Angus <rangus@student.unimelb.edu.au>
Cc: stable@kernel.org # for v3.3
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Gianluca Gennari authored and Mauro Carvalho Chehab committed Mar 19, 2012
1 parent 962f8f6 commit abf9d00
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 42 deletions.
2 changes: 1 addition & 1 deletion drivers/staging/media/as102/as102_fw.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ struct as10x_fw_pkt_t {
union {
unsigned char request[2];
unsigned char length[2];
} u;
} __packed u;
struct as10x_raw_fw_pkt raw;
} __packed;

Expand Down
80 changes: 40 additions & 40 deletions drivers/staging/media/as102/as10x_cmd.h
Original file line number Diff line number Diff line change
Expand Up @@ -99,29 +99,29 @@ union as10x_turn_on {
struct {
/* request identifier */
uint16_t proc_id;
} req;
} __packed req;
/* response */
struct {
/* response identifier */
uint16_t proc_id;
/* error */
uint8_t error;
} rsp;
} __packed rsp;
} __packed;

union as10x_turn_off {
/* request */
struct {
/* request identifier */
uint16_t proc_id;
} req;
} __packed req;
/* response */
struct {
/* response identifier */
uint16_t proc_id;
/* error */
uint8_t err;
} rsp;
} __packed rsp;
} __packed;

union as10x_set_tune {
Expand All @@ -131,22 +131,22 @@ union as10x_set_tune {
uint16_t proc_id;
/* tune params */
struct as10x_tune_args args;
} req;
} __packed req;
/* response */
struct {
/* response identifier */
uint16_t proc_id;
/* response error */
uint8_t error;
} rsp;
} __packed rsp;
} __packed;

union as10x_get_tune_status {
/* request */
struct {
/* request identifier */
uint16_t proc_id;
} req;
} __packed req;
/* response */
struct {
/* response identifier */
Expand All @@ -155,15 +155,15 @@ union as10x_get_tune_status {
uint8_t error;
/* tune status */
struct as10x_tune_status sts;
} rsp;
} __packed rsp;
} __packed;

union as10x_get_tps {
/* request */
struct {
/* request identifier */
uint16_t proc_id;
} req;
} __packed req;
/* response */
struct {
/* response identifier */
Expand All @@ -172,22 +172,22 @@ union as10x_get_tps {
uint8_t error;
/* tps details */
struct as10x_tps tps;
} rsp;
} __packed rsp;
} __packed;

union as10x_common {
/* request */
struct {
/* request identifier */
uint16_t proc_id;
} req;
} __packed req;
/* response */
struct {
/* response identifier */
uint16_t proc_id;
/* response error */
uint8_t error;
} rsp;
} __packed rsp;
} __packed;

union as10x_add_pid_filter {
Expand All @@ -201,7 +201,7 @@ union as10x_add_pid_filter {
uint8_t stream_type;
/* PID index in filter table */
uint8_t idx;
} req;
} __packed req;
/* response */
struct {
/* response identifier */
Expand All @@ -210,7 +210,7 @@ union as10x_add_pid_filter {
uint8_t error;
/* Filter id */
uint8_t filter_id;
} rsp;
} __packed rsp;
} __packed;

union as10x_del_pid_filter {
Expand All @@ -220,52 +220,52 @@ union as10x_del_pid_filter {
uint16_t proc_id;
/* PID to remove */
uint16_t pid;
} req;
} __packed req;
/* response */
struct {
/* response identifier */
uint16_t proc_id;
/* response error */
uint8_t error;
} rsp;
} __packed rsp;
} __packed;

union as10x_start_streaming {
/* request */
struct {
/* request identifier */
uint16_t proc_id;
} req;
} __packed req;
/* response */
struct {
/* response identifier */
uint16_t proc_id;
/* error */
uint8_t error;
} rsp;
} __packed rsp;
} __packed;

union as10x_stop_streaming {
/* request */
struct {
/* request identifier */
uint16_t proc_id;
} req;
} __packed req;
/* response */
struct {
/* response identifier */
uint16_t proc_id;
/* error */
uint8_t error;
} rsp;
} __packed rsp;
} __packed;

union as10x_get_demod_stats {
/* request */
struct {
/* request identifier */
uint16_t proc_id;
} req;
} __packed req;
/* response */
struct {
/* response identifier */
Expand All @@ -274,15 +274,15 @@ union as10x_get_demod_stats {
uint8_t error;
/* demod stats */
struct as10x_demod_stats stats;
} rsp;
} __packed rsp;
} __packed;

union as10x_get_impulse_resp {
/* request */
struct {
/* request identifier */
uint16_t proc_id;
} req;
} __packed req;
/* response */
struct {
/* response identifier */
Expand All @@ -291,7 +291,7 @@ union as10x_get_impulse_resp {
uint8_t error;
/* impulse response ready */
uint8_t is_ready;
} rsp;
} __packed rsp;
} __packed;

union as10x_fw_context {
Expand All @@ -305,7 +305,7 @@ union as10x_fw_context {
uint16_t tag;
/* context request type */
uint16_t type;
} req;
} __packed req;
/* response */
struct {
/* response identifier */
Expand All @@ -316,7 +316,7 @@ union as10x_fw_context {
uint16_t type;
/* error */
uint8_t error;
} rsp;
} __packed rsp;
} __packed;

union as10x_set_register {
Expand All @@ -328,14 +328,14 @@ union as10x_set_register {
struct as10x_register_addr reg_addr;
/* register content */
struct as10x_register_value reg_val;
} req;
} __packed req;
/* response */
struct {
/* response identifier */
uint16_t proc_id;
/* error */
uint8_t error;
} rsp;
} __packed rsp;
} __packed;

union as10x_get_register {
Expand All @@ -345,7 +345,7 @@ union as10x_get_register {
uint16_t proc_id;
/* register description */
struct as10x_register_addr reg_addr;
} req;
} __packed req;
/* response */
struct {
/* response identifier */
Expand All @@ -354,7 +354,7 @@ union as10x_get_register {
uint8_t error;
/* register content */
struct as10x_register_value reg_val;
} rsp;
} __packed rsp;
} __packed;

union as10x_cfg_change_mode {
Expand All @@ -364,14 +364,14 @@ union as10x_cfg_change_mode {
uint16_t proc_id;
/* mode */
uint8_t mode;
} req;
} __packed req;
/* response */
struct {
/* response identifier */
uint16_t proc_id;
/* error */
uint8_t error;
} rsp;
} __packed rsp;
} __packed;

struct as10x_cmd_header_t {
Expand All @@ -394,7 +394,7 @@ union as10x_dump_memory {
struct as10x_register_addr reg_addr;
/* nb blocks to read */
uint16_t num_blocks;
} req;
} __packed req;
/* response */
struct {
/* response identifier */
Expand All @@ -408,8 +408,8 @@ union as10x_dump_memory {
uint8_t data8[DUMP_BLOCK_SIZE];
uint16_t data16[DUMP_BLOCK_SIZE / sizeof(uint16_t)];
uint32_t data32[DUMP_BLOCK_SIZE / sizeof(uint32_t)];
} u;
} rsp;
} __packed u;
} __packed rsp;
} __packed;

union as10x_dumplog_memory {
Expand All @@ -418,7 +418,7 @@ union as10x_dumplog_memory {
uint16_t proc_id;
/* dump memory type request */
uint8_t dump_req;
} req;
} __packed req;
struct {
/* request identifier */
uint16_t proc_id;
Expand All @@ -428,7 +428,7 @@ union as10x_dumplog_memory {
uint8_t dump_rsp;
/* dump data */
uint8_t data[DUMP_BLOCK_SIZE];
} rsp;
} __packed rsp;
} __packed;

union as10x_raw_data {
Expand All @@ -437,14 +437,14 @@ union as10x_raw_data {
uint16_t proc_id;
uint8_t data[64 - sizeof(struct as10x_cmd_header_t)
- 2 /* proc_id */];
} req;
} __packed req;
/* response */
struct {
uint16_t proc_id;
uint8_t error;
uint8_t data[64 - sizeof(struct as10x_cmd_header_t)
- 2 /* proc_id */ - 1 /* rc */];
} rsp;
} __packed rsp;
} __packed;

struct as10x_cmd_t {
Expand All @@ -469,7 +469,7 @@ struct as10x_cmd_t {
union as10x_dump_memory dump_memory;
union as10x_dumplog_memory dumplog_memory;
union as10x_raw_data raw_data;
} body;
} __packed body;
} __packed;

struct as10x_token_cmd_t {
Expand Down
2 changes: 1 addition & 1 deletion drivers/staging/media/as102/as10x_types.h
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ struct as10x_register_value {
uint8_t value8; /* 8 bit value */
uint16_t value16; /* 16 bit value */
uint32_t value32; /* 32 bit value */
} u;
} __packed u;
} __packed;

struct as10x_register_addr {
Expand Down

0 comments on commit abf9d00

Please sign in to comment.