source: rtems/cpukit/libblock/include/rtems/bdbuf.h @ 7d4a859

4.115
Last change on this file since 7d4a859 was 7d4a859, checked in by Sebastian Huber <sebastian.huber@…>, on 06/12/12 at 06:54:19

libblock: Remove const qualifier

This allows addtion of per disk statistics for example.

  • Property mode set to 100644
File size: 25.1 KB
Line 
1/**
2 * @file
3 *
4 * @ingroup rtems_bdbuf
5 *
6 * Block device buffer management.
7 */
8
9/*
10 * Copyright (C) 2001 OKTET Ltd., St.-Petersburg, Russia
11 * Author: Victor V. Vengerov <vvv@oktet.ru>
12 *
13 * Copyright (C) 2008,2009 Chris Johns <chrisj@rtems.org>
14 *    Rewritten to remove score mutex access. Fixes many performance
15 *    issues.
16 *    Change to support demand driven variable buffer sizes.
17 *
18 * Copyright (c) 2009-2012 embedded brains GmbH.
19 *
20 * @(#) bdbuf.h,v 1.9 2005/02/02 00:06:18 joel Exp
21 */
22
23#ifndef _RTEMS_BDBUF_H
24#define _RTEMS_BDBUF_H
25
26#include <rtems.h>
27#include <rtems/libio.h>
28#include <rtems/chain.h>
29
30#include <rtems/blkdev.h>
31#include <rtems/diskdevs.h>
32
33#ifdef __cplusplus
34extern "C" {
35#endif
36
37/**
38 * @defgroup rtems_libblock Block Device Library
39 *
40 * Block device modules.
41 */
42
43/**
44 * @defgroup rtems_bdbuf Block Device Buffer Management
45 *
46 * @ingroup rtems_libblock
47 *
48 * The Block Device Buffer Management implements a cache between the disk
49 * devices and file systems.  The code provides read-ahead and write queuing to
50 * the drivers and fast cache look-up using an AVL tree.
51 *
52 * The block size used by a file system can be set at runtime and must be a
53 * multiple of the disk device block size.  The disk device's physical block
54 * size is called the media block size.  The file system can set the block size
55 * it uses to a larger multiple of the media block size.  The driver must be
56 * able to handle buffers sizes larger than one media block.
57 *
58 * The user configures the amount of memory to be used as buffers in the cache,
59 * and the minimum and maximum buffer size.  The cache will allocate additional
60 * memory for the buffer descriptors and groups.  There are enough buffer
61 * descriptors allocated so all the buffer memory can be used as minimum sized
62 * buffers.
63 *
64 * The cache is a single pool of buffers.  The buffer memory is divided into
65 * groups where the size of buffer memory allocated to a group is the maximum
66 * buffer size.  A group's memory can be divided down into small buffer sizes
67 * that are a multiple of 2 of the minimum buffer size.  A group is the minimum
68 * allocation unit for buffers of a specific size.  If a buffer of maximum size
69 * is request the group will have a single buffer.  If a buffer of minimum size
70 * is requested the group is divided into minimum sized buffers and the
71 * remaining buffers are held ready for use.  A group keeps track of which
72 * buffers are with a file system or driver and groups who have buffer in use
73 * cannot be realloced.  Groups with no buffers in use can be taken and
74 * realloced to a new size.  This is how buffers of different sizes move around
75 * the cache.
76
77 * The buffers are held in various lists in the cache.  All buffers follow this
78 * state machine:
79 *
80 * @dot
81 * digraph state {
82 *   size="16,8";
83 *   f [label="FREE",style="filled",fillcolor="aquamarine"];
84 *   e [label="EMPTY",style="filled",fillcolor="seagreen"];
85 *   c [label="CACHED",style="filled",fillcolor="chartreuse"];
86 *   ac [label="ACCESS CACHED",style="filled",fillcolor="royalblue"];
87 *   am [label="ACCESS MODIFIED",style="filled",fillcolor="royalblue"];
88 *   ae [label="ACCESS EMPTY",style="filled",fillcolor="royalblue"];
89 *   ap [label="ACCESS PURGED",style="filled",fillcolor="royalblue"];
90 *   t [label="TRANSFER",style="filled",fillcolor="red"];
91 *   tp [label="TRANSFER PURGED",style="filled",fillcolor="red"];
92 *   s [label="SYNC",style="filled",fillcolor="red"];
93 *   m [label="MODIFIED",style="filled",fillcolor="gold"];
94 *   i [label="INITIAL"];
95 *
96 *   legend_transfer [label="Transfer Wake-Up",fontcolor="red",shape="none"];
97 *   legend_access [label="Access Wake-Up",fontcolor="royalblue",shape="none"];
98 *
99 *   i -> f [label="Init"];
100 *   f -> e [label="Buffer Recycle"];
101 *   e -> ae [label="Get"];
102 *   e -> t [label="Read"];
103 *   e -> f [label="Nobody Waits"];
104 *   c -> ac [label="Get\nRead"];
105 *   c -> e [label="Buffer Recycle\nPurge"];
106 *   c -> f [label="Reallocate\nBlock Size Changed"];
107 *   t -> c [label="Transfer Done",color="red",fontcolor="red"];
108 *   t -> e [label="Transfer Error",color="red",fontcolor="red"];
109 *   t -> tp [label="Purge"];
110 *   tp -> e [label="Transfer Done\nTransfer Error",color="red",fontcolor="red"];
111 *   m -> t [label="Swapout"];
112 *   m -> s [label="Block Size Changed"];
113 *   m -> am [label="Get\nRead"];
114 *   m -> e [label="Purge"];
115 *   ac -> m [label="Release Modified",color="royalblue",fontcolor="royalblue"];
116 *   ac -> s [label="Sync",color="royalblue",fontcolor="royalblue"];
117 *   ac -> c [label="Release",color="royalblue",fontcolor="royalblue"];
118 *   ac -> ap [label="Purge"];
119 *   am -> m [label="Release\nRelease Modified",color="royalblue",fontcolor="royalblue"];
120 *   am -> s [label="Sync",color="royalblue",fontcolor="royalblue"];
121 *   am -> ap [label="Purge"];
122 *   ae -> m [label="Release Modified",color="royalblue",fontcolor="royalblue"];
123 *   ae -> s [label="Sync",color="royalblue",fontcolor="royalblue"];
124 *   ae -> e [label="Release",color="royalblue",fontcolor="royalblue"];
125 *   ae -> ap [label="Purge"];
126 *   ap -> e [label="Release\nRelease Modified\nSync",color="royalblue",fontcolor="royalblue"];
127 *   s -> t [label="Swapout"];
128 *   s -> e [label="Purge",color="red",fontcolor="red"];
129 * }
130 * @enddot
131 *
132 * Empty or cached buffers are added to the LRU list and removed from this
133 * queue when a caller requests a buffer.  This is referred to as getting a
134 * buffer in the code and the event get in the state diagram.  The buffer is
135 * assigned to a block and inserted to the AVL based on the block/device key.
136 * If the block is to be read by the user and not in the cache it is transfered
137 * from the disk into memory.  If no buffers are on the LRU list the modified
138 * list is checked.  If buffers are on the modified the swap out task will be
139 * woken.  The request blocks until a buffer is available for recycle.
140 *
141 * A block being accessed is given to the file system layer and not accessible
142 * to another requester until released back to the cache.  The same goes to a
143 * buffer in the transfer state.  The transfer state means being read or
144 * written.  If the file system has modified the block and releases it as
145 * modified it placed on the cache's modified list and a hold timer
146 * initialised.  The buffer is held for the hold time before being written to
147 * disk.  Buffers are held for a configurable period of time on the modified
148 * list as a write sets the state to transfer and this locks the buffer out
149 * from the file system until the write completes.  Buffers are often accessed
150 * and modified in a series of small updates so if sent to the disk when
151 * released as modified the user would have to block waiting until it had been
152 * written.  This would be a performance problem.
153 *
154 * The code performs multiple block reads and writes.  Multiple block reads or
155 * read-ahead increases performance with hardware that supports it.  It also
156 * helps with a large cache as the disk head movement is reduced.  It however
157 * is a speculative operation so excessive use can remove valuable and needed
158 * blocks from the cache.  The read-ahead is triggered after two misses of
159 * ascending consecutive blocks or a read hit of a block read by the
160 * most-resent read-ahead transfer.  The read-ahead works per disk, but all
161 * transfers are issued by the read-ahead task.
162 *
163 * The cache has the following lists of buffers:
164 *  - LRU: Accessed or transfered buffers released in least recently used
165 *  order.  Empty buffers will be placed to the front.
166 *  - Modified: Buffers waiting to be written to disk.
167 *  - Sync: Buffers to be synchronized with the disk.
168 *
169 * A cache look-up will be performed to find a suitable buffer.  A suitable
170 * buffer is one that matches the same allocation size as the device the buffer
171 * is for.  The a buffer's group has no buffers in use with the file system or
172 * driver the group is reallocated.  This means the buffers in the group are
173 * invalidated, resized and placed on the LRU queue.  There is a performance
174 * issue with this design.  The reallocation of a group may forced recently
175 * accessed buffers out of the cache when they should not.  The design should be
176 * change to have groups on a LRU list if they have no buffers in use.
177 *
178 * @{
179 */
180
181/**
182 * @brief State of a buffer of the cache.
183 *
184 * The state has several implications.  Depending on the state a buffer can be
185 * in the AVL tree, in a list, in use by an entity and a group user or not.
186 *
187 * <table>
188 *   <tr>
189 *     <th>State</th><th>Valid Data</th><th>AVL Tree</th>
190 *     <th>LRU List</th><th>Modified List</th><th>Synchronization List</th>
191 *     <th>Group User</th><th>External User</th>
192 *   </tr>
193 *   <tr>
194 *     <td>FREE</td><td></td><td></td>
195 *     <td>X</td><td></td><td></td><td></td><td></td>
196 *   </tr>
197 *   <tr>
198 *     <td>EMPTY</td><td></td><td>X</td>
199 *     <td></td><td></td><td></td><td></td><td></td>
200 *   </tr>
201 *   <tr>
202 *     <td>CACHED</td><td>X</td><td>X</td>
203 *     <td>X</td><td></td><td></td><td></td><td></td>
204 *   </tr>
205 *   <tr>
206 *     <td>ACCESS CACHED</td><td>X</td><td>X</td>
207 *     <td></td><td></td><td></td><td>X</td><td>X</td>
208 *   </tr>
209 *   <tr>
210 *     <td>ACCESS MODIFIED</td><td>X</td><td>X</td>
211 *     <td></td><td></td><td></td><td>X</td><td>X</td>
212 *   </tr>
213 *   <tr>
214 *     <td>ACCESS EMPTY</td><td></td><td>X</td>
215 *     <td></td><td></td><td></td><td>X</td><td>X</td>
216 *   </tr>
217 *   <tr>
218 *     <td>ACCESS PURGED</td><td></td><td>X</td>
219 *     <td></td><td></td><td></td><td>X</td><td>X</td>
220 *   </tr>
221 *   <tr>
222 *     <td>MODIFIED</td><td>X</td><td>X</td>
223 *     <td></td><td>X</td><td></td><td>X</td><td></td>
224 *   </tr>
225 *   <tr>
226 *     <td>SYNC</td><td>X</td><td>X</td>
227 *     <td></td><td></td><td>X</td><td>X</td><td></td>
228 *   </tr>
229 *   <tr>
230 *     <td>TRANSFER</td><td>X</td><td>X</td>
231 *     <td></td><td></td><td></td><td>X</td><td>X</td>
232 *   </tr>
233 *   <tr>
234 *     <td>TRANSFER PURGED</td><td></td><td>X</td>
235 *     <td></td><td></td><td></td><td>X</td><td>X</td>
236 *   </tr>
237 * </table>
238 */
239typedef enum
240{
241  /**
242   * @brief Free.
243   */
244  RTEMS_BDBUF_STATE_FREE = 0,
245
246  /**
247   * @brief Empty.
248   */
249  RTEMS_BDBUF_STATE_EMPTY,
250
251  /**
252   * @brief Cached.
253   */
254  RTEMS_BDBUF_STATE_CACHED,
255
256  /**
257   * @brief Accessed by upper layer with cached data.
258   */
259  RTEMS_BDBUF_STATE_ACCESS_CACHED,
260
261  /**
262   * @brief Accessed by upper layer with modified data.
263   */
264  RTEMS_BDBUF_STATE_ACCESS_MODIFIED,
265
266  /**
267   * @brief Accessed by upper layer with invalid data.
268   */
269  RTEMS_BDBUF_STATE_ACCESS_EMPTY,
270
271  /**
272   * @brief Accessed by upper layer with purged data.
273   */
274  RTEMS_BDBUF_STATE_ACCESS_PURGED,
275
276  /**
277   * @brief Modified by upper layer.
278   */
279  RTEMS_BDBUF_STATE_MODIFIED,
280
281  /**
282   * @brief Scheduled for synchronization.
283   */
284  RTEMS_BDBUF_STATE_SYNC,
285
286  /**
287   * @brief In transfer by block device driver.
288   */
289  RTEMS_BDBUF_STATE_TRANSFER,
290
291  /**
292   * @brief In transfer by block device driver and purged.
293   */
294  RTEMS_BDBUF_STATE_TRANSFER_PURGED
295} rtems_bdbuf_buf_state;
296
297/**
298 * Forward reference to the block.
299 */
300struct rtems_bdbuf_group;
301typedef struct rtems_bdbuf_group rtems_bdbuf_group;
302
303/**
304 * To manage buffers we using buffer descriptors (BD). A BD holds a buffer plus
305 * a range of other information related to managing the buffer in the cache. To
306 * speed-up buffer lookup descriptors are organized in AVL-Tree. The fields
307 * 'dd' and 'block' are search keys.
308 */
309typedef struct rtems_bdbuf_buffer
310{
311  rtems_chain_node link;       /**< Link the BD onto a number of lists. */
312
313  struct rtems_bdbuf_avl_node
314  {
315    struct rtems_bdbuf_buffer* left;   /**< Left Child */
316    struct rtems_bdbuf_buffer* right;  /**< Right Child */
317    signed char                cache;  /**< Cache */
318    signed char                bal;    /**< The balance of the sub-tree */
319  } avl;
320
321  rtems_disk_device *dd;        /**< disk device */
322
323  rtems_blkdev_bnum block;      /**< block number on the device */
324
325  unsigned char*    buffer;     /**< Pointer to the buffer memory area */
326
327  rtems_bdbuf_buf_state state;           /**< State of the buffer. */
328
329  uint32_t waiters;              /**< The number of threads waiting on this
330                                  * buffer. */
331  rtems_bdbuf_group* group;      /**< Pointer to the group of BDs this BD is
332                                  * part of. */
333  uint32_t hold_timer;           /**< Timer to indicate how long a buffer
334                                  * has been held in the cache modified. */
335
336  int   references;              /**< Allow reference counting by owner. */
337  void* user;                    /**< User data. */
338} rtems_bdbuf_buffer;
339
340/**
341 * A group is a continuous block of buffer descriptors. A group covers the
342 * maximum configured buffer size and is the allocation size for the buffers to
343 * a specific buffer size. If you allocate a buffer to be a specific size, all
344 * buffers in the group, if there are more than 1 will also be that size. The
345 * number of buffers in a group is a multiple of 2, ie 1, 2, 4, 8, etc.
346 */
347struct rtems_bdbuf_group
348{
349  rtems_chain_node    link;          /**< Link the groups on a LRU list if they
350                                      * have no buffers in use. */
351  size_t              bds_per_group; /**< The number of BD allocated to this
352                                      * group. This value must be a multiple of
353                                      * 2. */
354  uint32_t            users;         /**< How many users the block has. */
355  rtems_bdbuf_buffer* bdbuf;         /**< First BD this block covers. */
356};
357
358/**
359 * Buffering configuration definition. See confdefs.h for support on using this
360 * structure.
361 */
362typedef struct rtems_bdbuf_config {
363  uint32_t            max_read_ahead_blocks;   /**< Number of blocks to read
364                                                * ahead. */
365  uint32_t            max_write_blocks;        /**< Number of blocks to write
366                                                * at once. */
367  rtems_task_priority swapout_priority;        /**< Priority of the swap out
368                                                * task. */
369  uint32_t            swapout_period;          /**< Period swap-out checks buf
370                                                * timers. */
371  uint32_t            swap_block_hold;         /**< Period a buffer is held. */
372  size_t              swapout_workers;         /**< The number of worker
373                                                * threads for the swap-out
374                                                * task. */
375  rtems_task_priority swapout_worker_priority; /**< Priority of the swap out
376                                                * task. */
377  size_t              task_stack_size;         /**< Task stack size for swap-out
378                                                * task and worker threads. */
379  size_t              size;                    /**< Size of memory in the
380                                                * cache */
381  uint32_t            buffer_min;              /**< Minimum buffer size. */
382  uint32_t            buffer_max;              /**< Maximum buffer size
383                                                * supported. It is also the
384                                                * allocation size. */
385  rtems_task_priority read_ahead_priority;     /**< Priority of the read-ahead
386                                                * task. */
387} rtems_bdbuf_config;
388
389/**
390 * External reference to the configuration.
391 *
392 * The configuration is provided by the application.
393 */
394extern const rtems_bdbuf_config rtems_bdbuf_configuration;
395
396/**
397 * The default value for the maximum read-ahead blocks disables the read-ahead
398 * feature.
399 */
400#define RTEMS_BDBUF_MAX_READ_AHEAD_BLOCKS_DEFAULT    0
401
402/**
403 * Default maximum number of blocks to write at once.
404 */
405#define RTEMS_BDBUF_MAX_WRITE_BLOCKS_DEFAULT         16
406
407/**
408 * Default swap-out task priority.
409 */
410#define RTEMS_BDBUF_SWAPOUT_TASK_PRIORITY_DEFAULT    15
411
412/**
413 * Default swap-out task swap period in milli seconds.
414 */
415#define RTEMS_BDBUF_SWAPOUT_TASK_SWAP_PERIOD_DEFAULT 250
416
417/**
418 * Default swap-out task block hold time in milli seconds.
419 */
420#define RTEMS_BDBUF_SWAPOUT_TASK_BLOCK_HOLD_DEFAULT  1000
421
422/**
423 * Default swap-out worker tasks. Currently disabled.
424 */
425#define RTEMS_BDBUF_SWAPOUT_WORKER_TASKS_DEFAULT     0
426
427/**
428 * Default swap-out worker task priority. The same as the swap-out task.
429 */
430#define RTEMS_BDBUF_SWAPOUT_WORKER_TASK_PRIORITY_DEFAULT \
431                             RTEMS_BDBUF_SWAPOUT_TASK_PRIORITY_DEFAULT
432
433/**
434 * Default read-ahead task priority.  The same as the swap-out task.
435 */
436#define RTEMS_BDBUF_READ_AHEAD_TASK_PRIORITY_DEFAULT \
437  RTEMS_BDBUF_SWAPOUT_TASK_PRIORITY_DEFAULT
438
439/**
440 * Default task stack size for swap-out and worker tasks.
441 */
442#define RTEMS_BDBUF_TASK_STACK_SIZE_DEFAULT RTEMS_MINIMUM_STACK_SIZE
443
444/**
445 * Default size of memory allocated to the cache.
446 */
447#define RTEMS_BDBUF_CACHE_MEMORY_SIZE_DEFAULT (64 * 512)
448
449/**
450 * Default minimum size of buffers.
451 */
452#define RTEMS_BDBUF_BUFFER_MIN_SIZE_DEFAULT (512)
453
454/**
455 * Default maximum size of buffers.
456 */
457#define RTEMS_BDBUF_BUFFER_MAX_SIZE_DEFAULT (4096)
458
459/**
460 * Prepare buffering layer to work - initialize buffer descritors and (if it is
461 * neccessary) buffers. After initialization all blocks is placed into the
462 * ready state.
463 *
464 * @retval RTEMS_SUCCESSFUL Successful operation.
465 * @retval RTEMS_CALLED_FROM_ISR Called from an interrupt context.
466 * @retval RTEMS_INVALID_NUMBER The buffer maximum is not an integral multiple
467 * of the buffer minimum.
468 * @retval RTEMS_RESOURCE_IN_USE Already initialized.
469 * @retval RTEMS_UNSATISFIED Not enough resources.
470 */
471rtems_status_code
472rtems_bdbuf_init (void);
473
474/**
475 * Get block buffer for data to be written into. The buffers is set to the
476 * access or modified access state. If the buffer is in the cache and modified
477 * the state is access modified else the state is access. This buffer contents
478 * are not initialised if the buffer is not already in the cache. If the block
479 * is already resident in memory it is returned how-ever if not in memory the
480 * buffer is not read from disk. This call is used when writing the whole block
481 * on a disk rather than just changing a part of it. If there is no buffers
482 * available this call will block. A buffer obtained with this call will not be
483 * involved in a transfer request and will not be returned to another user
484 * until released. If the buffer is already with a user when this call is made
485 * the call is blocked until the buffer is returned. The highest priority
486 * waiter will obtain the buffer first.
487 *
488 * The block number is the linear block number. This is relative to the start
489 * of the partition on the media.
490 *
491 * Before you can use this function, the rtems_bdbuf_init() routine must be
492 * called at least once to initialize the cache, otherwise a fatal error will
493 * occur.
494 *
495 * @param dd [in] The disk device.
496 * @param block [in] Linear media block number.
497 * @param bd [out] Reference to the buffer descriptor pointer.
498 *
499 * @retval RTEMS_SUCCESSFUL Successful operation.
500 * @retval RTEMS_INVALID_ID Invalid block number.
501 */
502rtems_status_code
503rtems_bdbuf_get (
504  rtems_disk_device *dd,
505  rtems_blkdev_bnum block,
506  rtems_bdbuf_buffer** bd
507);
508
509/**
510 * Get the block buffer and if not already in the cache read from the disk. If
511 * specified block already cached return. The buffer is set to the access or
512 * modified access state. If the buffer is in the cache and modified the state
513 * is access modified else the state is access. If block is already being read
514 * from disk for being written to disk this call blocks. If the buffer is
515 * waiting to be written it is removed from modified queue and returned to the
516 * user. If the buffer is not in the cache a new buffer is obtained and the
517 * data read from disk. The call may block until these operations complete. A
518 * buffer obtained with this call will not be involved in a transfer request
519 * and will not be returned to another user until released. If the buffer is
520 * already with a user when this call is made the call is blocked until the
521 * buffer is returned. The highest priority waiter will obtain the buffer
522 * first.
523 *
524 * Before you can use this function, the rtems_bdbuf_init() routine must be
525 * called at least once to initialize the cache, otherwise a fatal error will
526 * occur.
527 *
528 * @param dd [in] The disk device.
529 * @param block [in] Linear media block number.
530 * @param bd [out] Reference to the buffer descriptor pointer.
531 *
532 * @retval RTEMS_SUCCESSFUL Successful operation.
533 * @retval RTEMS_INVALID_ID Invalid block number.
534 * @retval RTEMS_IO_ERROR IO error.
535 */
536rtems_status_code
537rtems_bdbuf_read (
538  rtems_disk_device *dd,
539  rtems_blkdev_bnum block,
540  rtems_bdbuf_buffer** bd
541);
542
543/**
544 * Release the buffer obtained by a read call back to the cache. If the buffer
545 * was obtained by a get call and was not already in the cache the release
546 * modified call should be used. A buffer released with this call obtained by a
547 * get call may not be in sync with the contents on disk. If the buffer was in
548 * the cache and modified before this call it will be returned to the modified
549 * queue. The buffers is returned to the end of the LRU list.
550 *
551 * Before you can use this function, the rtems_bdbuf_init() routine must be
552 * called at least once to initialize the cache, otherwise a fatal error will
553 * occur.
554 *
555 * @param bd [in] Reference to the buffer descriptor.  The buffer descriptor
556 * reference must not be @c NULL and must be obtained via rtems_bdbuf_get() or
557 * rtems_bdbuf_read().
558 *
559 * @retval RTEMS_SUCCESSFUL Successful operation.
560 * @retval RTEMS_INVALID_ADDRESS The reference is NULL.
561 */
562rtems_status_code
563rtems_bdbuf_release (rtems_bdbuf_buffer* bd);
564
565/**
566 * Release the buffer allocated with a get or read call placing it on the
567 * modified list.  If the buffer was not released modified before the hold
568 * timer is set to the configuration value. If the buffer had been released
569 * modified before but not written to disk the hold timer is not updated. The
570 * buffer will be written to disk when the hold timer has expired, there are
571 * not more buffers available in the cache and a get or read buffer needs one
572 * or a sync call has been made. If the buffer is obtained with a get or read
573 * before the hold timer has expired the buffer will be returned to the user.
574 *
575 * Before you can use this function, the rtems_bdbuf_init() routine must be
576 * called at least once to initialize the cache, otherwise a fatal error will
577 * occur.
578 *
579 * @param bd [in] Reference to the buffer descriptor.  The buffer descriptor
580 * reference must not be @c NULL and must be obtained via rtems_bdbuf_get() or
581 * rtems_bdbuf_read().
582 *
583 * @retval RTEMS_SUCCESSFUL Successful operation.
584 * @retval RTEMS_INVALID_ADDRESS The reference is NULL.
585 */
586rtems_status_code
587rtems_bdbuf_release_modified (rtems_bdbuf_buffer* bd);
588
589/**
590 * Release the buffer as modified and wait until it has been synchronized with
591 * the disk by writing it. This buffer will be the first to be transfer to disk
592 * and other buffers may also be written if the maximum number of blocks in a
593 * requests allows it.
594 *
595 * @note This code does not lock the sync mutex and stop additions to the
596 *       modified queue.
597 *
598 * Before you can use this function, the rtems_bdbuf_init() routine must be
599 * called at least once to initialize the cache, otherwise a fatal error will
600 * occur.
601 *
602 * @param bd [in] Reference to the buffer descriptor.  The buffer descriptor
603 * reference must not be @c NULL and must be obtained via rtems_bdbuf_get() or
604 * rtems_bdbuf_read().
605 *
606 * @retval RTEMS_SUCCESSFUL Successful operation.
607 * @retval RTEMS_INVALID_ADDRESS The reference is NULL.
608 */
609rtems_status_code
610rtems_bdbuf_sync (rtems_bdbuf_buffer* bd);
611
612/**
613 * Synchronize all modified buffers for this device with the disk and wait
614 * until the transfers have completed. The sync mutex for the cache is locked
615 * stopping the addition of any further modified buffers. It is only the
616 * currently modified buffers that are written.
617 *
618 * @note Nesting calls to sync multiple devices will be handled sequentially. A
619 * nested call will be blocked until the first sync request has complete.
620 *
621 * Before you can use this function, the rtems_bdbuf_init() routine must be
622 * called at least once to initialize the cache, otherwise a fatal error will
623 * occur.
624 *
625 * @param dd [in] The disk device.
626 *
627 * @retval RTEMS_SUCCESSFUL Successful operation.
628 */
629rtems_status_code
630rtems_bdbuf_syncdev (rtems_disk_device *dd);
631
632/**
633 * @brief Purges all buffers corresponding to the disk device @a dd.
634 *
635 * This may result in loss of data.  The read-ahead state of this device is reset.
636 *
637 * Before you can use this function, the rtems_bdbuf_init() routine must be
638 * called at least once to initialize the cache, otherwise a fatal error will
639 * occur.
640 *
641 * @param dd [in] The disk device.
642 */
643void
644rtems_bdbuf_purge_dev (rtems_disk_device *dd);
645
646/**
647 * @brief Sets the block size of a disk device.
648 *
649 * This will set the block size derived fields of the disk device.  The
650 * read-ahead state of this device is reset.
651 *
652 * Before you can use this function, the rtems_bdbuf_init() routine must be
653 * called at least once to initialize the cache, otherwise a fatal error will
654 * occur.
655 *
656 * @param dd [in, out] The disk device.
657 * @param dd [in] The new block size.
658 *
659 * @retval RTEMS_SUCCESSFUL Successful operation.
660 * @retval RTEMS_INVALID_NUMBER Invalid block size.
661 */
662rtems_status_code
663rtems_bdbuf_set_block_size (rtems_disk_device *dd, uint32_t block_size);
664
665/** @} */
666
667#ifdef __cplusplus
668}
669#endif
670
671#endif
Note: See TracBrowser for help on using the repository browser.