search for: chain_siz

Displaying 2 results from an estimated 2 matches for "chain_siz".

Did you mean: chain_size
2008 Oct 02
0
Comments for squeue.c; part 2.
...n. It is not quite clear what is a tail (and why it is needed as well) 558 * For a chain of single packet (i.e. mp == tail), go through the 559 * fast path if no one is processing the squeue and nothing is queued. Is single packet case cnt == 1 or mp == tail or both or one of these? Or is it chain_size == 1? What is the diferece between the cnt and chain_size? Also, there is a lot of mentioning of ''fast-path'' without any explanation of what it actually means. Also, the comment for the function should mentioned that for any processed messages the corresponding connp looses one...
2005 Jan 02
1
sendfile questions...
Why in smbd/reply.c does send_file_readX only use sendfile if write cache size is 0? <snip> if (chain_size ==0 && (CVAL(inbuf,smb_vwv0) == 0xFF) && lp_use_sendfile( SNUM(conn)) && (lp_write_cache_size(SNUM(conn)) == 0) ) { </snip> While its true send_file_readX works regardless of the state of oplocks (which is cool!) the smb.conf.5 man page still...