mirror of
https://github.com/koverstreet/bcachefs.git
synced 2026-04-09 05:14:23 +08:00
No description
- C 97.4%
- Assembly 1%
- Shell 0.6%
- Python 0.3%
- Makefile 0.3%
- Other 0.2%
bch2_str_hash_repair_key() tries to insert the key at its correct hash position. If the insert finds an existing entry (dup), bch2_hash_set_or_get_in_snapshot() returns it — but the code fell through to return 0 without handling the dup. This caused fsck to report "fixing" hash table errors without actually fixing them: the old entry at the wrong position survived, and the dup at the correct position was silently ignored. Add the missing else branch to call str_hash_dup_entries() when the insert attempt discovers a duplicate. Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev> |
||
|---|---|---|
| arch | ||
| block | ||
| certs | ||
| crypto | ||
| Documentation | ||
| drivers | ||
| fs | ||
| include | ||
| init | ||
| io_uring | ||
| ipc | ||
| kernel | ||
| lib | ||
| LICENSES | ||
| mm | ||
| net | ||
| rust | ||
| samples | ||
| scripts | ||
| security | ||
| sound | ||
| tools | ||
| usr | ||
| virt | ||
| .clang-format | ||
| .clippy.toml | ||
| .cocciconfig | ||
| .editorconfig | ||
| .get_maintainer.ignore | ||
| .gitattributes | ||
| .gitignore | ||
| .mailmap | ||
| .pylintrc | ||
| .rustfmt.toml | ||
| COPYING | ||
| CREDITS | ||
| Kbuild | ||
| Kconfig | ||
| MAINTAINERS | ||
| Makefile | ||
| README | ||
Linux kernel
============
There are several guides for kernel developers and users. These guides can
be rendered in a number of formats, like HTML and PDF. Please read
Documentation/admin-guide/README.rst first.
In order to build the documentation, use ``make htmldocs`` or
``make pdfdocs``. The formatted documentation can also be read online at:
https://www.kernel.org/doc/html/latest/
There are various text files in the Documentation/ subdirectory,
several of them using the reStructuredText markup notation.
Please read the Documentation/process/changes.rst file, as it contains the
requirements for building and running the kernel, and information about
the problems which may result by upgrading your kernel.