Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Wilck <mwilck@suse.com>
  • Loading branch information
mwilck committed Jul 18, 2024
1 parent e0d873c commit 8f90a36
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/actions/spelling/patterns.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
\bdmmp_pgs\b
\bdmmp_mpath_kdev_name_get\b
\bfast_io_fail_tmo\b
\blibmp_mapinfo\b
\bLimitRTPRIO=?\b
\bmax_fds\b
\bmissing_uev_wait_timeout\b
Expand Down Expand Up @@ -94,12 +95,15 @@
\buxsock_timeout\b

# Other
\b-fexceptions\b
\bTutf8\b
\bUTF-8\b
\bCLARiiON\b
\bGPLv2\b
\bHBAs\b
\bSANtricity\b
\bVTrak\b
\bXSG1\b



30 changes: 30 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,35 @@
# multipath-tools Release Notes

## multipath-tools 0.9.x (in preparation)

### User-Visible Changes

* Add hardware defaults for Huawei storage arrays and XSG1 vendors

### Other major changes

* Refactored a significant part of the libmultipath / libdevmapper interface.
All functions that retrieve information about DM maps have been converted
to use just one worker function, libmp_mapinfo(). This reduces code size
while providing more flexibility and efficiency (less device-mapper ioctls).
Also, cleanup attributes are used consistently in the libdevmapper-related code.
* Made map removal more efficient by avoiding unnecessary recursion.

### Bug fixes

* Fixed bug that caused queueing to be always disabled if flushing a map failed
(bug introduced in 0.9.8).
* Fixed failure to remove maps even with `deferred_remove` (bug introduced in 0.9.9).

### Other

* Use `-fexceptions` during compilation to make sure cleanup code is executed
when threads are cancelled
* Fixed CI for ARM/v7
* Removde hardcoded paths and make them configurable instead.
This should improve compatibility e.g. with NixOS.
* Fixed directio CI test for real devices, run more "real" tests in CI

## multipath-tools 0.9.9, 2024/05

### Important note
Expand Down

1 comment on commit 8f90a36

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@check-spelling-bot Report

🔴 Please review

See the 📜action log or 📝 job summary for details.

Unrecognized words (3)

fexceptions
ioctls
Removde

Previously acknowledged words that are now absent sdc 🫥
To accept these unrecognized words as correct and remove the previously acknowledged and now absent words, you could run the following commands

... in a clone of the git@github.com:openSUSE/multipath-tools.git repository
on the queue branch (ℹ️ how do I use this?):

curl -s -S -L 'https://raw.githubusercontent.com/check-spelling/check-spelling/main/apply.pl' |
perl - 'https://github.com/openSUSE/multipath-tools/actions/runs/9995506294/attempts/1'
Available 📚 dictionaries could cover words (expected and unrecognized) not in the 📘 dictionary

This includes both expected items (252) from .github/actions/spelling/expect.txt and unrecognized words (3)

Dictionary Entries Covers Uniquely
cspell:php/dict/php.txt 1689 13 3
cspell:node/dict/node.txt 891 14 2
cspell:python/src/python/python-lib.txt 2417 10 1
cspell:golang/dict/go.txt 2099 7 1
cspell:k8s/dict/k8s.txt 153 6 1

Consider adding them (in .github/workflows/spelling.yml) for uses: check-spelling/check-spelling@main in its with:

      with:
        extra_dictionaries:
          cspell:php/dict/php.txt
          cspell:node/dict/node.txt
          cspell:python/src/python/python-lib.txt
          cspell:golang/dict/go.txt
          cspell:k8s/dict/k8s.txt

To stop checking additional dictionaries, add (in .github/workflows/spelling.yml) for uses: check-spelling/check-spelling@main in its with:

check_extra_dictionaries: ''

Please sign in to comment.