diff options
Diffstat (limited to 'fs/nfsd/state.h')
-rw-r--r-- | fs/nfsd/state.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/nfsd/state.h b/fs/nfsd/state.h index a06f55bd38b6..c425717715f6 100644 --- a/fs/nfsd/state.h +++ b/fs/nfsd/state.h | |||
@@ -293,6 +293,9 @@ static inline void | |||
293 | update_stateid(stateid_t *stateid) | 293 | update_stateid(stateid_t *stateid) |
294 | { | 294 | { |
295 | stateid->si_generation++; | 295 | stateid->si_generation++; |
296 | /* Wraparound recommendation from 3530bis-13 9.1.3.2: */ | ||
297 | if (stateid->si_generation == 0) | ||
298 | stateid->si_generation = 1; | ||
296 | } | 299 | } |
297 | 300 | ||
298 | /* A reasonable value for REPLAY_ISIZE was estimated as follows: | 301 | /* A reasonable value for REPLAY_ISIZE was estimated as follows: |