Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 5203
b: refs/heads/master
c: c183a4c
h: refs/heads/master
i:
  5201: 6975578
  5199: 2b3592c
v: v3
  • Loading branch information
Hal Rosenstock authored and Linus Torvalds committed Jul 27, 2005
1 parent 71712d2 commit 99b084f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 896e5518da74f9d20db8163526014fba16b1f2b4
refs/heads/master: c183a4c33528d17cde0dcb093ae4248d8cb8f649
7 changes: 3 additions & 4 deletions trunk/drivers/infiniband/core/fmr_pool.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/*
* Copyright (c) 2004 Topspin Communications. All rights reserved.
* Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
*
* This software is available to you under a choice of one of two
* licenses. You may choose to be licensed under the terms of the GNU
Expand Down Expand Up @@ -29,7 +30,7 @@
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
* $Id: fmr_pool.c 1349 2004-12-16 21:09:43Z roland $
* $Id: fmr_pool.c 2730 2005-06-28 16:43:03Z sean.hefty $
*/

#include <linux/errno.h>
Expand Down Expand Up @@ -329,7 +330,7 @@ EXPORT_SYMBOL(ib_create_fmr_pool);
*
* Destroy an FMR pool and free all associated resources.
*/
int ib_destroy_fmr_pool(struct ib_fmr_pool *pool)
void ib_destroy_fmr_pool(struct ib_fmr_pool *pool)
{
struct ib_pool_fmr *fmr;
struct ib_pool_fmr *tmp;
Expand All @@ -352,8 +353,6 @@ int ib_destroy_fmr_pool(struct ib_fmr_pool *pool)

kfree(pool->cache_bucket);
kfree(pool);

return 0;
}
EXPORT_SYMBOL(ib_destroy_fmr_pool);

Expand Down
5 changes: 3 additions & 2 deletions trunk/drivers/infiniband/include/ib_fmr_pool.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/*
* Copyright (c) 2004 Topspin Corporation. All rights reserved.
* Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
*
* This software is available to you under a choice of one of two
* licenses. You may choose to be licensed under the terms of the GNU
Expand Down Expand Up @@ -29,7 +30,7 @@
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
* $Id: ib_fmr_pool.h 1349 2004-12-16 21:09:43Z roland $
* $Id: ib_fmr_pool.h 2730 2005-06-28 16:43:03Z sean.hefty $
*/

#if !defined(IB_FMR_POOL_H)
Expand Down Expand Up @@ -78,7 +79,7 @@ struct ib_pool_fmr {
struct ib_fmr_pool *ib_create_fmr_pool(struct ib_pd *pd,
struct ib_fmr_pool_param *params);

int ib_destroy_fmr_pool(struct ib_fmr_pool *pool);
void ib_destroy_fmr_pool(struct ib_fmr_pool *pool);

int ib_flush_fmr_pool(struct ib_fmr_pool *pool);

Expand Down

0 comments on commit 99b084f

Please sign in to comment.