NetBSD-Bugs archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

PR/58646 CVS commit: src/sys/dev



The following reply was made to PR kern/58646; it has been noted by GNATS.

From: "Taylor R Campbell" <riastradh%netbsd.org@localhost>
To: gnats-bugs%gnats.NetBSD.org@localhost
Cc: 
Subject: PR/58646 CVS commit: src/sys/dev
Date: Mon, 26 Aug 2024 13:46:51 +0000

 Module Name:	src
 Committed By:	riastradh
 Date:		Mon Aug 26 13:46:51 UTC 2024
 
 Modified Files:
 	src/sys/dev: random.c
 
 Log Message:
 /dev/random: Fix two signal bugs.
 
 1. If a long write to /dev/random is interrupted by a signal, it may
    proceed to sleep on the entropy source lock instead of returning
    promptly.
 
    => Don't try to consolidate entropy if we've already been
       interrupted by a signal.
 
 2. If a write to /dev/random is interrupted by a signal while
    sleeping on the entropy source lock, it may fail to report EINTR.
 
    => Pass through EINTR from entropy consolidation via new
       entropy_consolidate_sig function.
 
 PR kern/58646: /dev/random, kern.entropy.*: signal bugs
 
 
 To generate a diff of this commit:
 cvs rdiff -u -r1.10 -r1.11 src/sys/dev/random.c
 
 Please note that diffs are not public domain; they are subject to the
 copyright notices on the relevant files.
 


Home | Main Index | Thread Index | Old Index