mbox series

[GIT,PULL] Unicode updates for v5.8

Message ID 85a725f0xr.fsf@collabora.com
State Not Applicable
Headers show
Series [GIT,PULL] Unicode updates for v5.8 | expand

Pull-request

git://git.kernel.org/pub/scm/linux/kernel/git/krisman/unicode.git tags/unicode-next-v5.8

Message

Gabriel Krisman Bertazi May 18, 2020, 8:22 p.m. UTC
The following changes since commit 9c94b39560c3a013de5886ea21ef1eaf21840cb9:

  Merge tag 'ext4_for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4 (2020-04-05 10:54:03 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/krisman/unicode.git tags/unicode-next-v5.8

for you to fetch changes up to cfeb007a96b15cafe1b8cc7aa8d43da77a97b7ae:

  unicode: Expose available encodings in sysfs (2020-05-18 15:07:13 -0400)

----------------------------------------------------------------
fs/unicode patches for v5.8

This includes two patches for the unicode system for inclusion into
Linux v5.8:

  - A patch from Gabriel exporting in sysfs the most recent utf-8
  version available

  - A patch by Ricardo Cañuelo converting the unicode tests to kunit.

----------------------------------------------------------------
Gabriel Krisman Bertazi (1):
      unicode: Expose available encodings in sysfs

Ricardo Cañuelo (1):
      unicode: implement utf8 unit tests as a KUnit test suite.

 Documentation/ABI/testing/sysfs-fs-unicode  |   6 +
 fs/unicode/Kconfig                          |  19 ++-
 fs/unicode/Makefile                         |   2 +-
 fs/unicode/utf8-core.c                      |  55 ++++++++
 fs/unicode/{utf8-selftest.c => utf8-test.c} | 199 +++++++++++++---------------
 fs/unicode/utf8n.h                          |   4 +
 6 files changed, 173 insertions(+), 112 deletions(-)
 create mode 100644 Documentation/ABI/testing/sysfs-fs-unicode
 rename fs/unicode/{utf8-selftest.c => utf8-test.c} (60%)

Comments

Gabriel Krisman Bertazi May 19, 2020, 5:09 a.m. UTC | #1
Gabriel Krisman Bertazi <krisman@collabora.com> writes:

> The following changes since commit 9c94b39560c3a013de5886ea21ef1eaf21840cb9:
>
>   Merge tag 'ext4_for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4 (2020-04-05 10:54:03 -0700)
>
> are available in the Git repository at:
>
>   git://git.kernel.org/pub/scm/linux/kernel/git/krisman/unicode.git tags/unicode-next-v5.8
>
> for you to fetch changes up to cfeb007a96b15cafe1b8cc7aa8d43da77a97b7ae:
>
>   unicode: Expose available encodings in sysfs (2020-05-18 15:07:13 -0400)
>

Ted,

I just found that the patch converting the utf8 selftests to kunit
breaks the allmodconfig build, since kunit itself started to support
module builds recently.  I just submitted a patch in linux-ext4 that
fixes this, and if there is no concerns, I will get you a new pull
request with the fix included.

Sorry for the noise.