From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/10827 Path: news.gmane.org!.POSTED!not-for-mail From: Szabolcs Nagy Newsgroups: gmane.linux.lib.musl.general Subject: [PATCH 2/3] add MS_NOREMOTELOCK mount flag from linux v4.9 Date: Sun, 25 Dec 2016 10:42:15 +0100 Message-ID: References: Reply-To: musl@lists.openwall.com NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: blaine.gmane.org 1482658953 17443 195.159.176.226 (25 Dec 2016 09:42:33 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Sun, 25 Dec 2016 09:42:33 +0000 (UTC) User-Agent: Mutt/1.6.0 (2016-04-01) To: musl@lists.openwall.com Original-X-From: musl-return-10840-gllmg-musl=m.gmane.org@lists.openwall.com Sun Dec 25 10:42:29 2016 Return-path: Envelope-to: gllmg-musl@m.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by blaine.gmane.org with smtp (Exim 4.84_2) (envelope-from ) id 1cL5Jy-0003oo-NI for gllmg-musl@m.gmane.org; Sun, 25 Dec 2016 10:42:26 +0100 Original-Received: (qmail 9416 invoked by uid 550); 25 Dec 2016 09:42:29 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Original-Received: (qmail 9381 invoked from network); 25 Dec 2016 09:42:27 -0000 Mail-Followup-To: musl@lists.openwall.com Content-Disposition: inline In-Reply-To: Xref: news.gmane.org gmane.linux.lib.musl.general:10827 Archived-At: for handling file locking on overlayfs. see linux commit c568d68341be7030f5647def68851e469b21ca11 --- include/sys/mount.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/sys/mount.h b/include/sys/mount.h index 6674e65..57a89c0 100644 --- a/include/sys/mount.h +++ b/include/sys/mount.h @@ -47,6 +47,7 @@ extern "C" { #define MS_I_VERSION (1<<23) #define MS_STRICTATIME (1<<24) #define MS_LAZYTIME (1<<25) +#define MS_NOREMOTELOCK (1<<27) #define MS_NOSEC (1<<28) #define MS_BORN (1<<29) #define MS_ACTIVE (1<<30) -- 2.10.2