myri10ge: properly align scratch buffers
Properly align scratch buffers when making boot commands. Signed-off-by: Brice Goglin <brice@myri.com> Signed-off-by: Andrew Gallatin <gallatin@myri.com> Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
This commit is contained in:
committed by
Jeff Garzik
parent
d93ca2a453
commit
f8fd57c111
@@ -443,7 +443,7 @@ abort:
|
|||||||
static void myri10ge_dummy_rdma(struct myri10ge_priv *mgp, int enable)
|
static void myri10ge_dummy_rdma(struct myri10ge_priv *mgp, int enable)
|
||||||
{
|
{
|
||||||
char __iomem *submit;
|
char __iomem *submit;
|
||||||
__be32 buf[16];
|
__be32 buf[16] __attribute__ ((__aligned__(8)));
|
||||||
u32 dma_low, dma_high;
|
u32 dma_low, dma_high;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
@@ -613,7 +613,7 @@ static int myri10ge_adopt_running_firmware(struct myri10ge_priv *mgp)
|
|||||||
static int myri10ge_load_firmware(struct myri10ge_priv *mgp)
|
static int myri10ge_load_firmware(struct myri10ge_priv *mgp)
|
||||||
{
|
{
|
||||||
char __iomem *submit;
|
char __iomem *submit;
|
||||||
__be32 buf[16];
|
__be32 buf[16] __attribute__ ((__aligned__(8)));
|
||||||
u32 dma_low, dma_high, size;
|
u32 dma_low, dma_high, size;
|
||||||
int status, i;
|
int status, i;
|
||||||
struct myri10ge_cmd cmd;
|
struct myri10ge_cmd cmd;
|
||||||
|
Reference in New Issue
Block a user