Lines Matching refs:res
38 ssize_t res; in blk_mq_sysfs_show() local
47 res = -ENOENT; in blk_mq_sysfs_show()
50 res = entry->show(ctx, page); in blk_mq_sysfs_show()
52 return res; in blk_mq_sysfs_show()
61 ssize_t res; in blk_mq_sysfs_store() local
70 res = -ENOENT; in blk_mq_sysfs_store()
73 res = entry->store(ctx, page, length); in blk_mq_sysfs_store()
75 return res; in blk_mq_sysfs_store()
84 ssize_t res; in blk_mq_hw_sysfs_show() local
93 res = -ENOENT; in blk_mq_hw_sysfs_show()
96 res = entry->show(hctx, page); in blk_mq_hw_sysfs_show()
98 return res; in blk_mq_hw_sysfs_show()
108 ssize_t res; in blk_mq_hw_sysfs_store() local
117 res = -ENOENT; in blk_mq_hw_sysfs_store()
120 res = entry->store(hctx, page, length); in blk_mq_hw_sysfs_store()
122 return res; in blk_mq_hw_sysfs_store()