Page MenuHomeFreeBSD

D27512.id80443.diff
No OneTemporary

D27512.id80443.diff

Index: sys/kern/kern_descrip.c
===================================================================
--- sys/kern/kern_descrip.c
+++ sys/kern/kern_descrip.c
@@ -1830,7 +1830,8 @@
* which must not be freed.
*/
if (onfiles > NDFILE) {
- if (curproc->p_numthreads == 1 && fdp->fd_refcnt == 1)
+ if (curproc->p_numthreads == 1 &&
+ refcount_load(&fdp->fd_refcnt) == 1)
free(otable, M_FILEDESC);
else {
ft = (struct freetable *)&otable->fdt_ofiles[onfiles];
@@ -2160,7 +2161,7 @@
fddrop(struct filedesc *fdp)
{
- if (fdp->fd_holdcnt > 1) {
+ if (refcount_load(&fdp->fd_holdcnt) > 1) {
if (refcount_release(&fdp->fd_holdcnt) == 0)
return;
}
@@ -2221,7 +2222,7 @@
struct filedesc *tmp;
struct proc *p = td->td_proc;
- if (p->p_fd->fd_refcnt == 1)
+ if (refcount_load(&p->p_fd->fd_refcnt) == 1)
return;
tmp = fdcopy(p->p_fd);
@@ -2570,7 +2571,8 @@
int i;
fdp = td->td_proc->p_fd;
- KASSERT(fdp->fd_refcnt == 1, ("the fdtable should not be shared"));
+ KASSERT(refcount_load(&fdp->fd_refcnt) == 1,
+ ("the fdtable should not be shared"));
MPASS(fdp->fd_nfiles >= 3);
for (i = 0; i <= 2; i++) {
fp = fdp->fd_ofiles[i].fde_file;
@@ -2621,7 +2623,8 @@
int i, lastfile;
fdp = td->td_proc->p_fd;
- KASSERT(fdp->fd_refcnt == 1, ("the fdtable should not be shared"));
+ KASSERT(refcount_load(&fdp->fd_refcnt) == 1,
+ ("the fdtable should not be shared"));
lastfile = fdlastfile_single(fdp);
for (i = 0; i <= lastfile; i++) {
fde = &fdp->fd_ofiles[i];
@@ -2651,7 +2654,8 @@
int i, error, devnull;
fdp = td->td_proc->p_fd;
- KASSERT(fdp->fd_refcnt == 1, ("the fdtable should not be shared"));
+ KASSERT(refcount_load(&fdp->fd_refcnt) == 1,
+ ("the fdtable should not be shared"));
MPASS(fdp->fd_nfiles >= 3);
devnull = -1;
for (i = 0; i <= 2; i++) {
@@ -3974,7 +3978,8 @@
continue;
FILEDESC_SLOCK(fdp);
lastfile = fdlastfile(fdp);
- for (n = 0; fdp->fd_refcnt > 0 && n <= lastfile; ++n) {
+ for (n = 0; refcount_load(&fdp->fd_refcnt) > 0 && n <= lastfile;
+ n++) {
if ((fp = fdp->fd_ofiles[n].fde_file) == NULL)
continue;
xf.xf_fd = n;
@@ -4245,7 +4250,7 @@
pwd_drop(pwd);
FILEDESC_SLOCK(fdp);
lastfile = fdlastfile(fdp);
- for (i = 0; fdp->fd_refcnt > 0 && i <= lastfile; i++) {
+ for (i = 0; refcount_load(&fdp->fd_refcnt) > 0 && i <= lastfile; i++) {
if ((fp = fdp->fd_ofiles[i].fde_file) == NULL)
continue;
#ifdef CAPABILITIES
@@ -4400,7 +4405,7 @@
pwd_drop(pwd);
FILEDESC_SLOCK(fdp);
lastfile = fdlastfile(fdp);
- for (i = 0; fdp->fd_refcnt > 0 && i <= lastfile; i++) {
+ for (i = 0; refcount_load(&fdp->fd_refcnt) > 0 && i <= lastfile; i++) {
if ((fp = fdp->fd_ofiles[i].fde_file) == NULL)
continue;
export_file_to_kinfo(fp, i, NULL, kif, fdp,

File Metadata

Mime Type
text/plain
Expires
Thu, Apr 30, 9:55 PM (4 h, 12 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
32383964
Default Alt Text
D27512.id80443.diff (2 KB)

Event Timeline