dm-bufio.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. /*
  2. * Copyright (C) 2009-2011 Red Hat, Inc.
  3. *
  4. * Author: Mikulas Patocka <mpatocka@redhat.com>
  5. *
  6. * This file is released under the GPL.
  7. */
  8. #ifndef DM_BUFIO_H
  9. #define DM_BUFIO_H
  10. #include <linux/blkdev.h>
  11. #include <linux/types.h>
  12. /*----------------------------------------------------------------*/
  13. struct dm_bufio_client;
  14. struct dm_buffer;
  15. /*
  16. * Create a buffered IO cache on a given device
  17. */
  18. struct dm_bufio_client *
  19. dm_bufio_client_create(struct block_device *bdev, unsigned block_size,
  20. unsigned reserved_buffers, unsigned aux_size,
  21. void (*alloc_callback)(struct dm_buffer *),
  22. void (*write_callback)(struct dm_buffer *));
  23. /*
  24. * Release a buffered IO cache.
  25. */
  26. void dm_bufio_client_destroy(struct dm_bufio_client *c);
  27. /*
  28. * Set the sector range.
  29. * When this function is called, there must be no I/O in progress on the bufio
  30. * client.
  31. */
  32. void dm_bufio_set_sector_offset(struct dm_bufio_client *c, sector_t start);
  33. /*
  34. * WARNING: to avoid deadlocks, these conditions are observed:
  35. *
  36. * - At most one thread can hold at most "reserved_buffers" simultaneously.
  37. * - Each other threads can hold at most one buffer.
  38. * - Threads which call only dm_bufio_get can hold unlimited number of
  39. * buffers.
  40. */
  41. /*
  42. * Read a given block from disk. Returns pointer to data. Returns a
  43. * pointer to dm_buffer that can be used to release the buffer or to make
  44. * it dirty.
  45. */
  46. void *dm_bufio_read(struct dm_bufio_client *c, sector_t block,
  47. struct dm_buffer **bp);
  48. /*
  49. * Like dm_bufio_read, but return buffer from cache, don't read
  50. * it. If the buffer is not in the cache, return NULL.
  51. */
  52. void *dm_bufio_get(struct dm_bufio_client *c, sector_t block,
  53. struct dm_buffer **bp);
  54. /*
  55. * Like dm_bufio_read, but don't read anything from the disk. It is
  56. * expected that the caller initializes the buffer and marks it dirty.
  57. */
  58. void *dm_bufio_new(struct dm_bufio_client *c, sector_t block,
  59. struct dm_buffer **bp);
  60. /*
  61. * Prefetch the specified blocks to the cache.
  62. * The function starts to read the blocks and returns without waiting for
  63. * I/O to finish.
  64. */
  65. void dm_bufio_prefetch(struct dm_bufio_client *c,
  66. sector_t block, unsigned n_blocks);
  67. /*
  68. * Release a reference obtained with dm_bufio_{read,get,new}. The data
  69. * pointer and dm_buffer pointer is no longer valid after this call.
  70. */
  71. void dm_bufio_release(struct dm_buffer *b);
  72. /*
  73. * Mark a buffer dirty. It should be called after the buffer is modified.
  74. *
  75. * In case of memory pressure, the buffer may be written after
  76. * dm_bufio_mark_buffer_dirty, but before dm_bufio_write_dirty_buffers. So
  77. * dm_bufio_write_dirty_buffers guarantees that the buffer is on-disk but
  78. * the actual writing may occur earlier.
  79. */
  80. void dm_bufio_mark_buffer_dirty(struct dm_buffer *b);
  81. /*
  82. * Initiate writing of dirty buffers, without waiting for completion.
  83. */
  84. void dm_bufio_write_dirty_buffers_async(struct dm_bufio_client *c);
  85. /*
  86. * Write all dirty buffers. Guarantees that all dirty buffers created prior
  87. * to this call are on disk when this call exits.
  88. */
  89. int dm_bufio_write_dirty_buffers(struct dm_bufio_client *c);
  90. /*
  91. * Send an empty write barrier to the device to flush hardware disk cache.
  92. */
  93. int dm_bufio_issue_flush(struct dm_bufio_client *c);
  94. /*
  95. * Like dm_bufio_release but also move the buffer to the new
  96. * block. dm_bufio_write_dirty_buffers is needed to commit the new block.
  97. */
  98. void dm_bufio_release_move(struct dm_buffer *b, sector_t new_block);
  99. /*
  100. * Free the given buffer.
  101. * This is just a hint, if the buffer is in use or dirty, this function
  102. * does nothing.
  103. */
  104. void dm_bufio_forget(struct dm_bufio_client *c, sector_t block);
  105. /*
  106. * Set the minimum number of buffers before cleanup happens.
  107. */
  108. void dm_bufio_set_minimum_buffers(struct dm_bufio_client *c, unsigned n);
  109. unsigned dm_bufio_get_block_size(struct dm_bufio_client *c);
  110. sector_t dm_bufio_get_device_size(struct dm_bufio_client *c);
  111. sector_t dm_bufio_get_block_number(struct dm_buffer *b);
  112. void *dm_bufio_get_block_data(struct dm_buffer *b);
  113. void *dm_bufio_get_aux_data(struct dm_buffer *b);
  114. struct dm_bufio_client *dm_bufio_get_client(struct dm_buffer *b);
  115. /*----------------------------------------------------------------*/
  116. #endif