Displaying 7 results from an estimated 7 matches for "592468".
Did you mean:
59246
2016 Oct 28
3
Samba and BTRFS server-side copy
...nd = G_VFS_BACKEND_SMB (backend);
> ssize_t res;
> smbc_read_fn smbc_read;
>
> /* libsmbclient limits blocksize to (64*1024)-2 for Windows servers,
> * let's do the same here to achieve reasonable performance. (#588391)
> *
> * TODO: port to pull mechanism (#592468)
> */
> if (bytes_requested > 65534)
> bytes_requested = 65534;
>
> smbc_read = smbc_getFunctionRead (op_backend->smb_context);
> res = smbc_read (op_backend->smb_context, (SMBCFILE *)handle, buffer, bytes_requested);
>
> which is also completely brok...
2016 Oct 28
2
Samba and BTRFS server-side copy
...;> smbc_read_fn smbc_read;
>>>
>>> /* libsmbclient limits blocksize to (64*1024)-2 for Windows
>>> servers,
>>> * let's do the same here to achieve reasonable performance.
>>> (#588391) *
>>> * TODO: port to pull mechanism (#592468)
>>> */
>>> if (bytes_requested > 65534)
>>> bytes_requested = 65534;
>>>
>>> smbc_read = smbc_getFunctionRead (op_backend->smb_context);
>>> res = smbc_read (op_backend->smb_context, (SMBCFILE *)handle,
>>> b...
2016 Oct 28
3
Samba and BTRFS server-side copy
On Thu, 27 Oct 2016 16:57:13 -0700, Jeremy Allison <jra at samba.org>
wrote :
> On Fri, Oct 28, 2016 at 01:42:35AM +0200, Saint Germain via samba
> wrote:
> > On Thu, 27 Oct 2016 16:27:05 -0700, Jeremy Allison <jra at samba.org>
> > > if you see any of these then it happened.
> >
> > Ok I understand how to check that it happened, but how can I make
2016 Oct 28
0
Samba and BTRFS server-side copy
...ested)
{
GVfsBackendSmb *op_backend = G_VFS_BACKEND_SMB (backend);
ssize_t res;
smbc_read_fn smbc_read;
/* libsmbclient limits blocksize to (64*1024)-2 for Windows servers,
* let's do the same here to achieve reasonable performance. (#588391)
*
* TODO: port to pull mechanism (#592468)
*/
if (bytes_requested > 65534)
bytes_requested = 65534;
smbc_read = smbc_getFunctionRead (op_backend->smb_context);
res = smbc_read (op_backend->smb_context, (SMBCFILE *)handle, buffer, bytes_requested);
which is also completely broken and wrong. The read call
can take any...
2016 Oct 28
0
Samba and BTRFS server-side copy
...; ssize_t res;
> > smbc_read_fn smbc_read;
> >
> > /* libsmbclient limits blocksize to (64*1024)-2 for Windows
> > servers,
> > * let's do the same here to achieve reasonable performance.
> > (#588391) *
> > * TODO: port to pull mechanism (#592468)
> > */
> > if (bytes_requested > 65534)
> > bytes_requested = 65534;
> >
> > smbc_read = smbc_getFunctionRead (op_backend->smb_context);
> > res = smbc_read (op_backend->smb_context, (SMBCFILE *)handle,
> > buffer, bytes_requested);...
2016 Nov 02
0
Samba and BTRFS server-side copy
...d;
> >>>
> >>> /* libsmbclient limits blocksize to (64*1024)-2 for Windows
> >>> servers,
> >>> * let's do the same here to achieve reasonable performance.
> >>> (#588391) *
> >>> * TODO: port to pull mechanism (#592468)
> >>> */
> >>> if (bytes_requested > 65534)
> >>> bytes_requested = 65534;
> >>>
> >>> smbc_read = smbc_getFunctionRead (op_backend->smb_context);
> >>> res = smbc_read (op_backend->smb_context, (SMB...
2016 Nov 02
2
Samba and BTRFS server-side copy
...t;
>>>>> /* libsmbclient limits blocksize to (64*1024)-2 for Windows
>>>>> servers,
>>>>> * let's do the same here to achieve reasonable performance.
>>>>> (#588391) *
>>>>> * TODO: port to pull mechanism (#592468)
>>>>> */
>>>>> if (bytes_requested > 65534)
>>>>> bytes_requested = 65534;
>>>>>
>>>>> smbc_read = smbc_getFunctionRead (op_backend->smb_context);
>>>>> res = smbc_read (op_backen...