Searched hist:1.275 (Results 1 - 25 of 134) sorted by relevance

123456

/src/sys/netipsec/
H A Dkey.c1.275 Tue May 24 20:50:20 GMT 2022 andvar fix various typos in comment, documentation and log messages.

/src/sys/arch/sparc64/sparc64/
H A Dpmap.c1.275 Tue Jul 12 07:51:34 GMT 2011 mrg branches: 1.275.2; 1.275.6;
rename sparc64 BLOCK_SIZE and BLOCK_ALIGN to have SPARC64_ prefixes.
for the assembler files, define the old names to the new names
since using the new names cause ugliness due to longer identifer
names, and reduces churn.

fixes build issues in dtv and vaguely makes <machine/psl.h> slightly
less name-space invasive.

1.275 Tue Jul 12 07:51:34 GMT 2011 mrg branches: 1.275.2; 1.275.6;
rename sparc64 BLOCK_SIZE and BLOCK_ALIGN to have SPARC64_ prefixes.
for the assembler files, define the old names to the new names
since using the new names cause ugliness due to longer identifer
names, and reduces churn.

fixes build issues in dtv and vaguely makes <machine/psl.h> slightly
less name-space invasive.

1.275 Tue Jul 12 07:51:34 GMT 2011 mrg branches: 1.275.2; 1.275.6;
rename sparc64 BLOCK_SIZE and BLOCK_ALIGN to have SPARC64_ prefixes.
for the assembler files, define the old names to the new names
since using the new names cause ugliness due to longer identifer
names, and reduces churn.

fixes build issues in dtv and vaguely makes <machine/psl.h> slightly
less name-space invasive.

H A Dmachdep.c1.275 Sat Jan 25 19:42:25 GMT 2014 christos branches: 1.275.2;
__USING_TOPDOWN_VM is gone.
1.275 Sat Jan 25 19:42:25 GMT 2014 christos branches: 1.275.2;
__USING_TOPDOWN_VM is gone.
/src/sys/dev/scsipi/
H A Dsd.c1.275 Wed Jul 16 18:54:09 GMT 2008 drochner branches: 1.275.2; 1.275.4;
split device/softc for sd (tested with a USB stick)

1.275 Wed Jul 16 18:54:09 GMT 2008 drochner branches: 1.275.2; 1.275.4;
split device/softc for sd (tested with a USB stick)

1.275 Wed Jul 16 18:54:09 GMT 2008 drochner branches: 1.275.2; 1.275.4;
split device/softc for sd (tested with a USB stick)

H A Dscsiconf.c1.275 Sun Jun 26 07:31:35 GMT 2016 mlelstv branches: 1.275.2;
Create a dedicated thread for the initial scsibus discovery instead
of using the completion thread. This prevents a deadlock when a
command fails during discovery which needs to be handled by the
completion thread.

1.275 Sun Jun 26 07:31:35 GMT 2016 mlelstv branches: 1.275.2;
Create a dedicated thread for the initial scsibus discovery instead
of using the completion thread. This prevents a deadlock when a
command fails during discovery which needs to be handled by the
completion thread.

/src/distrib/sets/lists/etc/
H A Dmi1.275 Tue Apr 09 21:02:17 GMT 2024 kre branches: 1.275.2;

Revert previous, we have no /etc/skel/.editrc (currently anyway).
This change looks to have been accidentally included in the big
sets reduction/division.

This should fix the builds.
1.275 Tue Apr 09 21:02:17 GMT 2024 kre branches: 1.275.2;

Revert previous, we have no /etc/skel/.editrc (currently anyway).
This change looks to have been accidentally included in the big
sets reduction/division.

This should fix the builds.
/src/doc/
H A DBRANCHES1.275 Sun Jan 11 14:49:48 GMT 2009 christos branches: 1.275.2;
fix christos-time_t info

1.275 Sun Jan 11 14:49:48 GMT 2009 christos branches: 1.275.2;
fix christos-time_t info

/src/sys/sys/
H A Dsystm.h1.275 Sun Feb 04 17:31:51 GMT 2018 maxv branches: 1.275.2;
Add a proper defflag for GPROF, and include opt_gprof.h, otherwise we're
not gonna go very far.

1.275 Sun Feb 04 17:31:51 GMT 2018 maxv branches: 1.275.2;
Add a proper defflag for GPROF, and include opt_gprof.h, otherwise we're
not gonna go very far.

H A Dsyscallargs.h1.275 Sat Apr 02 21:02:39 GMT 2016 christos regen

H A Dsyscall.h1.275 Tue Feb 10 17:43:44 GMT 2015 christos regen
/src/sys/kern/
H A Dkern_proc.c1.275 Sun Jun 02 00:11:35 GMT 2024 andvar branches: 1.275.2;
Fix various typos, mainly triple letters.

1.275 Sun Jun 02 00:11:35 GMT 2024 andvar branches: 1.275.2;
Fix various typos, mainly triple letters.

H A Dtty.c1.275 Wed Oct 25 08:12:39 GMT 2017 maya branches: 1.275.2;
Use C99 initializer for filterops

Mostly done with spatch with touchups for indentation

@@
expression a;
identifier b,c,d;
identifier p;
@@
const struct filterops p =
- { a, b, c, d
+ {
+ .f_isfd = a,
+ .f_attach = b,
+ .f_detach = c,
+ .f_event = d,
};

1.275 Wed Oct 25 08:12:39 GMT 2017 maya branches: 1.275.2;
Use C99 initializer for filterops

Mostly done with spatch with touchups for indentation

@@
expression a;
identifier b,c,d;
identifier p;
@@
const struct filterops p =
- { a, b, c, d
+ {
+ .f_isfd = a,
+ .f_attach = b,
+ .f_detach = c,
+ .f_event = d,
};

H A Dinit_sysent.c1.275 Thu Oct 17 18:04:40 GMT 2013 njoly Regen for mknodat(2) device argument type change.

H A Dsyscalls.c1.275 Thu Jun 12 21:42:26 GMT 2014 joerg Regenerate

/src/sys/arch/sparc/sparc/
H A Dlocore.s1.275 Mon Dec 30 22:13:47 GMT 2019 ad branches: 1.275.2;
PR port-sparc/54789: Sparc boot fails with "Trap 0x21 while interrupts disabled"

Remove assumption that cpu_info is smaller than 1kB.

1.275 Mon Dec 30 22:13:47 GMT 2019 ad branches: 1.275.2;
PR port-sparc/54789: Sparc boot fails with "Trap 0x21 while interrupts disabled"

Remove assumption that cpu_info is smaller than 1kB.

/src/sys/arch/amiga/conf/
H A DGENERIC1.275 Tue Nov 22 21:24:56 GMT 2011 tls branches: 1.275.2;

The rnd pseudo-device is not really optional, because it is in the same
source file as the entropy-pool code itself. Move it to std. This
will be cleaned up more when I split the sources up as they should be.

This fixes build breaks on several ports. Thanks to Havard Eidnes for
pointing them out.

1.275 Tue Nov 22 21:24:56 GMT 2011 tls branches: 1.275.2;

The rnd pseudo-device is not really optional, because it is in the same
source file as the entropy-pool code itself. Move it to std. This
will be cleaned up more when I split the sources up as they should be.

This fixes build breaks on several ports. Thanks to Havard Eidnes for
pointing them out.

/src/share/mk/
H A Dbsd.sys.mk1.275 Fri Feb 02 01:02:41 GMT 2018 mrg branches: 1.275.2;
convert HAVE_GCC handling to modern GCC release numbering:
- HAVE_GCC=5 is now the default (vs. HAVE_GCC=53 we've been using for
GCC 5.4 and GCC 5.5.)
- remove some more GCC 4.8 code. we don't support GCC 4 here.
- adjust set lists to gcc=5 from gcc=53.

add some basic HAVE_GCC=6 handling (totally unused so far.)

1.275 Fri Feb 02 01:02:41 GMT 2018 mrg branches: 1.275.2;
convert HAVE_GCC handling to modern GCC release numbering:
- HAVE_GCC=5 is now the default (vs. HAVE_GCC=53 we've been using for
GCC 5.4 and GCC 5.5.)
- remove some more GCC 4.8 code. we don't support GCC 4 here.
- adjust set lists to gcc=5 from gcc=53.

add some basic HAVE_GCC=6 handling (totally unused so far.)

/src/sys/dev/usb/
H A Duhci.c1.275 Thu Jun 01 02:45:12 GMT 2017 chs branches: 1.275.2;
remove checks for failure after memory allocation calls that cannot fail:

kmem_alloc() with KM_SLEEP
kmem_zalloc() with KM_SLEEP
percpu_alloc()
pserialize_create()
psref_class_create()

all of these paths include an assertion that the allocation has not failed,
so callers should not assert that again.

1.275 Thu Jun 01 02:45:12 GMT 2017 chs branches: 1.275.2;
remove checks for failure after memory allocation calls that cannot fail:

kmem_alloc() with KM_SLEEP
kmem_zalloc() with KM_SLEEP
percpu_alloc()
pserialize_create()
psref_class_create()

all of these paths include an assertion that the allocation has not failed,
so callers should not assert that again.

/src/share/misc/
H A Dacronyms1.275 Wed Sep 19 18:50:39 GMT 2018 ginsbach Add BDFL and SJW

/src/sys/netinet/
H A Dip_input.c1.275 Sat Oct 04 00:09:34 GMT 2008 pooka branches: 1.275.2; 1.275.4;
POOL_INIT -> pool_init

1.275 Sat Oct 04 00:09:34 GMT 2008 pooka branches: 1.275.2; 1.275.4;
POOL_INIT -> pool_init

1.275 Sat Oct 04 00:09:34 GMT 2008 pooka branches: 1.275.2; 1.275.4;
POOL_INIT -> pool_init

/src/sys/arch/sparc/conf/
H A DGENERIC1.275 Thu May 01 02:04:32 GMT 2025 mrg enable apc(4) by default.

it seems that the original commit left it disabled as the linux
driver has a comment about it hanging on prototype systems (that
i don't recall ever hearing about with netbsd), but it's enabled
by default there, so let's enable it by default.

the real benefit here is that qemu-system-sparc detects this and
it idles on the host properly.

/src/lib/libc/
H A Dshlib_version1.275 Thu Jun 08 18:27:05 GMT 2017 joerg Add two entries for interaction between lib/csu and libc.
/src/usr.sbin/
H A DMakefile1.275 Sun May 21 15:28:43 GMT 2017 riastradh Remove MKCRYPTO option.

Originally, MKCRYPTO was introduced because the United States
classified cryptography as a munition and restricted its export. The
export controls were substantially relaxed fifteen years ago, and are
essentially irrelevant for software with published source code.

In the intervening time, nobody bothered to remove the option after
its motivation -- the US export restriction -- was eliminated. I'm
not aware of any other operating system that has a similar option; I
expect it is mainly out of apathy for churn that we still have it.
Today, cryptography is an essential part of modern computing -- you
can't use the internet responsibly without cryptography.

The position of the TNF board of directors is that TNF makes no
representation that MKCRYPTO=no satisfies any country's cryptography
regulations.

My personal position is that the availability of cryptography is a
basic human right; that any local laws restricting it to a privileged
few are fundamentally immoral; and that it is wrong for developers to
spend effort crippling cryptography to work around such laws.

As proposed on tech-crypto, tech-security, and tech-userlevel to no
objections:

https://mail-index.netbsd.org/tech-crypto/2017/05/06/msg000719.html
https://mail-index.netbsd.org/tech-security/2017/05/06/msg000928.html
https://mail-index.netbsd.org/tech-userlevel/2017/05/06/msg010547.html

P.S. Reviewing all the uses of MKCRYPTO in src revealed a lot of
*bad* crypto that was conditional on it, e.g. DES in telnet... That
should probably be removed too, but on the grounds that it is bad,
not on the grounds that it is (nominally) crypto.

/src/sys/ufs/ffs/
H A Dffs_vfsops.c1.275 Sun Jan 29 00:58:14 GMT 2012 nonaka branches: 1.275.2;
use FS_UFS[12]_MAGIC_SWAPPED instead of bswap32(FS_UFS[12]_MAGIC).

1.275 Sun Jan 29 00:58:14 GMT 2012 nonaka branches: 1.275.2;
use FS_UFS[12]_MAGIC_SWAPPED instead of bswap32(FS_UFS[12]_MAGIC).

/src/sys/ufs/lfs/
H A Dlfs_segment.c1.275 Sun Aug 20 00:03:12 GMT 2017 maya branches: 1.275.2;
XXX question our double-flushing of dirops
1.275 Sun Aug 20 00:03:12 GMT 2017 maya branches: 1.275.2;
XXX question our double-flushing of dirops
1.275 Sun Aug 20 00:03:12 GMT 2017 maya branches: 1.275.2;
XXX question our double-flushing of dirops
1.275 Sun Aug 20 00:03:12 GMT 2017 maya branches: 1.275.2;
XXX question our double-flushing of dirops

Completed in 348 milliseconds

123456