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

Pull configfs fix from Christoph Hellwig:
"A trivial fix to the recently introduced binary attribute helper
macros"

* tag 'configfs-for-linus-2' of git://git.infradead.org/users/hch/configfs:
configfs: fix CONFIGFS_BIN_ATTR_[RW]O definitions

+2 -2
+2 -2
include/linux/configfs.h
··· 188 188 } 189 189 190 190 #define CONFIGFS_BIN_ATTR_RO(_pfx, _name, _priv, _maxsz) \ 191 - static struct configfs_attribute _pfx##attr_##_name = { \ 191 + static struct configfs_bin_attribute _pfx##attr_##_name = { \ 192 192 .cb_attr = { \ 193 193 .ca_name = __stringify(_name), \ 194 194 .ca_mode = S_IRUGO, \ ··· 200 200 } 201 201 202 202 #define CONFIGFS_BIN_ATTR_WO(_pfx, _name, _priv, _maxsz) \ 203 - static struct configfs_attribute _pfx##attr_##_name = { \ 203 + static struct configfs_bin_attribute _pfx##attr_##_name = { \ 204 204 .cb_attr = { \ 205 205 .ca_name = __stringify(_name), \ 206 206 .ca_mode = S_IWUSR, \