Details
-
Bug
-
Resolution: Won't Fix
-
Minor
-
None
-
Lustre 2.5.0
-
3
-
12547
Description
In lprocfs_mdt_wr_evict_client(), it says evict client by nid not implemented:
static int lprocfs_mdt_wr_evict_client(struct file *file, const char *buffer,
unsigned long count, void *data)
{
...
if (strncmp(tmpbuf, "nid:", 4) != 0) {
count = lprocfs_wr_evict_client(file, buffer, count, data);
goto out;
}
CERROR("NOT implement evict client by nid %s\n", tmpbuf);
...
}
Is there a reason why evict_client by nid still denied ?
if (strncmp(tmpbuf, "nid:", 4) != 0) {
As i see above case came from times when evict_by_nid was not supported.