Lines Matching refs:dlm_comm

39 static struct dlm_comm *local_comm;
47 struct dlm_comm;
78 static ssize_t comm_nodeid_read(struct dlm_comm *cm, char *buf);
79 static ssize_t comm_nodeid_write(struct dlm_comm *cm, const char *buf,
81 static ssize_t comm_local_read(struct dlm_comm *cm, char *buf);
82 static ssize_t comm_local_write(struct dlm_comm *cm, const char *buf,
84 static ssize_t comm_addr_write(struct dlm_comm *cm, const char *buf,
86 static ssize_t comm_addr_list_read(struct dlm_comm *cm, char *buf);
229 ssize_t (*show)(struct dlm_comm *, char *);
230 ssize_t (*store)(struct dlm_comm *, const char *, size_t);
323 struct dlm_comm { struct
442 static struct dlm_comm *config_item_to_comm(struct config_item *i) in config_item_to_comm()
444 return i ? container_of(i, struct dlm_comm, item) : NULL; in config_item_to_comm()
587 struct dlm_comm *cm; in make_comm()
589 cm = kzalloc(sizeof(struct dlm_comm), GFP_NOFS); in make_comm()
607 struct dlm_comm *cm = config_item_to_comm(i); in drop_comm()
618 struct dlm_comm *cm = config_item_to_comm(i); in release_comm()
712 struct dlm_comm *cm = config_item_to_comm(i); in show_comm()
721 struct dlm_comm *cm = config_item_to_comm(i); in store_comm()
727 static ssize_t comm_nodeid_read(struct dlm_comm *cm, char *buf) in comm_nodeid_read()
732 static ssize_t comm_nodeid_write(struct dlm_comm *cm, const char *buf, in comm_nodeid_write()
742 static ssize_t comm_local_read(struct dlm_comm *cm, char *buf) in comm_local_read()
747 static ssize_t comm_local_write(struct dlm_comm *cm, const char *buf, in comm_local_write()
759 static ssize_t comm_addr_write(struct dlm_comm *cm, const char *buf, size_t len) in comm_addr_write()
786 static ssize_t comm_addr_list_read(struct dlm_comm *cm, char *buf) in comm_addr_list_read()
904 static struct dlm_comm *get_comm(int nodeid) in get_comm()
907 struct dlm_comm *cm = NULL; in get_comm()
931 static void put_comm(struct dlm_comm *cm) in put_comm()
986 struct dlm_comm *cm = get_comm(nodeid); in dlm_comm_seq()