Lines Matching refs:item
22 static int item_depth(struct config_item * item) in item_depth() argument
24 struct config_item * p = item; in item_depth()
30 static int item_path_length(struct config_item * item) in item_path_length() argument
32 struct config_item * p = item; in item_path_length()
41 static void fill_item_path(struct config_item * item, char * buffer, int length) in fill_item_path() argument
46 for (p = item; p && !configfs_is_root(p); p = p->ci_parent) { in fill_item_path()
56 static int configfs_get_target_path(struct config_item *item, in configfs_get_target_path() argument
62 depth = item_depth(item); in configfs_get_target_path()
78 struct config_item *item, in create_link() argument
81 struct configfs_dirent *target_sd = item->ci_dentry->d_fsdata; in create_link()
102 ret = configfs_get_target_path(parent_item, item, body); in create_link()