mds: add " (blacklisted)" to session reject error string
Commit
dfd01d765304 ("blacklist -> blocklist") introduced a
regression for recover_session=clean mode of the kernel client.
Unfortunately, one of the ways it detects blocklisting is by
parsing the error string in the session reject message:
3320 if (err_str && strnstr(*p, "blacklisted", len))
3321 *blacklisted = true;
Add a suitable substring to restore the functionality. ceph-fuse
doesn't care, as it just logs this string.
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>