Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit fbf9a7a

Browse files
committed
Fix 'mmap' DSM implementation with allocations larger than 4 GB
Fixes bug #18341. Backpatch to all supported versions. Discussion: https://www.postgresql.org/message-id/18341-ce16599e7fd6228c@postgresql.org
1 parent 0736a8e commit fbf9a7a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/storage/ipc/dsm_impl.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -873,7 +873,7 @@ dsm_impl_mmap(dsm_op op, dsm_handle handle, Size request_size,
873873
* transferring data to the kernel.
874874
*/
875875
char *zbuffer = (char *) palloc0(ZBUFFER_SIZE);
876-
uint32 remaining = request_size;
876+
Size remaining = request_size;
877877
bool success = true;
878878

879879
/*

0 commit comments

Comments
 (0)