⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 locks.txt

📁 嵌入式系统设计与实例开发实验教材二源码 多线程应用程序设计 串行端口程序设计 AD接口实验 CAN总线通信实验 GPS通信实验 Linux内核移植与编译实验 IC卡读写实验 SD驱动使
💻 TXT
字号:
		      File Locking Release Notes		Andy Walker <andy@lysaker.kvaerner.no>			    12 May 19971. What's New?--------------1.1 Broken Flock Emulation--------------------------The old flock(2) emulation in the kernel was swapped for proper BSDcompatible flock(2) support in the 1.3.x series of kernels. With therelease of the 2.1.x kernel series, support for the old emulation hasbeen totally removed, so that we don't need to carry this baggageforever.This should not cause problems for anybody, since everybody using a2.1.x kernel should have updated their C library to a suitable versionanyway (see the file "linux/Documentation/Changes".)1.2 Allow Mixed Locks Again---------------------------1.2.1 Typical Problems - Sendmail---------------------------------Because sendmail was unable to use the old flock() emulation, many sendmailinstallations use fcntl() instead of flock(). This is true of Slackware 3.0for example. This gave rise to some other subtle problems if sendmail wasconfigured to rebuild the alias file. Sendmail tried to lock the aliases.dirfile with fcntl() at the same time as the GDBM routines tried to lock thisfile with flock(). With pre 1.3.96 kernels this could result in deadlocks that,over time, or under a very heavy mail load, would eventually cause the kernelto lock solid with deadlocked processes.1.2.2 The Solution------------------The solution I have chosen, after much experimentation and discussion,is to make flock() and fcntl() locks oblivious to each other. Both canexists, and neither will have any effect on the other.I wanted the two lock styles to be cooperative, but there were so manyrace and deadlock conditions that the current solution was the onlypractical one. It puts us in the same position as, for example, SunOS4.1.x and several other commercial Unices. The only OS's that supportcooperative flock()/fcntl() are those that emulate flock() usingfcntl(), with all the problems that implies.1.3 Mandatory Locking As A Mount Option---------------------------------------Mandatory locking, as described in 'Documentation/mandatory.txt' was priorto this release a general configuration option that was valid for allmounted filesystems. This had a number of inherent dangers, not the leastof which was the ability to freeze an NFS server by asking it to read afile for which a mandatory lock existed.From this release of the kernel, mandatory locking can be turned on and offon a per-filesystem basis, using the mount options 'mand' and 'nomand'.The default is to disallow mandatory locking. The intention is thatmandatory locking only be enabled on a local filesystem as the specific needarises.Until an updated version of mount(8) becomes available you may have to applythis patch to the mount sources (based on the version distributed with RickFaith's util-linux-2.5 package):*** mount.c.orig	Sat Jun  8 09:14:31 1996--- mount.c	Sat Jun  8 09:13:02 1996****************** 100,105 ****--- 100,107 ----    { "noauto",	0, MS_NOAUTO	},	/* Can  only be mounted explicitly */    { "user",	0, MS_USER	},	/* Allow ordinary user to mount */    { "nouser",	1, MS_USER	},	/* Forbid ordinary user to mount */+   { "mand",	0, MS_MANDLOCK	},	/* Allow mandatory locks on this FS */+   { "nomand",	1, MS_MANDLOCK	},	/* Forbid mandatory locks on this FS */    /* add new options here */  #ifdef MS_NOSUB    { "sub",	1, MS_NOSUB	},	/* allow submounts */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -