summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMark Brown <broonie@kernel.org>2026-07-28 16:46:56 +0100
committerMark Brown <broonie@kernel.org>2026-07-28 16:46:56 +0100
commitace4ffad700f58cf5b1994c324d61bd8d4d2caec (patch)
treebeab17d8a40d2d99692fbac4d6e32f3786106ee9 /include
parent3e1542cd6d8e5ed468527d52b653c129c477d216 (diff)
parentfb582397cf5d08bc5c05b1b8736a28c96d22eb09 (diff)
downloadlinux-next-ace4ffad700f58cf5b1994c324d61bd8d4d2caec.tar.gz
linux-next-ace4ffad700f58cf5b1994c324d61bd8d4d2caec.zip
Merge branch 'for-next' of https://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
Diffstat (limited to 'include')
-rw-r--r--include/linux/dm-io.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/dm-io.h b/include/linux/dm-io.h
index 7b2968612b7e..674683894064 100644
--- a/include/linux/dm-io.h
+++ b/include/linux/dm-io.h
@@ -27,7 +27,7 @@ struct page_list {
struct page *page;
};
-typedef void (*io_notify_fn)(unsigned int long error, void *context);
+typedef void (*io_notify_fn)(unsigned long int error, unsigned long int unsup, void *context);
enum dm_io_mem_type {
DM_IO_PAGE_LIST,/* Page list */
@@ -80,8 +80,8 @@ void dm_io_client_destroy(struct dm_io_client *client);
* error occurred doing io to the corresponding region.
*/
int dm_io(struct dm_io_request *io_req, unsigned int num_regions,
- struct dm_io_region *region, unsigned int long *sync_error_bits,
- unsigned short ioprio);
+ struct dm_io_region *region, unsigned long int *sync_error_bits,
+ unsigned long int *sync_unsup_bits, unsigned short ioprio);
#endif /* __KERNEL__ */
#endif /* _LINUX_DM_IO_H */