diff options
Diffstat (limited to 'fs/nfs/nfs4xdr.c')
-rw-r--r-- | fs/nfs/nfs4xdr.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/fs/nfs/nfs4xdr.c b/fs/nfs/nfs4xdr.c index 1e5d68e36e07..7131c761d85c 100644 --- a/fs/nfs/nfs4xdr.c +++ b/fs/nfs/nfs4xdr.c | |||
@@ -3582,6 +3582,24 @@ static int decode_attr_time_metadata(struct xdr_stream *xdr, uint32_t *bitmap, s | |||
3582 | return status; | 3582 | return status; |
3583 | } | 3583 | } |
3584 | 3584 | ||
3585 | static int decode_attr_time_delta(struct xdr_stream *xdr, uint32_t *bitmap, | ||
3586 | struct timespec *time) | ||
3587 | { | ||
3588 | int status = 0; | ||
3589 | |||
3590 | time->tv_sec = 0; | ||
3591 | time->tv_nsec = 0; | ||
3592 | if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_DELTA - 1U))) | ||
3593 | return -EIO; | ||
3594 | if (likely(bitmap[1] & FATTR4_WORD1_TIME_DELTA)) { | ||
3595 | status = decode_attr_time(xdr, time); | ||
3596 | bitmap[1] &= ~FATTR4_WORD1_TIME_DELTA; | ||
3597 | } | ||
3598 | dprintk("%s: time_delta=%ld %ld\n", __func__, (long)time->tv_sec, | ||
3599 | (long)time->tv_nsec); | ||
3600 | return status; | ||
3601 | } | ||
3602 | |||
3585 | static int decode_attr_time_modify(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec *time) | 3603 | static int decode_attr_time_modify(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec *time) |
3586 | { | 3604 | { |
3587 | int status = 0; | 3605 | int status = 0; |
@@ -3982,6 +4000,9 @@ static int decode_fsinfo(struct xdr_stream *xdr, struct nfs_fsinfo *fsinfo) | |||
3982 | if ((status = decode_attr_maxwrite(xdr, bitmap, &fsinfo->wtmax)) != 0) | 4000 | if ((status = decode_attr_maxwrite(xdr, bitmap, &fsinfo->wtmax)) != 0) |
3983 | goto xdr_error; | 4001 | goto xdr_error; |
3984 | fsinfo->wtpref = fsinfo->wtmax; | 4002 | fsinfo->wtpref = fsinfo->wtmax; |
4003 | status = decode_attr_time_delta(xdr, bitmap, &fsinfo->time_delta); | ||
4004 | if (status != 0) | ||
4005 | goto xdr_error; | ||
3985 | 4006 | ||
3986 | status = verify_attr_len(xdr, savep, attrlen); | 4007 | status = verify_attr_len(xdr, savep, attrlen); |
3987 | xdr_error: | 4008 | xdr_error: |