search for: list_len

Displaying 6 results from an estimated 6 matches for "list_len".

2020 Sep 29
1
[nbdkit PATCH] server: Adjust limit on max NBD_OPT_* from client
...with the plugin's list of export names. */ static int -send_newstyle_option_reply_exportnames (uint32_t option) +send_newstyle_option_reply_exportnames (uint32_t option, size_t *nr_options) { GET_CONN; struct nbd_fixed_new_option_reply fixed_new_option_reply; - size_t i; + size_t i, list_len; CLEANUP_EXPORTS_FREE struct nbdkit_exports *exps = NULL; + int r; exps = nbdkit_exports_new (); if (exps == NULL) @@ -91,7 +95,8 @@ send_newstyle_option_reply_exportnames (uint32_t option) if (backend_list_exports (top, read_only, exps) == -1) return send_newstyle_option_reply (...
2007 Jul 06
1
winbindd running amok
...9-1617787245-9320 1 processing name sdkruijf buf_len + 13 = 13 processing name MKurtic buf_len + 12 = 25 processing name sdkruijf appending TUE+sdkruijf at ndx 12 processing name MKurtic appending TUE+mkurtic at ndx 11 num_mem = 2, len = 25, mem = TUE+sdkruijf,TUE+mkurtic fill_grent_mem returning 1 list_len = 755, mem_len = 25 adding group num_entries = 9 entry_index = 10, num_entries = 111511 sid_to_gid: sid = [S-1-5-21-1895577662-1677200029-1617787245-299969] db_get_id_from_sid internal_get_id_from_sid: fetching record S-1-5-21-1895577662-1677200029-1617787245-299969 of type 0x2 internal_get_id_from...
2007 Mar 08
3
[BUG] clear ACL-s on destination
Destroy ACL-s on destination when no ACL-s differens between source and destination. Bug is somehow related with function send_file_name() called with negative file descriptor f. There is no such bug in 2.6.9 version, but there options "-X -A --deleted" can't be used (we have "Internal error: wrong write used in receiver."). If I fix this, avoid calling send_acl() &
2008 Feb 01
0
rsync Digest, Vol 62, Issue 1
...succeeds (e.g. the fifos and devices are recreated without error): diff -Naur rsync-3.0.0pre8/xattrs.c rsync-3.0.0pre8_mod/xattrs.c --- rsync-3.0.0pre8/xattrs.c 2008-01-12 11:14:56.000000000 -0600 +++ rsync-3.0.0pre8_mod/xattrs.c 2008-01-28 22:31:11.000000000 -0600 @@ -128,7 +128,7 @@ } if (list_len >= 0) return list_len; - if (errno == ENOTSUP) + if (errno == ENOTSUP || errno == EPERM) return 0; if (errno == ERANGE) { list_len = sys_llistxattr(fname, NULL, 0); @@ -766,6 +766,8 @@ } if (sys_lsetxattr(fname, name, rxas[i].datum, rxas[i].datum_len) < 0) { + if (er...
2008 Oct 17
3
[PATCH 0/3] ocfs2: add security EA and ACL support v3
Hi, These three patches fix the problems in the version two. And them base on the Tao's patches: ocfs2/xattr: xattr improvement The first patch fix some problem in xattr code. The second patch add security EA support. The third patch add ACL support. Best regards, tiger
2013 Mar 25
86
[PATCH 00/28] libxl: ocaml: improve the bindings
The following series of patches fill in most of the gaps in the OCaml bindings to libxl, to make them useful for clients such as xapi/xenopsd (from XCP). There are a number of bugfixes to the existing bindings as well. I have an experimental version of xenopsd that successfully uses the new bindings. An earlier version of the first half of the series was submitted to the last by Ian Campbell on