Lines Matching refs:data
195 * vfs_parse_monolithic_sep - Parse key[=val][,key[=val]]* mount data
197 * @data: The data to parse
200 * Parse a blob of data that's in key[=val][,key[=val]]* form with a custom
206 int vfs_parse_monolithic_sep(struct fs_context *fc, void *data,
209 char *options = data, *key;
246 * generic_parse_monolithic - Parse key[=val][,key[=val]]* mount data
248 * @data: The data to parse
250 * Parse a blob of data that's in key[=val][,key[=val]]* form. This can be
256 int generic_parse_monolithic(struct fs_context *fc, void *data)
258 return vfs_parse_monolithic_sep(fc, data, vfs_parse_comma_sep);
632 * Add monolithic mount data.
634 static int legacy_parse_monolithic(struct fs_context *fc, void *data)
643 ctx->legacy_data = data;
711 int parse_monolithic_mount_data(struct fs_context *fc, void *data)
719 return monolithic_mount_data(fc, data);