dm-bufio.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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. * WARNING: to avoid deadlocks, these conditions are observed:
  29. *
  30. * - At most one thread can hold at most "reserved_buffers" simultaneously.
  31. * - Each other threads can hold at most one buffer.
  32. * - Threads which call only dm_bufio_get can hold unlimited number of
  33. * buffers.
  34. */
  35. /*
  36. * Read a given block from disk. Returns pointer to data. Returns a
  37. * pointer to dm_buffer that can be used to release the buffer or to make
  38. * it dirty.
  39. */
  40. void *dm_bufio_read(struct dm_bufio_client *c, sector_t block,
  41. struct dm_buffer **bp);
  42. /*
  43. * Like dm_bufio_read, but return buffer from cache, don't read
  44. * it. If the buffer is not in the cache, return NULL.
  45. */
  46. void *dm_bufio_get(struct dm_bufio_client *c, sector_t block,
  47. struct dm_buffer **bp);
  48. /*
  49. * Like dm_bufio_read, but don't read anything from the disk. It is
  50. * expected that the caller initializes the buffer and marks it dirty.
  51. */
  52. void *dm_bufio_new(struct dm_bufio_client *c, sector_t block,
  53. struct dm_buffer **bp);
  54. /*
  55. * Prefetch the specified blocks to the cache.
  56. * The function starts to read the blocks and returns without waiting for
  57. * I/O to finish.
  58. */
  59. void dm_bufio_prefetch(struct dm_bufio_client *c,
  60. sector_t block, unsigned n_blocks);
  61. /*
  62. * Release a reference obtained with dm_bufio_{read,get,new}. The data
  63. * pointer and dm_buffer pointer is no longer valid after this call.
  64. */
  65. void dm_bufio_release(struct dm_buffer *b);
  66. /*
  67. * Mark a buffer dirty. It should be called after the buffer is modified.
  68. *
  69. * In case of memory pressure, the buffer may be written after
  70. * dm_bufio_mark_buffer_dirty, but before dm_bufio_write_dirty_buffers. So
  71. * dm_bufio_write_dirty_buffers guarantees that the buffer is on-disk but
  72. * the actual writing may occur earlier.
  73. */
  74. void dm_bufio_mark_buffer_dirty(struct dm_buffer *b);
  75. /*
  76. * Initiate writing of dirty buffers, without waiting for completion.
  77. */
  78. void dm_bufio_write_dirty_buffers_async(struct dm_bufio_client *c);
  79. /*
  80. * Write all dirty buffers. Guarantees that all dirty buffers created prior
  81. * to this call are on disk when this call exits.
  82. */
  83. int dm_bufio_write_dirty_buffers(struct dm_bufio_client *c);
  84. /*
  85. * Send an empty write barrier to the device to flush hardware disk cache.
  86. */
  87. int dm_bufio_issue_flush(struct dm_bufio_client *c);
  88. /*
  89. * Like dm_bufio_release but also move the buffer to the new
  90. * block. dm_bufio_write_dirty_buffers is needed to commit the new block.
  91. */
  92. void dm_bufio_release_move(struct dm_buffer *b, sector_t new_block);
  93. /*
  94. * Free the given buffer.
  95. * This is just a hint, if the buffer is in use or dirty, this function
  96. * does nothing.
  97. */
  98. void dm_bufio_forget(struct dm_bufio_client *c, sector_t block);
  99. /*
  100. * Set the minimum number of buffers before cleanup happens.
  101. */
  102. void dm_bufio_set_minimum_buffers(struct dm_bufio_client *c, unsigned n);
  103. unsigned dm_bufio_get_block_size(struct dm_bufio_client *c);
  104. sector_t dm_bufio_get_device_size(struct dm_bufio_client *c);
  105. sector_t dm_bufio_get_block_number(struct dm_buffer *b);
  106. void *dm_bufio_get_block_data(struct dm_buffer *b);
  107. void *dm_bufio_get_aux_data(struct dm_buffer *b);
  108. struct dm_bufio_client *dm_bufio_get_client(struct dm_buffer *b);
  109. /*----------------------------------------------------------------*/
  110. #endif