return 1;
 }
 
+static int nfs_map_numeric_to_string(__u32 id, char *buf, size_t buflen)
+{
+       return snprintf(buf, buflen, "%u", id);
+}
+
 #ifdef CONFIG_NFS_USE_NEW_IDMAPPER
 
 #include <linux/slab.h>
 
 int nfs_map_uid_to_name(struct nfs_client *clp, __u32 uid, char *buf, size_t buflen)
 {
-       return nfs_idmap_lookup_name(uid, "user", buf, buflen);
+       int ret;
+       ret = nfs_idmap_lookup_name(uid, "user", buf, buflen);
+       if (ret < 0)
+               ret = nfs_map_numeric_to_string(uid, buf, buflen);
+       return ret;
 }
 int nfs_map_gid_to_group(struct nfs_client *clp, __u32 gid, char *buf, size_t buflen)
 {
-       return nfs_idmap_lookup_name(gid, "group", buf, buflen);
+       int ret;
+
+       ret = nfs_idmap_lookup_name(gid, "group", buf, buflen);
+       if (ret < 0)
+               ret = nfs_map_numeric_to_string(gid, buf, buflen);
+       return ret;
 }
 
 #else  /* CONFIG_NFS_USE_NEW_IDMAPPER not defined */
 int nfs_map_uid_to_name(struct nfs_client *clp, __u32 uid, char *buf, size_t buflen)
 {
        struct idmap *idmap = clp->cl_idmap;
+       int ret;
 
-       return nfs_idmap_name(idmap, &idmap->idmap_user_hash, uid, buf);
+       ret = nfs_idmap_name(idmap, &idmap->idmap_user_hash, uid, buf);
+       if (ret < 0)
+               ret = nfs_map_numeric_to_string(uid, buf, buflen);
+       return ret;
 }
 int nfs_map_gid_to_group(struct nfs_client *clp, __u32 uid, char *buf, size_t buflen)
 {
        struct idmap *idmap = clp->cl_idmap;
+       int ret;
 
-       return nfs_idmap_name(idmap, &idmap->idmap_group_hash, uid, buf);
+       ret = nfs_idmap_name(idmap, &idmap->idmap_group_hash, uid, buf);
+       if (ret < 0)
+               ret = nfs_map_numeric_to_string(uid, buf, buflen);
+       return ret;
 }
 
 #endif /* CONFIG_NFS_USE_NEW_IDMAPPER */