data-structure-v9.txt 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. This describes the in kernel data structure for DRBD-9. Starting with
  2. Linux v3.14 we are reorganizing DRBD to use this data structure.
  3. Basic Data Structure
  4. ====================
  5. A node has a number of DRBD resources. Each such resource has a number of
  6. devices (aka volumes) and connections to other nodes ("peer nodes"). Each DRBD
  7. device is represented by a block device locally.
  8. The DRBD objects are interconnected to form a matrix as depicted below; a
  9. drbd_peer_device object sits at each intersection between a drbd_device and a
  10. drbd_connection:
  11. /--------------+---------------+.....+---------------\
  12. | resource | device | | device |
  13. +--------------+---------------+.....+---------------+
  14. | connection | peer_device | | peer_device |
  15. +--------------+---------------+.....+---------------+
  16. : : : : :
  17. : : : : :
  18. +--------------+---------------+.....+---------------+
  19. | connection | peer_device | | peer_device |
  20. \--------------+---------------+.....+---------------/
  21. In this table, horizontally, devices can be accessed from resources by their
  22. volume number. Likewise, peer_devices can be accessed from connections by
  23. their volume number. Objects in the vertical direction are connected by double
  24. linked lists. There are back pointers from peer_devices to their connections a
  25. devices, and from connections and devices to their resource.
  26. All resources are in the drbd_resources double-linked list. In addition, all
  27. devices can be accessed by their minor device number via the drbd_devices idr.
  28. The drbd_resource, drbd_connection, and drbd_device objects are reference
  29. counted. The peer_device objects only serve to establish the links between
  30. devices and connections; their lifetime is determined by the lifetime of the
  31. device and connection which they reference.