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 tag 'configfs-for-4.8-2' of git://git.infradead.org/users/hch/configfs

Pull configfs fix from Christoph Hellwig:
"One more trivial fix for the binary attribute code from Phil Turnbull"

* tag 'configfs-for-4.8-2' of git://git.infradead.org/users/hch/configfs:
configfs: Return -EFBIG from configfs_write_bin_file.

+1
+1
fs/configfs/file.c
··· 333 333 if (bin_attr->cb_max_size && 334 334 *ppos + count > bin_attr->cb_max_size) { 335 335 len = -EFBIG; 336 + goto out; 336 337 } 337 338 338 339 tbuf = vmalloc(*ppos + count);