diff options
| author | David Howells <dhowells@redhat.com> | 2006-11-22 14:57:56 +0000 | 
|---|---|---|
| committer | David Howells <dhowells@redhat.com> | 2006-11-22 14:57:56 +0000 | 
| commit | c4028958b6ecad064b1a6303a6a5906d4fe48d73 (patch) | |
| tree | 1c4c89652c62a75da09f9b9442012007e4ac6250 /drivers/infiniband/core/sa_query.c | |
| parent | 65f27f38446e1976cc98fd3004b110fedcddd189 (diff) | |
| download | olio-linux-3.10-c4028958b6ecad064b1a6303a6a5906d4fe48d73.tar.xz olio-linux-3.10-c4028958b6ecad064b1a6303a6a5906d4fe48d73.zip  | |
WorkStruct: make allyesconfig
Fix up for make allyesconfig.
Signed-Off-By: David Howells <dhowells@redhat.com>
Diffstat (limited to 'drivers/infiniband/core/sa_query.c')
| -rw-r--r-- | drivers/infiniband/core/sa_query.c | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/infiniband/core/sa_query.c b/drivers/infiniband/core/sa_query.c index 1706d3c7e95..e45afba7534 100644 --- a/drivers/infiniband/core/sa_query.c +++ b/drivers/infiniband/core/sa_query.c @@ -360,9 +360,10 @@ static void free_sm_ah(struct kref *kref)  	kfree(sm_ah);  } -static void update_sm_ah(void *port_ptr) +static void update_sm_ah(struct work_struct *work)  { -	struct ib_sa_port *port = port_ptr; +	struct ib_sa_port *port = +		container_of(work, struct ib_sa_port, update_task);  	struct ib_sa_sm_ah *new_ah, *old_ah;  	struct ib_port_attr port_attr;  	struct ib_ah_attr   ah_attr; @@ -992,8 +993,7 @@ static void ib_sa_add_one(struct ib_device *device)  		if (IS_ERR(sa_dev->port[i].agent))  			goto err; -		INIT_WORK(&sa_dev->port[i].update_task, -			  update_sm_ah, &sa_dev->port[i]); +		INIT_WORK(&sa_dev->port[i].update_task, update_sm_ah);  	}  	ib_set_client_data(device, &sa_client, sa_dev); @@ -1010,7 +1010,7 @@ static void ib_sa_add_one(struct ib_device *device)  		goto err;  	for (i = 0; i <= e - s; ++i) -		update_sm_ah(&sa_dev->port[i]); +		update_sm_ah(&sa_dev->port[i].update_task);  	return;  |