Lines Matching defs:label
1960 char label[XFSLABEL_MAX + 1];
1966 memset(label, 0, sizeof(label));
1968 strncpy(label, sbp->sb_fname, XFSLABEL_MAX);
1971 if (copy_to_user(user_label, label, sizeof(label)))
1983 char label[XFSLABEL_MAX + 1];
1992 * (required) NULL character to test the incoming label length.
1993 * NB: The on disk label doesn't need to be null terminated.
1995 if (copy_from_user(label, newlabel, XFSLABEL_MAX + 1))
1997 len = strnlen(label, XFSLABEL_MAX + 1);
2007 memcpy(sbp->sb_fname, label, len);
2014 * update all backup supers (as xfs_db does for a label change), then
2017 * and userspace will see the newly-written label.