Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'for-linus-4.1-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml

Pull UML hostfs fix from Richard Weinberger:
"This contains a single fix for a regression introduced in 4.1-rc1"

* 'for-linus-4.1-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml:
hostfs: Use correct mask for file mode

+1 -1
+1 -1
fs/hostfs/hostfs_kern.c
··· 581 581 if (name == NULL) 582 582 goto out_put; 583 583 584 - fd = file_create(name, mode & S_IFMT); 584 + fd = file_create(name, mode & 0777); 585 585 if (fd < 0) 586 586 error = fd; 587 587 else