Received: by 2002:a05:6a10:9848:0:0:0:0 with SMTP id x8csp532811pxf; Thu, 18 Mar 2021 06:35:07 -0700 (PDT) X-Google-Smtp-Source: ABdhPJyuZXmOI0uqYNUCvJLfuB30yk8mZgTU8gjiB4T7VDpch/edOlY5WBCPsamtZ0JWowEUxUwu X-Received: by 2002:aa7:c857:: with SMTP id g23mr3761649edt.86.1616074507522; Thu, 18 Mar 2021 06:35:07 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1616074507; cv=none; d=google.com; s=arc-20160816; b=K9bRlHkLKadTZckABrIEcIOWmyGNGLf8hwGAX9vrUvXJU/n6rd2skE+mY7nwhT22zD +gz7NUIc8Wt60wBgWleCURSxa5KuBzGWUnS1sk4KEdpM8X9Z6ZqyKAOyVewGh9Fq3fXH 48wn/T/myNDe7liu6ETzQ2T1j8Dey1SufuDC3xHKnwOc29wB3uW88HakY1uvYBvzDvZR j2nkgeT6h3dSpr9eaquuh8kLcGMnEDdQTdCX3Q95WiiiFQvY4DVNj8jpajdRucZmmPIs BrcXVyraJlHTq/6PkVo5Zy4SclJWgfzvox5WShAvAvwbpMQDvZxeh6ZLKBdgZaQaFAjj OmMA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :message-id:date:subject:cc:to:from; bh=WTYFZkr9mCr2yvPl0T+ZIKqgl6UluUT6M2dK9eki/Rc=; b=E90OtCX4HA3sy6xZB2UlmZGLu11Z1ImCXTC15DsEV3uVHXjoIVsr2EDl3+QZnsRJCI wCbdzNzQiN8gCGQnxGNJAPgLOSLP76qV64QjA4c+Iw5+hseTfQC49mJwrfO+TTCHjH3Q mlgmJZEKMlj9PvBBfbQxSAJ4YhCp5OAgHWNyUbxjvd089+VZgJZ+LCl72N59pm2BqtiT ZN8luUflGmO5tyG5WZKSkDfzca+T8kiDLbBfPhvb+dLZXXZDzXh0QKOEzAPPoJ/12J2b 3n/xgi8SVMxBmykUrUWireZ/i8oj+okjEJDGOEDsIhAlnXNMrkdh2jVwqNBBjbCU1UZL nmhg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=collabora.com Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id u5si1555111ejt.35.2021.03.18.06.34.44; Thu, 18 Mar 2021 06:35:07 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=collabora.com Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230297AbhCRNdt (ORCPT + 99 others); Thu, 18 Mar 2021 09:33:49 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:42478 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230002AbhCRNdg (ORCPT ); Thu, 18 Mar 2021 09:33:36 -0400 Received: from bhuna.collabora.co.uk (bhuna.collabora.co.uk [IPv6:2a00:1098:0:82:1000:25:2eeb:e3e3]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 6881CC06174A; Thu, 18 Mar 2021 06:33:36 -0700 (PDT) Received: from [127.0.0.1] (localhost [127.0.0.1]) (Authenticated sender: shreeya) with ESMTPSA id A91E51F45F32 From: Shreeya Patel To: krisman@collabora.com, jaegeuk@kernel.org, yuchao0@huawei.com, tytso@mit.edu, adilger.kernel@dilger.ca, drosen@google.com, ebiggers@google.com Cc: linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org, kernel@collabora.com, andre.almeida@collabora.com, Shreeya Patel Subject: [PATCH v2 0/4] Make UTF-8 encoding loadable Date: Thu, 18 Mar 2021 19:03:01 +0530 Message-Id: <20210318133305.316564-1-shreeya.patel@collabora.com> X-Mailer: git-send-email 2.30.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org utf8data.h_shipped has a large database table which is an auto-generated decodification trie for the unicode normalization functions and it is not necessary to carry this large table in the kernel. Goal is to make UTF-8 encoding loadable by converting it into a module and adding a layer between the filesystems and the utf8 module which will load the module whenever any filesystem that needs unicode is mounted. Unicode is the subsystem and utf8 is a charachter encoding for the subsystem, hence first two patches in the series are renaming functions and file name to unicode for better understanding the difference between UTF-8 module and unicode layer. 3rd patch resolves the warning reported by kernel test robot. Last patch in the series adds the layer and utf8 module. --- Changes in v2 - Remove the duplicate file from the last patch. - Make the wrapper functions inline. - Remove msleep and use try_module_get() and module_put() for ensuring that module is loaded correctly and also doesn't get unloaded while in use. - Resolve the warning reported by kernel test robot. - Resolve all the checkpatch.pl warnings. Shreeya Patel (4): fs: unicode: Rename function names from utf8 to unicode fs: unicode: Rename utf8-core file to unicode-core fs: unicode: Use strscpy() instead of strncpy() fs: unicode: Add utf8 module and a unicode layer fs/ext4/hash.c | 2 +- fs/ext4/namei.c | 12 ++-- fs/ext4/super.c | 6 +- fs/f2fs/dir.c | 12 ++-- fs/f2fs/super.c | 6 +- fs/libfs.c | 6 +- fs/unicode/Kconfig | 11 +++- fs/unicode/Makefile | 5 +- fs/unicode/unicode-core.c | 60 ++++++++++++++++++++ fs/unicode/utf8-selftest.c | 8 +-- fs/unicode/{utf8-core.c => utf8mod.c} | 80 +++++++++++++++------------ include/linux/unicode.h | 77 ++++++++++++++++++++------ 12 files changed, 206 insertions(+), 79 deletions(-) create mode 100644 fs/unicode/unicode-core.c rename fs/unicode/{utf8-core.c => utf8mod.c} (68%) -- 2.30.1