Revert "net: nfs: Correct the reply data buffer size"

This reverts commit 6279b49e6c.

This caused a bad data crc.

Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
Reported-by: Guillaume GARDET <guillaume.gardet@free.fr>
This commit is contained in:
Joe Hershberger 2016-09-09 13:01:24 -05:00
parent a73588fe48
commit 11e8ec96dc
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ struct rpc_t {
uint32_t verifier;
uint32_t v2;
uint32_t astatus;
uint32_t data[NFS_READ_SIZE / sizeof(uint32_t)];
uint32_t data[NFS_READ_SIZE];
} reply;
} u;
};