Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 12 Nov 2015 09:52:37 +0000 (UTC)
From:      Hans Petter Selasky <hselasky@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r290709 - head/sys/dev/mlx5/mlx5_core
Message-ID:  <201511120952.tAC9qbtM069921@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: hselasky
Date: Thu Nov 12 09:52:37 2015
New Revision: 290709
URL: https://svnweb.freebsd.org/changeset/base/290709

Log:
  Compile fix for 32-bit platforms:
  - The Linux timers data field is "unsigned long".
  
  Sponsored by:	Mellanox Technologies
  MFC after:	2 weeks

Modified:
  head/sys/dev/mlx5/mlx5_core/mlx5_health.c

Modified: head/sys/dev/mlx5/mlx5_core/mlx5_health.c
==============================================================================
--- head/sys/dev/mlx5/mlx5_core/mlx5_health.c	Thu Nov 12 09:45:35 2015	(r290708)
+++ head/sys/dev/mlx5/mlx5_core/mlx5_health.c	Thu Nov 12 09:52:37 2015	(r290709)
@@ -115,7 +115,7 @@ static void print_health_info(struct mlx
 	printf("mlx5_core: INFO: ""ext_sync 0x%04x\n", read_be16(&h->ext_sync));
 }
 
-static void poll_health(uintptr_t data)
+static void poll_health(unsigned long data)
 {
 	struct mlx5_core_dev *dev = (struct mlx5_core_dev *)data;
 	struct mlx5_core_health *health = &dev->priv.health;
@@ -155,7 +155,7 @@ void mlx5_start_health_poll(struct mlx5_
 	health->health = &dev->iseg->health;
 	health->health_counter = &dev->iseg->health_counter;
 
-	setup_timer(&health->timer, poll_health, (uintptr_t)dev);
+	setup_timer(&health->timer, poll_health, (unsigned long)dev);
 	mod_timer(&health->timer,
 		  round_jiffies(jiffies + MLX5_HEALTH_POLL_INTERVAL));
 }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201511120952.tAC9qbtM069921>