Received: by 2002:a05:6a10:9848:0:0:0:0 with SMTP id x8csp49458pxf; Wed, 24 Mar 2021 20:37:37 -0700 (PDT) X-Google-Smtp-Source: ABdhPJxtIz8rMSoWZo+Av07YsgWL+91sjqbhg4HQDf0GgQ2PhSrfvCQV7WjxpreIU8ZTUcAHb5DJ X-Received: by 2002:a17:906:3d62:: with SMTP id r2mr6949324ejf.488.1616643456765; Wed, 24 Mar 2021 20:37:36 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1616643456; cv=none; d=google.com; s=arc-20160816; b=ermj/TJraTYZYUvuEeC9xS4Noxtjk+6/g4FEn4dFYm+9ydJohXHvpEDLBTDJxbduT9 08zosMRNl22tWK9AvwYDybqlyUBKG35vmPbunX6QywXVXEmVn5Gz9MU3q+taORfc74RJ BmtixuM8Zfwl8HDH92qEKVkOZWyyvA5MEatSM4xxnwVPFsiiYnAoywlE6xjnsLdTNRWJ CuS1bEtrOYG9U/kG3qIyHcr7YcEJ8M5OdaIs2M0RmrsoC96fSGTB219xGHQBcQJmOD2H xAJ3zW4OEPrm/d0DBdhvNVykihwu7npbAnizO2xFyO3rT6L++YsVWgD5nUSjhUrBDkOc Cfcw== 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 :references:in-reply-to:message-id:date:subject:cc:to:from; bh=+7O96m12Isujf25DQ8CAS8JoYawMtKI3Ge3T2xTisRA=; b=0EiM4OheM70Thy9ns8rvArzaSSMtA9j307yad5oAv4I0gh1cHRUeYH4dor89L2v+0P ADr4uqOQD4TDZHaAEiJO2S3PHTJmaOj8j+Zo2PhVQ3Vad56bOJR7cZUpOVjQTmb3QW8g dysfXUGJP2t2gaYWL3/h7SKhkaW6ndzwyvcahBtRG31roJQLkIWKFM1++AnvXksDXtsY o+aRcVtCDTRQqURJ1xUeXMJnDLO8NxPZM6uszuIwMXqs9uInQKAEms/gkWRiywDU2NKa kHWKAfq7Qf9nX7zA07o6jNv4YzJRmrltGPC6fsmk1zuZSlhStiYbeIc2BGhmqiVJw304 Y5vg== 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 gf19si3533598ejb.500.2021.03.24.20.37.14; Wed, 24 Mar 2021 20:37:36 -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 S239173AbhCYAJP (ORCPT + 99 others); Wed, 24 Mar 2021 20:09:15 -0400 Received: from bhuna.collabora.co.uk ([46.235.227.227]:41422 "EHLO bhuna.collabora.co.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S239147AbhCYAIq (ORCPT ); Wed, 24 Mar 2021 20:08:46 -0400 Received: from [127.0.0.1] (localhost [127.0.0.1]) (Authenticated sender: shreeya) with ESMTPSA id E68EE1F45F1A From: Shreeya Patel To: tytso@mit.edu, adilger.kernel@dilger.ca, jaegeuk@kernel.org, chao@kernel.org, krisman@collabora.com, ebiggers@google.com, drosen@google.com, ebiggers@kernel.org, yuchao0@huawei.com Cc: linux-ext4@vger.kernel.org, linux-kernel@vger.kernel.org, linux-f2fs-devel@lists.sourceforge.net, linux-fsdevel@vger.kernel.org, kernel@collabora.com, andre.almeida@collabora.com Subject: [PATCH v4 4/5] fs: unicode: Rename utf8-core file to unicode-core Date: Thu, 25 Mar 2021 05:38:10 +0530 Message-Id: <20210325000811.1379641-5-shreeya.patel@collabora.com> X-Mailer: git-send-email 2.30.1 In-Reply-To: <20210325000811.1379641-1-shreeya.patel@collabora.com> References: <20210325000811.1379641-1-shreeya.patel@collabora.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Rename the file name from utf8-core to unicode-core for transformation of utf8-core file into the unicode subsystem layer file and also for better understanding. Acked-by: Gabriel Krisman Bertazi Signed-off-by: Shreeya Patel --- fs/unicode/Makefile | 2 +- fs/unicode/{utf8-core.c => unicode-core.c} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename fs/unicode/{utf8-core.c => unicode-core.c} (100%) diff --git a/fs/unicode/Makefile b/fs/unicode/Makefile index b88aecc86550..fbf9a629ed0d 100644 --- a/fs/unicode/Makefile +++ b/fs/unicode/Makefile @@ -3,7 +3,7 @@ obj-$(CONFIG_UNICODE) += unicode.o obj-$(CONFIG_UNICODE_NORMALIZATION_SELFTEST) += utf8-selftest.o -unicode-y := utf8-norm.o utf8-core.o +unicode-y := utf8-norm.o unicode-core.o $(obj)/utf8-norm.o: $(obj)/utf8data.h diff --git a/fs/unicode/utf8-core.c b/fs/unicode/unicode-core.c similarity index 100% rename from fs/unicode/utf8-core.c rename to fs/unicode/unicode-core.c -- 2.30.1