Lines Matching defs:node
81 * Allow the specified node ID to do direct DMA out and in of
82 * host memory. The card will disable this for all node when
153 void fw_node_event(struct fw_card *card, struct fw_node *node, int event);
183 * local node to this node. */
184 u8 max_depth:4; /* Maximum depth to any leaf node */
188 /* For serializing node topology into a list. */
197 static inline struct fw_node *fw_node_get(struct fw_node *node)
199 refcount_inc(&node->ref_count);
201 return node;
204 static inline void fw_node_put(struct fw_node *node)
206 if (refcount_dec_and_test(&node->ref_count))
207 kfree(node);