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 'driver-core-5.13-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core

Pull driver core fix from Greg KH:
"A single debugfs fix for 5.13-rc6, fixing a bug in
debugfs_read_file_str() that showed up in 5.13-rc1.

It has been in linux-next for a full week with no
reported problems"

* tag 'driver-core-5.13-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core:
debugfs: Fix debugfs_read_file_str()

+1 -1
+1 -1
fs/debugfs/file.c
··· 893 893 894 894 copy[copy_len] = '\n'; 895 895 896 - ret = simple_read_from_buffer(user_buf, count, ppos, copy, copy_len); 896 + ret = simple_read_from_buffer(user_buf, count, ppos, copy, len); 897 897 kfree(copy); 898 898 899 899 return ret;