View | Details | Raw Unified | Return to bug 65318
Collapse All | Expand All

(-)a/fs/proc/generic.c (-1 / +1 lines)
Lines 60-66 Link Here
60
		return -ENOMEM;
60
		return -ENOMEM;
61
61
62
	while ((nbytes > 0) && !eof) {
62
	while ((nbytes > 0) && !eof) {
63
		count = min_t(ssize_t, PROC_BLOCK_SIZE, nbytes);
63
		count = min_t(size_t, PROC_BLOCK_SIZE, nbytes);
64
64
65
		start = NULL;
65
		start = NULL;
66
		if (dp->get_info) {
66
		if (dp->get_info) {

Return to bug 65318