fs/netfs/read_pgpriv2.c

Source file repositories/reference/linux-study-clean/fs/netfs/read_pgpriv2.c

File Facts

System
Linux kernel
Corpus path
fs/netfs/read_pgpriv2.c
Extension
.c
Size
6280 bytes
Lines
233
Domain
Core OS
Bucket
VFS And Filesystem Core
Inferred role
Core OS: implementation source
Status
source implementation candidate

Why This File Exists

Core operating-system implementation surface: boot, tasks, memory, VFS, syscall-facing interfaces, synchronization, credentials, and isolation.

Dependency Surface

Detected Declarations

Annotated Snippet

if (slot >= folioq_nr_slots(folioq)) {
			folioq = rolling_buffer_delete_spent(&creq->buffer);
			if (!folioq)
				goto done;
			slot = 0;
		}

		if (fpos + fsize >= collected_to)
			break;
	}

	creq->buffer.tail = folioq;
done:
	creq->buffer.first_tail_slot = slot;
	return made_progress;
}

Annotation

Implementation Notes