Lines Matching refs:bytes
821 size_t bytes) in ceph_msg_data_bio_advance() argument
838 BUG_ON(cursor->resid < bytes); in ceph_msg_data_bio_advance()
839 cursor->resid -= bytes; in ceph_msg_data_bio_advance()
840 cursor->vector_offset += bytes; in ceph_msg_data_bio_advance()
913 size_t bytes) in ceph_msg_data_pages_advance() argument
917 BUG_ON(cursor->page_offset + bytes > PAGE_SIZE); in ceph_msg_data_pages_advance()
921 cursor->resid -= bytes; in ceph_msg_data_pages_advance()
922 cursor->page_offset = (cursor->page_offset + bytes) & ~PAGE_MASK; in ceph_msg_data_pages_advance()
923 if (!bytes || cursor->page_offset) in ceph_msg_data_pages_advance()
990 size_t bytes) in ceph_msg_data_pagelist_advance() argument
1001 BUG_ON((cursor->offset & ~PAGE_MASK) + bytes > PAGE_SIZE); in ceph_msg_data_pagelist_advance()
1005 cursor->resid -= bytes; in ceph_msg_data_pagelist_advance()
1006 cursor->offset += bytes; in ceph_msg_data_pagelist_advance()
1008 if (!bytes || cursor->offset & ~PAGE_MASK) in ceph_msg_data_pagelist_advance()
1111 size_t bytes) in ceph_msg_data_advance() argument
1115 BUG_ON(bytes > cursor->resid); in ceph_msg_data_advance()
1118 new_piece = ceph_msg_data_pagelist_advance(cursor, bytes); in ceph_msg_data_advance()
1121 new_piece = ceph_msg_data_pages_advance(cursor, bytes); in ceph_msg_data_advance()
1125 new_piece = ceph_msg_data_bio_advance(cursor, bytes); in ceph_msg_data_advance()
1133 cursor->total_resid -= bytes; in ceph_msg_data_advance()