Lines Matching refs:item
24 static int item_depth(struct config_item * item) in item_depth() argument
26 struct config_item * p = item; in item_depth()
32 static int item_path_length(struct config_item * item) in item_path_length() argument
34 struct config_item * p = item; in item_path_length()
43 static void fill_item_path(struct config_item * item, char * buffer, int length) in fill_item_path() argument
48 for (p = item; p && !configfs_is_root(p); p = p->ci_parent) { in fill_item_path()
58 static int configfs_get_target_path(struct config_item *item, in configfs_get_target_path() argument
64 depth = item_depth(item); in configfs_get_target_path()
80 struct config_item *item, in create_link() argument
83 struct configfs_dirent *target_sd = item->ci_dentry->d_fsdata; in create_link()
104 ret = configfs_get_target_path(parent_item, item, body); in create_link()