mirror of
https://github.com/adulau/aha.git
synced 2024-12-27 19:26:25 +00:00
07b20889e3
A private mount does not forward or receive propagation. This patch provides user the ability to convert any mount to private. Signed-off-by: Ram Pai <linuxram@us.ibm.com> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
14 lines
276 B
C
14 lines
276 B
C
/*
|
|
* linux/fs/pnode.h
|
|
*
|
|
* (C) Copyright IBM Corporation 2005.
|
|
* Released under GPL v2.
|
|
*
|
|
*/
|
|
#ifndef _LINUX_PNODE_H
|
|
#define _LINUX_PNODE_H
|
|
|
|
#include <linux/list.h>
|
|
#include <linux/mount.h>
|
|
void change_mnt_propagation(struct vfsmount *, int);
|
|
#endif /* _LINUX_PNODE_H */
|