요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.
1. 요약·해설
원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.
2. 영어 원문 전체
번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.
원문 전체 펼치기
1
What: tcp_dma_copybreak sysctl
2
Date: Removed in kernel v3.13
3
Contact: Dan Williams <dan.j.williams@intel.com>
4
Description:
5
Formerly the lower limit, in bytes, of the size of socket reads
6
that will be offloaded to a DMA copy engine. Removed due to
7
coherency issues of the cpu potentially touching the buffers
8
while dma is in flight.
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
tcp_dma_copybreak sysctl
1-8| 항목 | 값 |
|---|---|
| What | tcp_dma_copybreak sysctl |
| Date | kernel v3.13에서 제거 |
| Contact | Dan Williams <dan.j.williams@intel.com> |
이전에는 socket read를 DMA copy engine으로 offload할지를 정하는 byte 단위의 최소 크기였다. DMA가 진행 중인 동안 CPU가 해당 buffer에 접근할 가능성 때문에 coherency 문제가 발생하여 제거됐다.
DMA coherency 문제
net_dma:1-8CPU가 DMA 진행 중인 buffer를 건드릴 수 있어 일관성을 보장하기 어려웠고, sysctl은 kernel v3.13에서 제거됐습니다.