fd: tidy up closing a fd
- avoid a call to knote_close in the common case - annotate mqueue as unlikely Sponsored by: The FreeBSD Foundation
This commit is contained in:
parent
663de8167e
commit
86db4d40ac
@ -1186,12 +1186,13 @@ closefp(struct filedesc *fdp, int fd, struct file *fp, struct thread *td,
|
||||
* knote_fdclose to prevent a race of the fd getting opened, a knote
|
||||
* added, and deleteing a knote for the new fd.
|
||||
*/
|
||||
if (__predict_false(!TAILQ_EMPTY(&fdp->fd_kqlist)))
|
||||
knote_fdclose(td, fd);
|
||||
|
||||
/*
|
||||
* We need to notify mqueue if the object is of type mqueue.
|
||||
*/
|
||||
if (fp->f_type == DTYPE_MQUEUE)
|
||||
if (__predict_false(fp->f_type == DTYPE_MQUEUE))
|
||||
mq_fdclose(td, fd, fp);
|
||||
FILEDESC_XUNLOCK(fdp);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user