| 1102 | } |
| 1103 | |
| 1104 | void free_trailers(struct list_head *trailers) |
| 1105 | { |
| 1106 | struct list_head *pos, *p; |
| 1107 | list_for_each_safe(pos, p, trailers) { |
| 1108 | list_del(pos); |
| 1109 | free_trailer_item(list_entry(pos, struct trailer_item, list)); |
| 1110 | } |
| 1111 | } |
| 1112 | |
| 1113 | size_t trailer_block_start(struct trailer_block *trailer_block) |
| 1114 | { |
no test coverage detected