Commit e54f8188 authored by Roland Dreier's avatar Roland Dreier

IB: Convert kmem_cache_t -> struct kmem_cache

Signed-off-by: default avatarRoland Dreier <rolandd@cisco.com>
parent 53533e16
...@@ -46,7 +46,7 @@ MODULE_DESCRIPTION("kernel IB MAD API"); ...@@ -46,7 +46,7 @@ MODULE_DESCRIPTION("kernel IB MAD API");
MODULE_AUTHOR("Hal Rosenstock"); MODULE_AUTHOR("Hal Rosenstock");
MODULE_AUTHOR("Sean Hefty"); MODULE_AUTHOR("Sean Hefty");
static kmem_cache_t *ib_mad_cache; static struct kmem_cache *ib_mad_cache;
static struct list_head ib_mad_port_list; static struct list_head ib_mad_port_list;
static u32 ib_mad_client_id = 0; static u32 ib_mad_client_id = 0;
......
...@@ -302,7 +302,7 @@ struct c2_dev { ...@@ -302,7 +302,7 @@ struct c2_dev {
unsigned long pa; /* PA device memory */ unsigned long pa; /* PA device memory */
void **qptr_array; void **qptr_array;
kmem_cache_t *host_msg_cache; struct kmem_cache *host_msg_cache;
struct list_head cca_link; /* adapter list */ struct list_head cca_link; /* adapter list */
struct list_head eh_wakeup_list; /* event wakeup list */ struct list_head eh_wakeup_list; /* event wakeup list */
......
...@@ -283,7 +283,7 @@ struct iser_global { ...@@ -283,7 +283,7 @@ struct iser_global {
struct mutex connlist_mutex; struct mutex connlist_mutex;
struct list_head connlist; /* all iSER IB connections */ struct list_head connlist; /* all iSER IB connections */
kmem_cache_t *desc_cache; struct kmem_cache *desc_cache;
}; };
extern struct iser_global ig; extern struct iser_global ig;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment