From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-vs1-xe2d.google.com (mail-vs1-xe2d.google.com [IPv6:2607:f8b0:4864:20::e2d]) by sourceware.org (Postfix) with ESMTPS id 903AC385C41C for ; Wed, 24 Aug 2022 13:07:31 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 903AC385C41C Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=linaro.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=linaro.org Received: by mail-vs1-xe2d.google.com with SMTP id k10so12406522vsr.4 for ; Wed, 24 Aug 2022 06:07:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:from:to:cc; bh=ZyC2CCEgXKcxAXDK9ESvh+zghpckFjYqo8FRo7ugDzQ=; b=J0ZOwvkvr51gfHVwTW/hjUPYBYemGOkXCOni7jnTvBESO6U4QuNJ9PvbF9jXvjDmOt rRNVI8xfoLyh92EZY2Xz004QNTrjDka5JFaP9VqjIi0xGP45HapMY1qb8taogd/w0Qel qZGTKhPzUDW8l6D7V1u+soalGyptjEiiCPAV6pOvUpYS0AMMZnjX0q7FccveH7lRs4hA a40ztpHTMAcs6C69cHRiS80kimQHi6gAtrgtyHTiC9qtzhx3Jdr5fxRTaS2TMz9HQuRU T+XbxyGb9uuJf6bS2W54kckZ/HsMfX/Hbhqkqmd7kJ+Bh7wMQVAdu/LBWTQlIEMcefPZ N9MA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:x-gm-message-state:from:to:cc; bh=ZyC2CCEgXKcxAXDK9ESvh+zghpckFjYqo8FRo7ugDzQ=; b=o6Z+oiZJOvFMMVsdIWdPgd3h3A/4Hc+/kyDQ5ol1ZYmoQM+0gMpd9M4a1yt5Mmc4oR 7+uQo4f4Jwudmqc3ZIgdlvhPi8KQ5eVinZ8zgjGqGoeVRCLajaVtuVY2zayVJFixxsL1 sWDoLV3XFd3dD61euAFt86teZcr90S5pchhMlULymqFfJh8NM7lOoDcgH2w5kK32Iq8k cq/8ehuUSp69ByPs1Wy12HaJ42l26mJDCv2I5Atssz+qVztNWLBAACpAc9Fihw9Nh/s6 0vAaaMC76+ovjAFyCgccfuFbWwpDpY0noo7OTJGJKqPAISgyj4+BUIMBTJhojITgWems Rbug== X-Gm-Message-State: ACgBeo1/LE5YNfqECw1QAEfRtWPrXdeFwIB3ZbXZxetLz2hX8z9EUO7d GBmDq7AjbOmbtZlcX1vlXBXRNVNgZp40mw== X-Google-Smtp-Source: AA6agR7K3AVaQd1aOYqcO8gAZDTyaxxS+BreO2JCjylQfgw+HFBYcM2DPSjp/1AOAG6IGoFoZVGHhg== X-Received: by 2002:a67:c292:0:b0:390:2fe3:4bb3 with SMTP id k18-20020a67c292000000b003902fe34bb3mr8721961vsj.27.1661346450531; Wed, 24 Aug 2022 06:07:30 -0700 (PDT) Received: from mandiga.. ([2804:1b3:a7c0:745e:1e2b:867:85d9:4667]) by smtp.gmail.com with ESMTPSA id k6-20020a9f3f86000000b0038275916987sm13709836uaj.14.2022.08.24.06.07.29 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 24 Aug 2022 06:07:30 -0700 (PDT) From: Adhemerval Zanella To: libc-alpha@sourceware.org Cc: Florian Weimer Subject: [COMMITTED 2.36 2/5] linux: Mimic kernel defition for BLOCK_SIZE Date: Wed, 24 Aug 2022 10:07:17 -0300 Message-Id: <20220824130720.2236114-2-adhemerval.zanella@linaro.org> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20220824130720.2236114-1-adhemerval.zanella@linaro.org> References: <20220824130720.2236114-1-adhemerval.zanella@linaro.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-12.9 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,RCVD_IN_DNSWL_NONE,SPF_HELO_NONE,SPF_PASS,TXREP,T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: To avoid possible warnings if the kernel header is included before sys/mount.h. Reviewed-by: Florian Weimer (cherry picked from commit c68b6044bc7945716431f1adc091b17c39b80a06) --- sysdeps/unix/sysv/linux/sys/mount.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sysdeps/unix/sysv/linux/sys/mount.h b/sysdeps/unix/sysv/linux/sys/mount.h index f965986ba8..df6b0dbb42 100644 --- a/sysdeps/unix/sysv/linux/sys/mount.h +++ b/sysdeps/unix/sysv/linux/sys/mount.h @@ -27,8 +27,8 @@ #include #include -#define BLOCK_SIZE 1024 #define BLOCK_SIZE_BITS 10 +#define BLOCK_SIZE (1<