Displaying 5 results from an estimated 5 matches for "669,19".
Did you mean:
669,12
2020 Aug 06
2
[PATCH nbdkit] Experiment with parallel python plugin
...e,
bool fast_zero = flags & NBDKIT_FLAG_FAST_ZERO;
bool emulate = false;
bool need_flush = false;
+ void *zero_buffer = NULL;
+ int buffer_size = MIN (MAX_REQUEST_SIZE, count);
if (fua && backend_can_fua (b) != NBDKIT_FUA_NATIVE) {
flags &= ~NBDKIT_FLAG_FUA;
@@ -669,19 +671,25 @@ plugin_zero (struct backend *b, void *handle,
threadlocal_set_error (0);
*err = 0;
+ *err = posix_memalign(&zero_buffer, 4096, buffer_size);
+ if (*err != 0) {
+ r = -1;
+ goto done;
+ }
+
+ memset(zero_buffer, 0, buffer_size);
+
while (count) {
- /* Al...
2020 Aug 06
0
[PATCH nbdkit] Experiment with parallel python plugin
...e,
bool fast_zero = flags & NBDKIT_FLAG_FAST_ZERO;
bool emulate = false;
bool need_flush = false;
+ void *zero_buffer = NULL;
+ int buffer_size = MIN (MAX_REQUEST_SIZE, count);
if (fua && backend_can_fua (b) != NBDKIT_FUA_NATIVE) {
flags &= ~NBDKIT_FLAG_FUA;
@@ -669,19 +671,25 @@ plugin_zero (struct backend *b, void *handle,
threadlocal_set_error (0);
*err = 0;
+ *err = posix_memalign(&zero_buffer, 4096, buffer_size);
+ if (*err != 0) {
+ r = -1;
+ goto done;
+ }
+
+ memset(zero_buffer, 0, buffer_size);
+
while (count) {
- /* Al...
2020 Aug 06
0
Re: [PATCH nbdkit] Experiment with parallel python plugin
...T_FLAG_FAST_ZERO;
> bool emulate = false;
> bool need_flush = false;
> + void *zero_buffer = NULL;
> + int buffer_size = MIN (MAX_REQUEST_SIZE, count);
>
> if (fua && backend_can_fua (b) != NBDKIT_FUA_NATIVE) {
> flags &= ~NBDKIT_FLAG_FUA;
> @@ -669,19 +671,25 @@ plugin_zero (struct backend *b, void *handle,
> threadlocal_set_error (0);
> *err = 0;
>
> + *err = posix_memalign(&zero_buffer, 4096, buffer_size);
> + if (*err != 0) {
> + r = -1;
> + goto done;
> + }
> +
> + memset(zero_buffer...
2010 Apr 09
4
Patch: support URLAUTH, BURL, CATENATE
...4,8 @@
/* Skip incoming data until newline is found,
returns TRUE if newline was found. */
-static bool client_skip_line(struct client *client)
+/* APPLE - catenate - was static */
+bool client_skip_line(struct client *client)
{
const unsigned char *data;
size_t i, data_size;
@@ -655,6 +669,19 @@
cmd->param_error = TRUE;
client_command_free(&cmd);
return TRUE;
+
+ /* APPLE - urlauth - Users logged in via the submit user may execute
+ only commands marked with COMMAND_FLAG_OK_FOR_SUBMIT_USER. This
+ prevents leakage of the submit user's credentials from causi...
2006 Jul 26
5
linux-2.6-xen.hg
Hi,
Is the http://xenbits.xensource.com/linux-2.6-xen.hg tree still being
updated? if not, what''s the preferred Linux tree to track that has all
of the Xen bits?
Thanks,
Muli
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel