On 07.08.2020 21:14, Kubilay Kocak wrote:
> On 8/08/2020 4:40 am, Alexander Motin wrote:
>> Author: mav
>> Date: Fri Aug 7 18:40:56 2020
>> New Revision: 364038
>> URL: https://svnweb.freebsd.org/changeset/base/364038
>>
>> Log:
>> Enable hw.pci.enable_aspm tunable by default.
>> While ef
So it's just the struct copy, then? I'm impressed that it made that much
difference to remove it.
-Alan
On Fri, Aug 7, 2020 at 7:40 PM Mateusz Guzik wrote:
> or to put differently, the difference is disapperance of vn_stat from
> the codepath.
>
> On 8/8/20, Mateusz Guzik wrote:
> > tmpfs_geta
or to put differently, the difference is disapperance of vn_stat from
the codepath.
On 8/8/20, Mateusz Guzik wrote:
> tmpfs_getattr fills > 100 bytes worth of data into struct vattr, which
> then has to be converted to struct stat format. The conversion happens
> to copy some of it as it is and b
tmpfs_getattr fills > 100 bytes worth of data into struct vattr, which
then has to be converted to struct stat format. The conversion happens
to copy some of it as it is and branch on other stuff. tmpfs_stat
elides the entire process.
On 8/8/20, Alan Somers wrote:
> On Fri, Aug 7, 2020 at 5:06 PM
On Fri, Aug 7, 2020 at 5:06 PM Mateusz Guzik wrote:
> Author: mjg
> Date: Fri Aug 7 23:06:40 2020
> New Revision: 364044
> URL: https://svnweb.freebsd.org/changeset/base/364044
>
> Log:
> vfs: add VOP_STAT
>
> The current scheme of calling VOP_GETATTR adds avoidable overhead.
>
> An exampl
This broke i386 builds:
/usr/src/usr.bin/chpass/field.c:175:15: error: incompatible pointer
types passing
'_bootstrap_time_t *' (aka 'unsigned long long *') to parameter
of type 'time_t *'
(aka 'int *') [-Werror,-Wincompatible-pointer-types]
if (!atot(p, &pw->pw_change))
On 8/08/2020 4:40 am, Alexander Motin wrote:
Author: mav
Date: Fri Aug 7 18:40:56 2020
New Revision: 364038
URL: https://svnweb.freebsd.org/changeset/base/364038
Log:
Enable hw.pci.enable_aspm tunable by default.
While effects on power saving is only a guess, effects on hot-plug are
Author: mjg
Date: Fri Aug 7 23:07:47 2020
New Revision: 364045
URL: https://svnweb.freebsd.org/changeset/base/364045
Log:
tmpfs: add VOP_STAT handler
Modified:
head/sys/fs/tmpfs/tmpfs_vnops.c
head/sys/fs/tmpfs/tmpfs_vnops.h
Modified: head/sys/fs/tmpfs/tmpfs_vnops.c
===
Author: mjg
Date: Fri Aug 7 23:08:17 2020
New Revision: 364046
URL: https://svnweb.freebsd.org/changeset/base/364046
Log:
ufs: add VOP_STAT handler
Modified:
head/sys/ufs/ufs/ufs_vnops.c
Modified: head/sys/ufs/ufs/ufs_vnops.c
=
Author: mjg
Date: Fri Aug 7 23:06:40 2020
New Revision: 364044
URL: https://svnweb.freebsd.org/changeset/base/364044
Log:
vfs: add VOP_STAT
The current scheme of calling VOP_GETATTR adds avoidable overhead.
An example with tmpfs doing fstat (ops/s):
before: 7488958
after: 7913833
Author: bz
Date: Fri Aug 7 19:58:16 2020
New Revision: 364043
URL: https://svnweb.freebsd.org/changeset/base/364043
Log:
mmc_da: fix memory leak in sddaregister()
In case we are failing to allocate mmcdata, we are returning with
a softc allocated but not attached to anything and thus lea
Author: mjg
Date: Fri Aug 7 19:36:08 2020
New Revision: 364042
URL: https://svnweb.freebsd.org/changeset/base/364042
Log:
vfs: release the interlock after failing to set VHOLD_NO_SMR
While here add more comments.
Diagnosed by: markj
Reported by: pho
Fixes:r362827 ("vfs: p
Author: dim
Date: Fri Aug 7 19:32:54 2020
New Revision: 364040
URL: https://svnweb.freebsd.org/changeset/base/364040
Log:
Fix clang 11 inline asm constraint error when building powerpc GENERIC64
kernels:
sys/powerpc/aim/mmu_radix.c:728:19: error: invalid operand for inline asm
constrain
Author: markj
Date: Fri Aug 7 18:48:56 2020
New Revision: 364039
URL: https://svnweb.freebsd.org/changeset/base/364039
Log:
script: Put the terminal in raw mode when playing back a session.
Otherwise recorded sessions of some interactive programs do not play
back properly.
PR:
Author: mav
Date: Fri Aug 7 18:40:56 2020
New Revision: 364038
URL: https://svnweb.freebsd.org/changeset/base/364038
Log:
Enable hw.pci.enable_aspm tunable by default.
While effects on power saving is only a guess, effects on hot-plug are
clearly visible. Lets try to enable it and see w
Author: mav
Date: Fri Aug 7 18:38:10 2020
New Revision: 364037
URL: https://svnweb.freebsd.org/changeset/base/364037
Log:
Add some more checks to make APEI driver more robust.
MFC after:5 days
Modified:
head/sys/dev/acpica/acpi_apei.c
Modified: head/sys/dev/acpica/acpi_apei.c
=
Author: imp
Date: Fri Aug 7 18:21:48 2020
New Revision: 364036
URL: https://svnweb.freebsd.org/changeset/base/364036
Log:
Remove obsolete part of comment. It was cut and pasted from the old version of
this function, and was never relevant to the new version.
Modified:
head/sys/kern/subr_bu
Author: gbe (doc committer)
Date: Fri Aug 7 17:25:56 2020
New Revision: 364032
URL: https://svnweb.freebsd.org/changeset/base/364032
Log:
setlocale(3): Add an EXAMPLES section and add LANG category
PR: 41824
Submitted by: Slaven Rezic
Obtained from:NetBSD
MFC after
On Fri, Aug 7, 2020 at 11:22 AM Alexander Richardson
wrote:
>
> On Fri, 7 Aug 2020 at 17:06, Kyle Evans wrote:
> >
> > On Fri, Aug 7, 2020 at 11:04 AM Alex Richardson
> > wrote:
> > >
> > > Author: arichardson
> > > Date: Fri Aug 7 16:04:01 2020
> > > New Revision: 364023
> > > URL: https://sv
Author: gbe (doc committer)
Date: Fri Aug 7 16:56:43 2020
New Revision: 364031
URL: https://svnweb.freebsd.org/changeset/base/364031
Log:
mbsrtowcs(3): Clarify the RETURN VALUES section
PR: 215848
Submitted by: Andrew Stevenson
MFC after:1 week
Modified:
head/lib/libc
07 2020(r364029)
+++ head/UPDATING Fri Aug 7 16:26:56 2020(r364030)
@@ -26,6 +26,12 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 13.x IS SLOW:
disable the most expensive debugging functionality run
"ln -s 'abort:false,junk:false' /etc/malloc.conf&q
On Fri, 7 Aug 2020 at 17:06, Kyle Evans wrote:
>
> On Fri, Aug 7, 2020 at 11:04 AM Alex Richardson
> wrote:
> >
> > Author: arichardson
> > Date: Fri Aug 7 16:04:01 2020
> > New Revision: 364023
> > URL: https://svnweb.freebsd.org/changeset/base/364023
> >
> > Log:
> > Always install usr.bin/
Author: gbe (doc committer)
Date: Fri Aug 7 16:20:07 2020
New Revision: 364029
URL: https://svnweb.freebsd.org/changeset/base/364029
Log:
tmpnam(3): Also mention tmpfile in the ENVIRONMENT section
PR: 181785
Submitted by: Kevin P. Neal
MFC after:1 week
Modified:
head/
Author: hselasky
Date: Fri Aug 7 16:15:44 2020
New Revision: 364028
URL: https://svnweb.freebsd.org/changeset/base/364028
Log:
Implement radix_tree_store() in the LinuxKPI for use with the coming
extensible arrays implementation.
While at it add some more comments explaining the current
On Fri, Aug 7, 2020 at 11:04 AM Alex Richardson wrote:
>
> Author: arichardson
> Date: Fri Aug 7 16:04:01 2020
> New Revision: 364023
> URL: https://svnweb.freebsd.org/changeset/base/364023
>
> Log:
> Always install usr.bin/grep as grep when bootstrapping
>
> We have to bootstrap grep when cr
Author: arichardson
Date: Fri Aug 7 16:04:21 2020
New Revision: 364027
URL: https://svnweb.freebsd.org/changeset/base/364027
Log:
Fix linker error in libuutil with recent LLVM
Not marking the function as static can result in a linker error:
undefined reference to __assfail [--no-allow-sh
Author: arichardson
Date: Fri Aug 7 16:04:01 2020
New Revision: 364023
URL: https://svnweb.freebsd.org/changeset/base/364023
Log:
Always install usr.bin/grep as grep when bootstrapping
We have to bootstrap grep when cross-building from macOS/Linux.
Modified:
head/usr.bin/grep/Makefile
Author: arichardson
Date: Fri Aug 7 16:04:06 2020
New Revision: 364024
URL: https://svnweb.freebsd.org/changeset/base/364024
Log:
makefs: Drop unnecessary sys/clock.h include
This breaks the build on macOS where this header doesn't exist. I could
also add a compat header to tools/build/c
Author: arichardson
Date: Fri Aug 7 16:04:15 2020
New Revision: 364026
URL: https://svnweb.freebsd.org/changeset/base/364026
Log:
Fix duplicate assignment of _localedef in Makefile.inc1
The same .if exists a few lines below.
Modified:
head/Makefile.inc1
Modified: head/Makefile.inc1
===
Author: arichardson
Date: Fri Aug 7 16:04:10 2020
New Revision: 364025
URL: https://svnweb.freebsd.org/changeset/base/364025
Log:
Don't link against libdialog/ncurses when bootstrapping tzsetup
Modified:
head/usr.sbin/tzsetup/Makefile
Modified: head/usr.sbin/tzsetup/Makefile
===
Author: arichardson
Date: Fri Aug 7 16:03:55 2020
New Revision: 364022
URL: https://svnweb.freebsd.org/changeset/base/364022
Log:
Fix cddl tools bootstrapping on macOS and Linux
Reviewed By: brooks
Differential Revision: https://reviews.freebsd.org/D25979
Modified:
head/cddl/contrib/
Author: gbe (doc committer)
Date: Fri Aug 7 16:01:05 2020
New Revision: 364021
URL: https://svnweb.freebsd.org/changeset/base/364021
Log:
grep(1): correct typos for 'if a name patches' to 'if a name matches'
PR: 237635
Submitted by: durin42
Reviewed by: kevans
Approved by
On Fri, 07 Aug 2020 09:45:05 -0600
Ian Lepore wrote:
> On Fri, 2020-08-07 at 17:32 +0200, Emmanuel Vadot wrote:
> > On Fri, 7 Aug 2020 08:26:00 -0700 (PDT)
> > "Rodney W. Grimes" wrote:
> >
> > > > Author: manu
> > > > Date: Fri Aug 7 12:19:21 2020
> > > > New Revision: 364010
> > > > URL: htt
On Fri, 2020-08-07 at 17:32 +0200, Emmanuel Vadot wrote:
> On Fri, 7 Aug 2020 08:26:00 -0700 (PDT)
> "Rodney W. Grimes" wrote:
>
> > > Author: manu
> > > Date: Fri Aug 7 12:19:21 2020
> > > New Revision: 364010
> > > URL: https://svnweb.freebsd.org/changeset/base/364010
> > >
> > > Log:
> > >
Author: hselasky
Date: Fri Aug 7 15:32:42 2020
New Revision: 364019
URL: https://svnweb.freebsd.org/changeset/base/364019
Log:
Add full support support for dynamic allocation and freeing of epoch's.
Make sure to reclaim epoch structures when they are freed to support
dynamic allocation a
On Fri, 7 Aug 2020 08:26:00 -0700 (PDT)
"Rodney W. Grimes" wrote:
> > Author: manu
> > Date: Fri Aug 7 12:19:21 2020
> > New Revision: 364010
> > URL: https://svnweb.freebsd.org/changeset/base/364010
> >
> > Log:
> > pkgbase: We can't easily have a package with either a - or a _
>
> Wow, hop
> Author: manu
> Date: Fri Aug 7 12:19:21 2020
> New Revision: 364010
> URL: https://svnweb.freebsd.org/changeset/base/364010
>
> Log:
> pkgbase: We can't easily have a package with either a - or a _
Wow, hopefully this is short term. I would think a package name can
be any valid file name, a
Author: bz
Date: Fri Aug 7 15:13:53 2020
New Revision: 364018
URL: https://svnweb.freebsd.org/changeset/base/364018
Log:
IPV6_PKTINFO support for v4-mapped IPv6 sockets
When using v4-mapped IPv6 sockets with IPV6_PKTINFO we do not
respect the given v4-mapped src address on the IPv4 socke
Author: mav
Date: Fri Aug 7 13:35:34 2020
New Revision: 364013
URL: https://svnweb.freebsd.org/changeset/base/364013
Log:
Allow ACPI APEI driver build without PCI.
On x86 it seems difficult to build ACPI without PCI, but some aarch64
users appears to be doing it.
MFC after:3 day
Author: bz
Date: Fri Aug 7 12:47:00 2020
New Revision: 364012
URL: https://svnweb.freebsd.org/changeset/base/364012
Log:
lib80211: fix indentation of comments for some netbands.
Whitespace only; no functional changes.
MFC after:2 weeks
Sponsored by: Rubicon Communications, LLC (
Author: bz
Date: Fri Aug 7 12:24:23 2020
New Revision: 364011
URL: https://svnweb.freebsd.org/changeset/base/364011
Log:
net80211/ifconfig: print hardware device name for wlan interfaces
Add IEEE80211_IOC_IC_NAME to query the ic_name field and in ifconfig
to print the parent interface ag
Author: manu
Date: Fri Aug 7 12:19:21 2020
New Revision: 364010
URL: https://svnweb.freebsd.org/changeset/base/364010
Log:
pkgbase: We can't easily have a package with either a - or a _
Rename iscsi_legacy to iscsilegacy, having - or _ in a package name cause
problems when we process the
Author: manu
Date: Fri Aug 7 10:20:39 2020
New Revision: 364009
URL: https://svnweb.freebsd.org/changeset/base/364009
Log:
pkgbase: Fix dependancies
The package name is converted with _ instead of - as we have some variables
that cannot contain -
Convert back the dependancies with - in
Author: lwhsu
Date: Fri Aug 7 08:57:31 2020
New Revision: 364006
URL: https://svnweb.freebsd.org/changeset/base/364006
Log:
Add a .Pp to separate description and sample code for readability.
Modified:
head/share/man/man9/seqc.9
Modified: head/share/man/man9/seqc.9
==
Author: gbe (doc committer)
Date: Fri Aug 7 08:41:14 2020
New Revision: 364005
URL: https://svnweb.freebsd.org/changeset/base/364005
Log:
telnet(1): Document -P option
PR: 248157
Submitted by: Juraj Lutter
Reviewed by: bcr
Approved by: bcr
Obtained from:NetBSD
45 matches
Mail list logo