fd: sprinkle some predits around fget

clang inlines fget -> _fget into kern_fstat and eliminates several checkes,
but prior to this change it would assume fget_unlocked was likely to fail
and consequently avoidable jumps got generated.
This commit is contained in:
Mateusz Guzik 2020-02-02 09:38:40 +00:00
parent da4f45ea5c
commit 2568d5bb79
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=357406

View File

@ -1437,7 +1437,7 @@ kern_fstat(struct thread *td, int fd, struct stat *sbp)
AUDIT_ARG_FD(fd);
error = fget(td, fd, &cap_fstat_rights, &fp);
if (error != 0)
if (__predict_false(error != 0))
return (error);
AUDIT_ARG_FILE(td->td_proc, fp);
@ -2792,9 +2792,9 @@ _fget(struct thread *td, int fd, struct file **fpp, int flags,
*fpp = NULL;
fdp = td->td_proc->p_fd;
error = fget_unlocked(fdp, fd, needrightsp, &fp, seqp);
if (error != 0)
if (__predict_false(error != 0))
return (error);
if (fp->f_ops == &badfileops) {
if (__predict_false(fp->f_ops == &badfileops)) {
fdrop(fp, td);
return (EBADF);
}