Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2024-03-04 | dm vdo logger: change from uds_ to vdo_ namespace | Mike Snitzer | 1 | -5/+5 | |
Rename all uds_log_* to vdo_log_*. Signed-off-by: Mike Snitzer <[email protected]> Signed-off-by: Chung Chung <[email protected]> Signed-off-by: Matthew Sakai <[email protected]> | |||||
2024-03-04 | dm vdo permassert: audit all of ASSERT to test for VDO_SUCCESS | Mike Snitzer | 1 | -20/+20 | |
Also rename ASSERT to VDO_ASSERT and ASSERT_LOG_ONLY to VDO_ASSERT_LOG_ONLY. But re-introduce ASSERT and ASSERT_LOG_ONLY as a placeholder for the benefit of dm-vdo/indexer. Signed-off-by: Mike Snitzer <[email protected]> Signed-off-by: Matthew Sakai <[email protected]> | |||||
2024-03-04 | dm vdo memory-alloc: change from uds_ to vdo_ namespace | Mike Snitzer | 1 | -10/+10 | |
Signed-off-by: Mike Snitzer <[email protected]> Signed-off-by: Matthew Sakai <[email protected]> | |||||
2024-03-04 | dm vdo: remove internal ticket references | Susan LeGendre-McGhee | 1 | -1/+0 | |
Signed-off-by: Susan LeGendre-McGhee <[email protected]> Signed-off-by: Matthew Sakai <[email protected]> Signed-off-by: Mike Snitzer <[email protected]> | |||||
2024-02-20 | dm vdo: cleanup style for comments in structs | Mike Snitzer | 1 | -8/+8 | |
Use /* ... */ rather than /** ... */ if for no other reason than syntax highlighting is improved (at least for me, in emacs: comments are now red, code is yellow. Previously comments were also yellow). Signed-off-by: Mike Snitzer <[email protected]> Signed-off-by: Susan LeGendre-McGhee <[email protected]> Signed-off-by: Matthew Sakai <[email protected]> | |||||
2024-02-20 | dm vdo: fix various blk_opf_t sparse warnings | Mike Snitzer | 1 | -2/+2 | |
Use proper blk_opf_t type rather than unsigned int. Signed-off-by: Mike Snitzer <[email protected]> Signed-off-by: Susan LeGendre-McGhee <[email protected]> Signed-off-by: Matthew Sakai <[email protected]> | |||||
2024-02-20 | dm vdo wait-queue: add proper namespace to interface | Mike Snitzer | 1 | -6/+6 | |
Rename various interfaces and structs associated with vdo's wait-queue, e.g.: s/wait_queue/vdo_wait_queue/, s/waiter/vdo_waiter/, etc. Now all function names start with "vdo_waitq_" or "vdo_waiter_". Reviewed-by: Ken Raeburn <[email protected]> Signed-off-by: Mike Snitzer <[email protected]> Signed-off-by: Matthew Sakai <[email protected]> | |||||
2024-02-20 | dm vdo: add vio, the request object for vdo metadata | Matthew Sakai | 1 | -0/+501 | |
Add the data and methods that implement the vio object that is basic unit of I/O in vdo. Co-developed-by: J. corwin Coburn <[email protected]> Signed-off-by: J. corwin Coburn <[email protected]> Co-developed-by: Michael Sclafani <[email protected]> Signed-off-by: Michael Sclafani <[email protected]> Co-developed-by: Sweet Tea Dorminy <[email protected]> Signed-off-by: Sweet Tea Dorminy <[email protected]> Co-developed-by: Bruce Johnston <[email protected]> Signed-off-by: Bruce Johnston <[email protected]> Co-developed-by: Ken Raeburn <[email protected]> Signed-off-by: Ken Raeburn <[email protected]> Signed-off-by: Matthew Sakai <[email protected]> Signed-off-by: Mike Snitzer <[email protected]> |