Lines Matching refs:_pfx
125 #define CONFIGFS_ATTR(_pfx, _name) \ argument
126 static struct configfs_attribute _pfx##attr_##_name = { \
130 .show = _pfx##_name##_show, \
131 .store = _pfx##_name##_store, \
134 #define CONFIGFS_ATTR_RO(_pfx, _name) \ argument
135 static struct configfs_attribute _pfx##attr_##_name = { \
139 .show = _pfx##_name##_show, \
142 #define CONFIGFS_ATTR_WO(_pfx, _name) \ argument
143 static struct configfs_attribute _pfx##attr_##_name = { \
147 .store = _pfx##_name##_store, \
161 #define CONFIGFS_BIN_ATTR(_pfx, _name, _priv, _maxsz) \ argument
162 static struct configfs_bin_attribute _pfx##attr_##_name = { \
170 .read = _pfx##_name##_read, \
171 .write = _pfx##_name##_write, \
174 #define CONFIGFS_BIN_ATTR_RO(_pfx, _name, _priv, _maxsz) \ argument
175 static struct configfs_bin_attribute _pfx##attr_##_name = { \
183 .read = _pfx##_name##_read, \
186 #define CONFIGFS_BIN_ATTR_WO(_pfx, _name, _priv, _maxsz) \ argument
187 static struct configfs_bin_attribute _pfx##attr_##_name = { \
195 .write = _pfx##_name##_write, \