All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFC][PATCH 0/8][v2]: Enable multiple mounts of devpts
@ 2008-08-21  2:21 sukadev-r/Jw6+rmf7HQT0dZR+AlfA
       [not found] ` <20080821022126.GA29449-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
  0 siblings, 1 reply; 51+ messages in thread
From: sukadev-r/Jw6+rmf7HQT0dZR+AlfA @ 2008-08-21  2:21 UTC (permalink / raw)
  To: hpa-YMNOUZJC4hwAvxtiuMwx3w, alan-qBU/x9rampVanCEyBjwyrvXRex20P6io
  Cc: kyle-hoO6YkzgTuCM0SS3m2neIg, ebiederm-aS9lmoZGLiVWk0Htik3J/w,
	bastian-yyjItF7Rl6lg9hUCZPvPmw, containers-qjLDD68F18O7TbgM5vRIOg,
	xemul-GEFAQzZX7r8dnm+yROfE0A


I have been trying to address comments from the last patchset and
here is another snapshot of the patches. 

Appreciate any feedback on the single/multi-mount semantics (patch 8/8).

See below for changelog and pending stuff

---
Enable multiple mounts of devpts filesystem so each container can allocate
ptys independently.

User interface:

	Supporting multiple mounts of devpts can break user-space, this
	feature is enabled only under a new mount option (-o newmnt).

	If this option is never specified, this patchset should not change
	any behavior.  i.e existing single-namespace semantics are preserved
	across any remounts of /dev/pts (as long as none of them use the new
	option).  So old startup scripts should continue to work.

	If the '-o newmnt' option is specified, then a new 'private' mount
	of devpts is created. ptys in this private instance are independent
	of ptys created in other devpts instances. For this to be fully
	functionaly, /dev/ptmx must be a symbolic link to '/dev/pts/ptmx'

Implementation notes:

	1. To enable multiple mounts of /dev/pts, (most) devpts interfaces
	   need to know which instance of devpts is being accessed. This
	   patchset uses the 'struct inode' of the device being accessed
	   to identify the appropriate devpts instance. Hence the need for
	   the /dev/pts/ptmx symlink.

	2. See comments in get_sb_ref() in fs/super.c (could not find
	   existing interfaces that accomplish it) Or is there a better
	   way ?

	[PATCH 1/8]: /dev/tty tweak in init_dev()
	[PATCH 2/8]: Add inode parameter to devpts interfaces
	[PATCH 3/8]: Remove devpts_root global
	[PATCH 4/8]: Per-mount allocated_ptys
	[PATCH 5/8]: Per-mount config object
	[PATCH 6/8]: Extract option parsing to new function
	[PATCH 7/8]: Auto-create ptmx node when mounting devpts
	[PATCH 8/8]: Enable multiple mounts of devpts

Changelog [v2]:

	- New mount option '-o newmnt' added (patch 8/8)
	- Support both single-mount and multi-mount semantics (patch 8/8)
	- Automatically create ptmx node when devpts is mounted (patch 7/8)
	- Extract option parsing code to new function (patch 6/8)
	- Make 'config' params per-mount variables (patch 5/8)
	- Slightly re-ordered existing patches in set (patches 1/8, 2/8)

TODO:
	- Add a config option to enable multiple-mounts of devpts.
	- Remove even initial kernel mount of devpts ? (If we do, how
	  do we preserve single-mount semantics) ?
	- Testing :-), check for bisect-safe etc

^ permalink raw reply	[flat|nested] 51+ messages in thread

end of thread, other threads:[~2008-09-03 13:52 UTC | newest]

Thread overview: 51+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-08-21  2:21 [RFC][PATCH 0/8][v2]: Enable multiple mounts of devpts sukadev-r/Jw6+rmf7HQT0dZR+AlfA
     [not found] ` <20080821022126.GA29449-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2008-08-21  2:26   ` [RFC][PATCH 1/8]: /dev/tty tweak in init_dev() sukadev-r/Jw6+rmf7HQT0dZR+AlfA
     [not found]     ` <20080821022621.GA29658-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2008-08-21  9:19       ` Alan Cox
2008-08-21  9:26       ` Alan Cox
2008-08-21  2:26   ` [RFC][PATCH 2/8]: Add inode parameter devpts interfaces sukadev-r/Jw6+rmf7HQT0dZR+AlfA
2008-08-21  2:27   ` [RFC][PATCH 3/8]: Remove devpts_root global sukadev-r/Jw6+rmf7HQT0dZR+AlfA
2008-08-21  2:27   ` [RFC][PATCH 4/8]: Per-mount allocated_ptys sukadev-r/Jw6+rmf7HQT0dZR+AlfA
2008-08-21  2:28   ` [RFC][PATCH 5/8]: Per-mount 'config' object sukadev-r/Jw6+rmf7HQT0dZR+AlfA
2008-08-21  2:28   ` [RFC][PATCH 6/8]: Extract option parsing to new function sukadev-r/Jw6+rmf7HQT0dZR+AlfA
2008-08-21  2:29   ` [RFC][PATCH 7/8]: Auto-create ptmx node when mounting devpts sukadev-r/Jw6+rmf7HQT0dZR+AlfA
     [not found]     ` <20080821022908.GG29658-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2008-08-21  9:21       ` Alan Cox
     [not found]         ` <20080821102139.43c44f67-qBU/x9rampVanCEyBjwyrvXRex20P6io@public.gmane.org>
2008-08-21 16:09           ` H. Peter Anvin
     [not found]             ` <48AD932F.8090908-YMNOUZJC4hwAvxtiuMwx3w@public.gmane.org>
2008-08-21 16:27               ` Alan Cox
     [not found]                 ` <20080821172700.781b0011-qBU/x9rampVanCEyBjwyrvXRex20P6io@public.gmane.org>
2008-08-21 16:49                   ` H. Peter Anvin
     [not found]                     ` <48AD9C93.6080302-YMNOUZJC4hwAvxtiuMwx3w@public.gmane.org>
2008-08-21 17:22                       ` Serge E. Hallyn
     [not found]                         ` <20080821172245.GA28411-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2008-08-21 17:07                           ` Alan Cox
2008-08-21 17:23                       ` sukadev-r/Jw6+rmf7HQT0dZR+AlfA
     [not found]                         ` <20080821172342.GA8059-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2008-08-21 17:38                           ` Eric W. Biederman
     [not found]                             ` <m18wuqtgj7.fsf-B27657KtZYmhTnVgQlOflh2eb7JE58TQ@public.gmane.org>
2008-08-21 17:50                               ` H. Peter Anvin
     [not found]                                 ` <48ADAAE2.6040700-YMNOUZJC4hwAvxtiuMwx3w@public.gmane.org>
2008-08-21 18:23                                   ` Eric W. Biederman
     [not found]                                     ` <m1hc9eqlbo.fsf-B27657KtZYmhTnVgQlOflh2eb7JE58TQ@public.gmane.org>
2008-08-21 18:36                                       ` H. Peter Anvin
2008-08-21 17:40                           ` H. Peter Anvin
     [not found]                             ` <48ADA890.4060309-YMNOUZJC4hwAvxtiuMwx3w@public.gmane.org>
2008-08-21 18:11                               ` sukadev-r/Jw6+rmf7HQT0dZR+AlfA
     [not found]                                 ` <20080821181133.GB8059-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2008-08-21 18:17                                   ` H. Peter Anvin
2008-08-21 21:00                                   ` Serge E. Hallyn
     [not found]                                     ` <20080821210040.GA14532-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2008-08-21 22:16                                       ` sukadev-r/Jw6+rmf7HQT0dZR+AlfA
2008-08-21  2:29   ` [RFC][PATCH 8/8]: Enable multiple mounts of devpts sukadev-r/Jw6+rmf7HQT0dZR+AlfA
2008-08-21  2:45   ` [RFC][PATCH 0/8][v2]: " H. Peter Anvin
     [not found]     ` <48ACD6CB.5030706-YMNOUZJC4hwAvxtiuMwx3w@public.gmane.org>
2008-08-21  3:10       ` sukadev-r/Jw6+rmf7HQT0dZR+AlfA
     [not found]         ` <20080821031028.GB30205-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2008-08-21  3:15           ` H. Peter Anvin
     [not found]             ` <48ACDDC7.3000704-YMNOUZJC4hwAvxtiuMwx3w@public.gmane.org>
2008-08-21 16:34               ` Cedric Le Goater
     [not found]                 ` <48AD991F.9010906-NmTC/0ZBporQT0dZR+AlfA@public.gmane.org>
2008-08-21 16:40                   ` H. Peter Anvin
     [not found]                     ` <48AD9A97.6000807-YMNOUZJC4hwAvxtiuMwx3w@public.gmane.org>
2008-08-21 16:54                       ` Cedric Le Goater
     [not found]                         ` <48AD9DCD.3060306-NmTC/0ZBporQT0dZR+AlfA@public.gmane.org>
2008-08-21 16:56                           ` H. Peter Anvin
2008-08-21 17:28                           ` Serge E. Hallyn
2008-08-21 17:45                           ` Eric W. Biederman
     [not found]                             ` <m1fxoys1ng.fsf-B27657KtZYmhTnVgQlOflh2eb7JE58TQ@public.gmane.org>
2008-08-21 21:02                               ` Cedric Le Goater
     [not found]                                 ` <48ADD7D3.7080400-NmTC/0ZBporQT0dZR+AlfA@public.gmane.org>
2008-08-29  9:02                                   ` Cedric Le Goater
     [not found]                                     ` <48B7BB3C.5080404-NmTC/0ZBporQT0dZR+AlfA@public.gmane.org>
2008-09-02  3:04                                       ` Serge E. Hallyn
     [not found]                                         ` <20080902030426.GB12277-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2008-09-02 10:00                                           ` Eric W. Biederman
     [not found]                                             ` <m1vdxeeuk0.fsf-B27657KtZYmhTnVgQlOflh2eb7JE58TQ@public.gmane.org>
2008-09-02 15:52                                               ` Serge E. Hallyn
     [not found]                                                 ` <20080902155211.GF8524-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2008-09-03 12:01                                                   ` Cedric Le Goater
     [not found]                                                     ` <48BE7C98.1040004-NmTC/0ZBporQT0dZR+AlfA@public.gmane.org>
2008-09-03 13:12                                                       ` Eric W. Biederman
2008-09-03 13:41                                                       ` Serge E. Hallyn
2008-09-03 11:47                                               ` Cedric Le Goater
     [not found]                                                 ` <48BE7959.1080109-NmTC/0ZBporQT0dZR+AlfA@public.gmane.org>
2008-09-03 13:24                                                   ` Serge E. Hallyn
2008-09-03 11:43                                           ` Cedric Le Goater
     [not found]                                             ` <48BE7845.6070500-NmTC/0ZBporQT0dZR+AlfA@public.gmane.org>
2008-09-03 13:23                                               ` Serge E. Hallyn
     [not found]                                                 ` <20080903132307.GA9527-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2008-09-03 13:52                                                   ` Cedric Le Goater
2008-09-02  9:22                                       ` Eric W. Biederman
     [not found]                                         ` <m1d4jmhpgl.fsf-B27657KtZYmhTnVgQlOflh2eb7JE58TQ@public.gmane.org>
2008-09-03 12:04                                           ` Cedric Le Goater

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.