misc: iproto, iobuf cleanups
- encapsulate iproto configuration into iproto module API - iobuf: change the module to be thread-safe. - iobuf: rename obuf_ensure() to obuf_reserve() as is conventional with the reset of API. - iobuf: change ibuf to use slab cache directly, bypassing the region allocator - iobuf: consistently use int for obuf/obuf_svp iov pos and obuf_iovcnt - iobuf: remove iobuf_flush - iobuf: add iobuf pin/unpin API in preparation for iproto-in-a-thread - iobuf: don't trust iov_len as an end marker in obuf_reset() There is a chance (although currently it's never used) that one of the vectors is allocated, but not used, and the next vector of a larger size is used. In that case reset loop may stop prematurely.
Showing
- src/box/box.cc 2 additions, 8 deletionssrc/box/box.cc
- src/box/iproto.cc 15 additions, 3 deletionssrc/box/iproto.cc
- src/box/iproto.h 5 additions, 1 deletionsrc/box/iproto.h
- src/iobuf.cc 66 additions, 54 deletionssrc/iobuf.cc
- src/iobuf.h 53 additions, 23 deletionssrc/iobuf.h
- src/lib/small/slab_cache.h 13 additions, 1 deletionsrc/lib/small/slab_cache.h
- src/lua/msgpack.cc 9 additions, 9 deletionssrc/lua/msgpack.cc
Loading
Please register or sign in to comment