main.c (d18bb3e15201918b8d07e85a6e010ca5ed28dad5) | main.c (c0a6b5ecc5b7dd028c2921415ea036074a8f8b00) |
---|---|
1/* 2 * Copyright (c) 2006, 2007 Cisco Systems, Inc. All rights reserved. 3 * Copyright (c) 2007, 2008 Mellanox Technologies. All rights reserved. 4 * 5 * This software is available to you under a choice of one of two 6 * licenses. You may choose to be licensed under the terms of the GNU 7 * General Public License (GPL) Version 2, available from the file 8 * COPYING in the main directory of this source tree, or the --- 2563 unchanged lines hidden (view full) --- 2572}; 2573 2574static const struct ib_device_ops mlx4_ib_dev_wq_ops = { 2575 .create_rwq_ind_table = mlx4_ib_create_rwq_ind_table, 2576 .create_wq = mlx4_ib_create_wq, 2577 .destroy_rwq_ind_table = mlx4_ib_destroy_rwq_ind_table, 2578 .destroy_wq = mlx4_ib_destroy_wq, 2579 .modify_wq = mlx4_ib_modify_wq, | 1/* 2 * Copyright (c) 2006, 2007 Cisco Systems, Inc. All rights reserved. 3 * Copyright (c) 2007, 2008 Mellanox Technologies. All rights reserved. 4 * 5 * This software is available to you under a choice of one of two 6 * licenses. You may choose to be licensed under the terms of the GNU 7 * General Public License (GPL) Version 2, available from the file 8 * COPYING in the main directory of this source tree, or the --- 2563 unchanged lines hidden (view full) --- 2572}; 2573 2574static const struct ib_device_ops mlx4_ib_dev_wq_ops = { 2575 .create_rwq_ind_table = mlx4_ib_create_rwq_ind_table, 2576 .create_wq = mlx4_ib_create_wq, 2577 .destroy_rwq_ind_table = mlx4_ib_destroy_rwq_ind_table, 2578 .destroy_wq = mlx4_ib_destroy_wq, 2579 .modify_wq = mlx4_ib_modify_wq, |
2580 2581 INIT_RDMA_OBJ_SIZE(ib_rwq_ind_table, mlx4_ib_rwq_ind_table, 2582 ib_rwq_ind_tbl), |
|
2580}; 2581 2582static const struct ib_device_ops mlx4_ib_dev_mw_ops = { 2583 .alloc_mw = mlx4_ib_alloc_mw, 2584 .dealloc_mw = mlx4_ib_dealloc_mw, 2585 2586 INIT_RDMA_OBJ_SIZE(ib_mw, mlx4_ib_mw, ibmw), 2587}; --- 783 unchanged lines hidden --- | 2583}; 2584 2585static const struct ib_device_ops mlx4_ib_dev_mw_ops = { 2586 .alloc_mw = mlx4_ib_alloc_mw, 2587 .dealloc_mw = mlx4_ib_dealloc_mw, 2588 2589 INIT_RDMA_OBJ_SIZE(ib_mw, mlx4_ib_mw, ibmw), 2590}; --- 783 unchanged lines hidden --- |