Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

wip: ublk zoned #28

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open

wip: ublk zoned #28

wants to merge 5 commits into from

Commits on Jun 23, 2023

  1. missing <limits.h> header

    building on my Debian 11 system with gcc I get these errors:
    
          CXX      ublk-tgt_loop.o
        tgt_loop.cpp: In function ‘int loop_init_tgt(ublksrv_dev*, int, int, char**)’:
        tgt_loop.cpp:123:27: error: ‘UINT_MAX’ was not declared in this scope
          123 |    .max_discard_sectors = UINT_MAX >> 9,
              |                           ^~~~~~~~
        tgt_loop.cpp:8:1: note: ‘UINT_MAX’ is defined in header ‘<climits>’; did you forget to ‘#include <climits>’?
            7 | #include "ublksrv_tgt.h"
          +++ |+#include <climits>
            8 |
    
    Adding the <limits.h> header to ublksrv_tgt.h as suggested by Ming Lei.
    
    Signed-off-by: Bart Trojanowski <[email protected]>
    bartman authored and metaspace committed Jun 23, 2023
    Configuration menu
    Copy the full SHA
    f4f2931 View commit details
    Browse the repository at this point in the history

Commits on Jul 11, 2023

  1. wip: ublk zoned

    metaspace committed Jul 11, 2023
    Configuration menu
    Copy the full SHA
    533c8d7 View commit details
    Browse the repository at this point in the history
  2. wip: zone append

    metaspace committed Jul 11, 2023
    Configuration menu
    Copy the full SHA
    213d44e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    acc072e View commit details
    Browse the repository at this point in the history

Commits on Aug 3, 2023

  1. Configuration menu
    Copy the full SHA
    2966e5f View commit details
    Browse the repository at this point in the history