Displaying 4 results from an estimated 4 matches for "96699b5".
2020 Sep 11
3
[libnbd PATCH] api: Add LIBNBD_SHUTDOWN_IMMEDIATE flag
...+++-
tests/Makefile.am | 7 ++
tests/shutdown-flags.c | 166 +++++++++++++++++++++++++++++++++++++++++
.gitignore | 1 +
7 files changed, 221 insertions(+), 11 deletions(-)
create mode 100644 tests/shutdown-flags.c
diff --git a/lib/internal.h b/lib/internal.h
index b2637bd..96699b5 100644
--- a/lib/internal.h
+++ b/lib/internal.h
@@ -435,6 +435,8 @@ extern int64_t nbd_internal_command_common (struct nbd_handle *h,
struct socket *nbd_internal_socket_create (int fd);
/* states.c */
+extern void nbd_internal_abort_commands (struct nbd_handle *h,
+...
2020 Sep 17
0
Re: [libnbd PATCH] api: Add LIBNBD_SHUTDOWN_IMMEDIATE flag
...++
> tests/shutdown-flags.c | 166 +++++++++++++++++++++++++++++++++++++++++
> .gitignore | 1 +
> 7 files changed, 221 insertions(+), 11 deletions(-)
> create mode 100644 tests/shutdown-flags.c
>
> diff --git a/lib/internal.h b/lib/internal.h
> index b2637bd..96699b5 100644
> --- a/lib/internal.h
> +++ b/lib/internal.h
> @@ -435,6 +435,8 @@ extern int64_t nbd_internal_command_common (struct nbd_handle *h,
> struct socket *nbd_internal_socket_create (int fd);
>
> /* states.c */
> +extern void nbd_internal_abort_commands (struct nbd_handle...
2020 Sep 11
0
[libnbd PATCH v2 3/5] api: Add nbd_set_strict_mode
...generator/API.ml | 165 ++++++++++++++++++++++++++++++++++++-----------
lib/handle.c | 16 +++++
lib/rw.c | 134 +++++++++++++++++++++-----------------
tests/errors.c | 21 +++++-
5 files changed, 240 insertions(+), 99 deletions(-)
diff --git a/lib/internal.h b/lib/internal.h
index 96699b5..2a5147f 100644
--- a/lib/internal.h
+++ b/lib/internal.h
@@ -148,6 +148,9 @@ struct nbd_handle {
bool debug;
nbd_debug_callback debug_callback;
+ /* How strict to be. */
+ uint32_t strict;
+
/* State machine.
*
* The actual current state is ‘state’. ‘public_state’ is updated
d...
2020 Sep 11
10
[libnbd PATCH v2 0/5] Add knobs for client- vs. server-side validation
In v2:
- now based on my proposal to add LIBNBD_SHUTDOWN_IMMEDIATE
- four flags instead of two: STRICT_FLAGS is new (patch 4),
and STRICT_BOUNDS is separate from STRICT_ZERO_SIZE (patch 5)
- various refactorings for more shared code and less duplication
Eric Blake (5):
api: Add xxx_MASK constant for each Flags type
generator: Refactor filtering of accepted OFlags
api: Add