Fix: remove padding field after variable sized array
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Thu, 10 May 2012 18:31:28 +0000 (14:31 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Thu, 10 May 2012 18:32:09 +0000 (14:32 -0400)
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
libringbuffer/frontend_types.h

index 37fabad39c5b87b019ba2a55c8621592dfa7efa3..b6b34470ce28447b8f6dea168369078ec5a608ff 100644 (file)
@@ -46,7 +46,6 @@
 enum switch_mode { SWITCH_ACTIVE, SWITCH_FLUSH };
 
 /* channel: collection of per-cpu ring buffers. */
-#define RB_CHANNEL_PADDING     64
 struct channel {
        int record_disabled;
        unsigned long commit_count_mask;        /*
@@ -61,12 +60,12 @@ struct channel {
        //wait_queue_head_t read_wait;          /* reader wait queue */
        int finalized;                          /* Has channel been finalized */
        size_t priv_data_offset;
+       /* Note: padding field is missing */
        /*
         * Associated backend contains a variable-length array. Needs to
         * be last member.
         */
        struct channel_backend backend;         /* Associated backend */
-       char padding[RB_CHANNEL_PADDING];
 } __attribute__((aligned(CAA_CACHE_LINE_SIZE)));
 
 /* Per-subbuffer commit counters used on the hot path */
This page took 0.024746 seconds and 4 git commands to generate.