svn commit: r322160 - stable/9/sys/ofed/drivers/infiniband/hw/mlx4

Hans Petter Selasky hselasky at FreeBSD.org
Mon Aug 7 13:08:00 UTC 2017


Author: hselasky
Date: Mon Aug  7 13:07:58 2017
New Revision: 322160
URL: https://svnweb.freebsd.org/changeset/base/322160

Log:
  MFC r321780:
  Make sure on-stack buffer is properly aligned.
  
  Sponsored by:	Mellanox Technologies

Modified:
  stable/9/sys/ofed/drivers/infiniband/hw/mlx4/mad.c
Directory Properties:
  stable/9/sys/   (props changed)

Modified: stable/9/sys/ofed/drivers/infiniband/hw/mlx4/mad.c
==============================================================================
--- stable/9/sys/ofed/drivers/infiniband/hw/mlx4/mad.c	Mon Aug  7 13:06:03 2017	(r322159)
+++ stable/9/sys/ofed/drivers/infiniband/hw/mlx4/mad.c	Mon Aug  7 13:07:58 2017	(r322160)
@@ -963,7 +963,7 @@ static int iboe_process_mad(struct ib_device *ibdev, i
 	int err;
 	u32 counter_index = dev->counters[port_num - 1] & 0xffff;
 	u8 mode;
-	char				counter_buf[MLX4_IF_STAT_SZ(1)];
+	char				counter_buf[MLX4_IF_STAT_SZ(1)] __aligned(8);
 	union  mlx4_counter		*counter = (union mlx4_counter *)
 						   counter_buf;
 


More information about the svn-src-all mailing list