Symbol: ntb_client
drivers/ntb/core.c
266
struct ntb_client *client;
drivers/ntb/core.c
283
struct ntb_client *client;
drivers/ntb/core.c
78
int __ntb_register_client(struct ntb_client *client, struct module *mod,
drivers/ntb/core.c
95
void ntb_unregister_client(struct ntb_client *client)
drivers/ntb/ntb_transport.c
1234
static int ntb_transport_probe(struct ntb_client *self, struct ntb_dev *ndev)
drivers/ntb/ntb_transport.c
1395
static void ntb_transport_free(struct ntb_client *self, struct ntb_dev *ndev)
drivers/ntb/ntb_transport.c
2525
static struct ntb_client ntb_transport_client = {
drivers/ntb/ntb_transport.c
293
static struct ntb_client ntb_transport_client;
drivers/ntb/test/ntb_msi_test.c
319
static int ntb_msit_probe(struct ntb_client *client, struct ntb_dev *ntb)
drivers/ntb/test/ntb_msi_test.c
388
static void ntb_msit_remove(struct ntb_client *client, struct ntb_dev *ntb)
drivers/ntb/test/ntb_msi_test.c
404
static struct ntb_client ntb_msit_client = {
drivers/ntb/test/ntb_perf.c
1482
static int perf_probe(struct ntb_client *client, struct ntb_dev *ntb)
drivers/ntb/test/ntb_perf.c
1510
static void perf_remove(struct ntb_client *client, struct ntb_dev *ntb)
drivers/ntb/test/ntb_perf.c
1521
static struct ntb_client perf_client = {
drivers/ntb/test/ntb_pingpong.c
366
static int pp_probe(struct ntb_client *client, struct ntb_dev *ntb)
drivers/ntb/test/ntb_pingpong.c
394
static void pp_remove(struct ntb_client *client, struct ntb_dev *ntb)
drivers/ntb/test/ntb_pingpong.c
405
static struct ntb_client pp_client = {
drivers/ntb/test/ntb_tool.c
1605
static int tool_probe(struct ntb_client *self, struct ntb_dev *ntb)
drivers/ntb/test/ntb_tool.c
1647
static void tool_remove(struct ntb_client *self, struct ntb_dev *ntb)
drivers/ntb/test/ntb_tool.c
1660
static struct ntb_client tool_client = {
include/linux/ntb.h
174
int (*probe)(struct ntb_client *client, struct ntb_dev *ntb);
include/linux/ntb.h
175
void (*remove)(struct ntb_client *client, struct ntb_dev *ntb);
include/linux/ntb.h
406
#define drv_ntb_client(__drv) container_of((__drv), struct ntb_client, drv)
include/linux/ntb.h
451
int __ntb_register_client(struct ntb_client *client, struct module *mod,
include/linux/ntb.h
462
void ntb_unregister_client(struct ntb_client *client);
include/linux/ntb.h
63
struct ntb_client;