Lines Matching full:profile
2 #include "profile.h"
9 struct profile_ops *find_profile(const char *profile)
16 if (!strcmp(profile, ops->name))
25 int load_profile(const char *profile)
29 dprint(FD_PROFILE, "loading profile '%s'\n", profile);
31 ops = find_profile(profile);
34 log_err("fio: profile %s prep failed\n", profile);
41 log_err("fio: profile '%s' not found\n", profile);
68 dprint(FD_PROFILE, "register profile '%s'\n", ops->name);
73 add_opt_posval("profile", ops->name, ops->desc);
83 dprint(FD_PROFILE, "unregister profile '%s'\n", ops->name);
86 del_opt_posval("profile", ops->name);