RE: Splice status

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Eric Dumazet
Date: Tuesday, July 13, 2010 - 7:11 am

Le mardi 13 juillet 2010 à 14:41 +0300, Ofer Heifetz a écrit :

splice(socket -> pipe) provides partial buffers (depending on the MTU)

With typical MTU=1500 and tcp timestamps, each network frame contains
1448 bytes of payload, partially filling one page (of 4096 bytes)

When doing the splice(pipe -> file), kernel has to coalesce partial
data, but amount of written data per syscall() is small (about 20
Kbytes)

Without splice(), the write() syscall provides more data, and vfs
overhead is smaller as buffer size is a power of two.

Samba uses a 128 KBytes TRANSFER_BUF_SIZE in its default_sys_recvfile()
implementation, it easily outperforms splice() implementation.

You could try extending pipe size (fcntl(fd, F_SETPIPE_SZ, 256)), maybe
it will be a bit better. (and ask 256*4096 bytes to splice())

I tried this and got about 256Kbytes per splice() call...

# perf report
# Events: 13K
#
# Overhead         Command      Shared Object  Symbol
# ........  ..............  .................  ......
#
     8.69%  splice-fromnet  [kernel.kallsyms]  [k] memcpy
     3.82%  splice-fromnet  [kernel.kallsyms]  [k] kunmap_atomic
     3.51%  splice-fromnet  [kernel.kallsyms]  [k] __block_prepare_write
     2.79%  splice-fromnet  [kernel.kallsyms]  [k] __skb_splice_bits
     2.58%  splice-fromnet  [kernel.kallsyms]  [k] ext3_mark_iloc_dirty
     2.45%  splice-fromnet  [kernel.kallsyms]  [k] do_get_write_access
     2.04%  splice-fromnet  [kernel.kallsyms]  [k] __find_get_block
     1.89%  splice-fromnet  [kernel.kallsyms]  [k] _raw_spin_lock
     1.83%  splice-fromnet  [kernel.kallsyms]  [k] journal_add_journal_head
     1.46%  splice-fromnet  [bnx2x]            [k] bnx2x_rx_int
     1.46%  splice-fromnet  [kernel.kallsyms]  [k] kfree
     1.42%  splice-fromnet  [kernel.kallsyms]  [k] journal_put_journal_head
     1.29%  splice-fromnet  [kernel.kallsyms]  [k] __ext3_get_inode_loc
     1.26%  splice-fromnet  [kernel.kallsyms]  [k] journal_dirty_metadata
     1.25%  splice-fromnet  [kernel.kallsyms]  [k] page_address
     1.20%  splice-fromnet  [kernel.kallsyms]  [k] journal_cancel_revoke
     1.15%  splice-fromnet  [kernel.kallsyms]  [k] tcp_read_sock
     1.09%  splice-fromnet  [kernel.kallsyms]  [k] unlock_buffer
     1.09%  splice-fromnet  [kernel.kallsyms]  [k] pipe_to_file
     1.05%  splice-fromnet  [kernel.kallsyms]  [k] radix_tree_lookup_element
     1.04%  splice-fromnet  [kernel.kallsyms]  [k] kmap_atomic_prot
     1.04%  splice-fromnet  [kernel.kallsyms]  [k] kmem_cache_free
     1.03%  splice-fromnet  [kernel.kallsyms]  [k] kmem_cache_alloc
     1.01%  splice-fromnet  [bnx2x]            [k] bnx2x_poll


--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
Splice status, Ofer Heifetz, (Mon Jul 5, 2:26 am)
Re: Splice status, Changli Gao, (Mon Jul 5, 2:59 am)
RE: Splice status, Ofer Heifetz, (Mon Jul 5, 3:52 am)
Re: Splice status, Changli Gao, (Mon Jul 5, 5:08 am)
RE: Splice status, Eric Dumazet, (Mon Jul 5, 5:50 am)
RE: Splice status, Ofer Heifetz, (Mon Jul 5, 6:47 am)
RE: Splice status, Eric Dumazet, (Mon Jul 5, 8:34 am)
Re: Splice status, Changli Gao, (Mon Jul 5, 7:01 pm)
RE: Splice status, Ofer Heifetz, (Mon Jul 5, 7:36 pm)
Re: Splice status, Eric Dumazet, (Mon Jul 5, 8:56 pm)
Re: Splice status, Changli Gao, (Sun Jul 11, 6:08 am)
RE: Splice status, Ofer Heifetz, (Tue Jul 13, 4:41 am)
Re: Splice status, Changli Gao, (Tue Jul 13, 5:32 am)
RE: Splice status, Ofer Heifetz, (Tue Jul 13, 5:42 am)
Re: Splice status, Changli Gao, (Tue Jul 13, 6:58 am)
RE: Splice status, Eric Dumazet, (Tue Jul 13, 7:11 am)
RE: Splice status, Ofer Heifetz, (Tue Jul 13, 7:40 am)
RE: Splice status, Ofer Heifetz, (Wed Jul 14, 8:08 am)
RE: Splice status, Ofer Heifetz, (Wed Jul 14, 8:47 pm)
RE: Splice status, Ofer Heifetz, (Sun Jul 25, 7:47 am)
Re: Splice status, Changli Gao, (Mon Jul 26, 12:41 am)
Re: Splice status, Jarek Poplawski, (Mon Jul 26, 1:37 pm)
Re: Splice status, Eric Dumazet, (Mon Jul 26, 1:50 pm)