Hi David, Today's linux-next merge of the creds tree got a conflict in fs/devpts/inode.c between commit c7d2a0f75f034faef7e6504f6f8ea3ec87b324c2 ("pty-per-mount-config") from ttydev tree and commit 955472187492d73580a4c4c65d5d6b1f8a603f58 ("CRED: Wrap task credential accesses in the devpts filesystem") from the creds tree. Just overlapping changes. I fixed it up (see below) and can carry the fix. -- Cheers, Stephen Rothwell sfr@xxxxxxxxxxxxxxxx http://www.canb.auug.org.au/~sfr/ diff --cc fs/devpts/inode.c index 5006485,5d61b7c..0000000 --- a/fs/devpts/inode.c +++ b/fs/devpts/inode.c @@@ -594,11 -221,11 +594,11 @@@ int devpts_pty_new(struct inode *ptmx_i if (!inode) return -ENOMEM; - inode->i_ino = number+2; - inode->i_uid = config.setuid ? config.uid : current_fsuid(); - inode->i_gid = config.setgid ? config.gid : current_fsgid(); + inode->i_ino = number+3; - inode->i_uid = opts->setuid ? opts->uid : current->fsuid; - inode->i_gid = opts->setgid ? opts->gid : current->fsgid; ++ inode->i_uid = opts->setuid ? opts->uid : current_fsuid(); ++ inode->i_gid = opts->setgid ? opts->gid : current_fsgid(); inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME; - init_special_inode(inode, S_IFCHR|config.mode, device); + init_special_inode(inode, S_IFCHR|opts->mode, device); inode->i_private = tty; tty->driver_data = inode; -- To unsubscribe from this list: send the line "unsubscribe linux-next" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html