created | 2021-10-10T01:42:55Z |
---|---|
begin | 2021-10-02T00:00:00Z |
end | 2021-10-03T00:00:00Z |
path | src/sys |
commits | 7 |
date | 2021-10-02T07:39:52Z | |||
---|---|---|---|---|
author | stsp | |||
files | src/sys/dev/pci/if_iwx.c | log | diff | annotate |
message |
Fix panic when iwx(4) firmware is not present at boot time. Uncomfortable bug found the hard way by deraadt@ |
date | 2021-10-02T07:47:54Z | |||
---|---|---|---|---|
author | stsp | |||
files | src/sys/dev/pci/if_iwm.c | log | diff | annotate |
message |
Remove iwm_assoc() and iwm_disassoc(). Not needed because they duplicate work that is already handled by state transitions involving AUTH or RUN. |
date | 2021-10-02T07:48:20Z | |||
---|---|---|---|---|
author | stsp | |||
files | src/sys/dev/pci/if_iwx.c | log | diff | annotate |
message |
Remove iwx_assoc() and iwx_disassoc(). Not needed because they duplicate work that is already handled by state transitions involving AUTH or RUN. |
date | 2021-10-02T08:51:41Z | |||
---|---|---|---|---|
author | semarie | |||
files | src/sys/isofs/cd9660/cd9660_vnops.c | log | diff | annotate |
src/sys/kern/spec_vnops.c | log | diff | annotate | |
src/sys/kern/vfs_default.c | log | diff | annotate | |
src/sys/miscfs/deadfs/dead_vnops.c | log | diff | annotate | |
src/sys/miscfs/fifofs/fifo.h | log | diff | annotate | |
src/sys/miscfs/fifofs/fifo_vnops.c | log | diff | annotate | |
src/sys/nfs/nfs_vnops.c | log | diff | annotate | |
src/sys/sys/specdev.h | log | diff | annotate | |
src/sys/sys/vnode.h | log | diff | annotate | |
src/sys/tmpfs/tmpfs_fifoops.c | log | diff | annotate | |
src/sys/tmpfs/tmpfs_specops.c | log | diff | annotate | |
src/sys/ufs/ext2fs/ext2fs_vnops.c | log | diff | annotate | |
src/sys/ufs/ffs/ffs_vnops.c | log | diff | annotate | |
src/sys/ufs/mfs/mfs_extern.h | log | diff | annotate | |
src/sys/ufs/mfs/mfs_vnops.c | log | diff | annotate | |
message |
vfs: merge *_badop to vop_generic_badop It replaces spec_badop, fifo_badop, dead_badop and mfs_badop, which are only calls to panic(9), to one unique function vop_generic_badop(). No intented behaviour changes (outside the panic message which isn't the same). ok mpi@ |
date | 2021-10-02T14:05:10Z | |||
---|---|---|---|---|
author | semarie | |||
files | src/sys/kern/vfs_syscalls.c | log | diff | annotate |
message |
remove dead variable from sys___realpath() it is a leftover from LOCKPARENT removal in NDINIT() (in rev 1.337) ok mpi@ |
date | 2021-10-02T14:26:05Z | |||
---|---|---|---|---|
author | jsg | |||
files | src/sys/dev/pci/drm/i915/gem/i915_gem_context.c | log | diff | annotate |
message |
Extend workaround for reset on context closure from gen 7-8 to gen 4-8 as [email protected] reported this occurs on gm45 (gen 4). |
date | 2021-10-02T17:29:28Z | |||
---|---|---|---|---|
author | semarie | |||
files | src/sys/miscfs/fuse/fuse_vnops.c | log | diff | annotate |
message |
fuse: avoid namei_pool leaks in several functions when calling namei(), cn_pnbuf is kept allocated when fs implementation is setting SAVENAME flag. In such cases, it is expected the fs implementation to also release memory when work is done. fuse(4) didn't put back the memory to the pool. correct it. ok mpi@ |