Lines Matching defs:label
1752 char label[XFSLABEL_MAX + 1];
1758 memset(label, 0, sizeof(label));
1760 strncpy(label, sbp->sb_fname, XFSLABEL_MAX);
1763 if (copy_to_user(user_label, label, sizeof(label)))
1775 char label[XFSLABEL_MAX + 1];
1784 * (required) NULL character to test the incoming label length.
1785 * NB: The on disk label doesn't need to be null terminated.
1787 if (copy_from_user(label, newlabel, XFSLABEL_MAX + 1))
1789 len = strnlen(label, XFSLABEL_MAX + 1);
1799 memcpy(sbp->sb_fname, label, len);
1806 * update all backup supers (as xfs_db does for a label change), then
1809 * and userspace will see the newly-written label.