From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-14.0 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PULL_REQUEST,MAILING_LIST_MULTI, MENTIONS_GIT_HOSTING,SPF_HELO_NONE,SPF_PASS,UNPARSEABLE_RELAY autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 8AF52C433E2 for ; Mon, 20 Jul 2020 15:14:36 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 716C122B4D for ; Mon, 20 Jul 2020 15:14:36 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726686AbgGTPOd convert rfc822-to-8bit (ORCPT ); Mon, 20 Jul 2020 11:14:33 -0400 Received: from bhuna.collabora.co.uk ([46.235.227.227]:56880 "EHLO bhuna.collabora.co.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725815AbgGTPOd (ORCPT ); Mon, 20 Jul 2020 11:14:33 -0400 Received: from [127.0.0.1] (localhost [127.0.0.1]) (Authenticated sender: krisman) with ESMTPSA id 50A1928B855 From: Gabriel Krisman Bertazi To: tytso@mit.edu Cc: linux-ext4@vger.kernel.org, linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [GIT PULL] Unicode patches for v5.9 Date: Mon, 20 Jul 2020 11:14:28 -0400 Message-ID: <87blkap6az.fsf@collabora.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8BIT Sender: linux-ext4-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org 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.9 for you to fetch changes up to c055c978bebf14dda7e72d89d7ed9c867b2e6382: unicode: Replace HTTP links with HTTPS ones (2020-07-08 14:06:53 -0400) ---------------------------------------------------------------- fs/unicode patches for v5.9 This includes 3 patches for the unicode system for inclusion into Linux v5.9: - A patch by Ricardo Cañuelo converting the unicode tests to kunit. - A patch from Gabriel exporting in sysfs the most recent utf-8 version available. - A patch from Gabriel fixing the build of the kunit part as a module. - A patch from Alexander updating documentation web links. ---------------------------------------------------------------- Alexander A. Klimov (1): unicode: Replace HTTP links with HTTPS ones Gabriel Krisman Bertazi (2): unicode: Expose available encodings in sysfs unicode: Allow building kunit test suite as a module 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/mkutf8data.c | 2 +- fs/unicode/utf8-core.c | 55 ++++++++ fs/unicode/utf8-norm.c | 2 +- fs/unicode/{utf8-selftest.c => utf8-test.c} | 199 +++++++++++++--------------- fs/unicode/utf8n.h | 4 + 8 files changed, 175 insertions(+), 114 deletions(-) create mode 100644 Documentation/ABI/testing/sysfs-fs-unicode rename fs/unicode/{utf8-selftest.c => utf8-test.c} (60%) -- Gabriel Krisman Bertazi