diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2016-10-29 16:15:24 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-10-29 16:15:24 -0400 |
commit | efa563752c252ddc201bbe55980a4f815bdc039c (patch) | |
tree | 419e6cd7d9da49762a499fd3769d2759de9934bd /fs | |
parent | 2674235fd4293e0cc367dde8fcf658d17cadea5c (diff) | |
parent | a00052a296e54205cf238c75bd98d17d5d02a6db (diff) |
Merge tag 'upstream-4.9-rc3' of git://git.infradead.org/linux-ubifs
Pull ubi/ubifs fixes from Richard Weinberger:
"This contains fixes for issues in both UBI and UBIFS:
- A regression wrt overlayfs, introduced in -rc2.
- An UBI issue, found by Dan Carpenter's static checker"
* tag 'upstream-4.9-rc3' of git://git.infradead.org/linux-ubifs:
ubifs: Fix regression in ubifs_readdir()
ubi: fastmap: Fix add_vol() return value test in ubi_attach_fastmap()
Diffstat (limited to 'fs')
-rw-r--r-- | fs/ubifs/dir.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/fs/ubifs/dir.c b/fs/ubifs/dir.c index bd4a5e8ce441..ca16c5d7bab1 100644 --- a/fs/ubifs/dir.c +++ b/fs/ubifs/dir.c | |||
@@ -543,6 +543,14 @@ out: | |||
543 | 543 | ||
544 | if (err != -ENOENT) | 544 | if (err != -ENOENT) |
545 | ubifs_err(c, "cannot find next direntry, error %d", err); | 545 | ubifs_err(c, "cannot find next direntry, error %d", err); |
546 | else | ||
547 | /* | ||
548 | * -ENOENT is a non-fatal error in this context, the TNC uses | ||
549 | * it to indicate that the cursor moved past the current directory | ||
550 | * and readdir() has to stop. | ||
551 | */ | ||
552 | err = 0; | ||
553 | |||
546 | 554 | ||
547 | /* 2 is a special value indicating that there are no more direntries */ | 555 | /* 2 is a special value indicating that there are no more direntries */ |
548 | ctx->pos = 2; | 556 | ctx->pos = 2; |