Searched hist:6 (Results 326 - 350 of 7727) sorted by relevance

<<11121314151617181920>>

/freebsd-11.0-release/sys/arm/freescale/imx/
H A Dimx6_hdmi.c292571 Mon Dec 21 21:54:14 MST 2015 gonzo - Add driver for i.MX 6 HDMI framer
- Enable HDMI driver in IMX6 config

Reviewed by: andrew, ian, mmel
Differential Revision: https://reviews.freebsd.org/D4174
H A Dimx6_hdmireg.h292571 Mon Dec 21 21:54:14 MST 2015 gonzo - Add driver for i.MX 6 HDMI framer
- Enable HDMI driver in IMX6 config

Reviewed by: andrew, ian, mmel
Differential Revision: https://reviews.freebsd.org/D4174
H A Dimx_iomuxreg.h292571 Mon Dec 21 21:54:14 MST 2015 gonzo - Add driver for i.MX 6 HDMI framer
- Enable HDMI driver in IMX6 config

Reviewed by: andrew, ian, mmel
Differential Revision: https://reviews.freebsd.org/D4174
/freebsd-11.0-release/sbin/ggate/
H A DMakefile.incdiff 198236 Mon Oct 19 16:06:16 MDT 2009 ru Switch the default WARNS level for sbin/ to 6.

Submitted by: Ulrich Spörlein
/freebsd-11.0-release/sys/contrib/dev/iwn/
H A Diwlwifi-135-6-18.168.6.1.fw.uu260313 Sun Jan 05 01:14:24 MST 2014 gavin Add firmware version 18.168.6.1 (API version 6) for Intel Centrino
Wireless-N 135 wireless adapters, soon to be supported by iwn(4).

Committed using: Laptop with Centrino 135 chipset
Obtained from: wireless.kernel.org firmware downloads
/freebsd-11.0-release/share/man/man4/
H A Dsmsc.4272165 Fri Sep 26 09:27:13 MDT 2014 gavin Add very basic outline man page for smsc(4).

MFC after: 6 days
H A Dhpt27xx.4228940 Wed Dec 28 23:27:14 MST 2011 delphij Import the first release of HighPoint RocketRAID 27xx SAS 6Gb/s HBA card
driver. This driver works for FreeBSD/i386 and FreeBSD/amd64 platforms.

Many thanks to HighPoint for providing this driver.

MFC after: 2 weeks
/freebsd-11.0-release/crypto/openssl/crypto/des/asm/
H A Dreadmediff 76866 Sun May 20 03:07:21 MDT 2001 kris Initial import of OpenSSL 0.9.6a
/freebsd-11.0-release/crypto/openssl/crypto/dso/
H A DREADME68651 Mon Nov 13 01:03:58 MST 2000 kris Initial import of OpenSSL 0.9.6
/freebsd-11.0-release/sys/xen/
H A Dfeatures.h188684 Mon Feb 16 17:28:28 MST 2009 dfr Diff reduction with user/dfr/xenhvm/6.
/freebsd-11.0-release/tools/regression/doat/
H A Ddoat.cdiff 219568 Sat Mar 12 14:54:03 MST 2011 brucec Fix warnings and style(9) issues.
Set WARNS to 6.
/freebsd-11.0-release/tools/tools/cfi/
H A Dcfi.cdiff 219521 Fri Mar 11 18:57:37 MST 2011 brucec Fix warnings and set WARNS to 6.

MFC after: 1 week
/freebsd-11.0-release/tools/tools/cxgbtool/
H A Dreg_defs.cdiff 204267 Tue Feb 23 23:17:52 MST 2010 np Allow cxgbtool to build with WARNS=6

MFC after: 1 week
H A Dreg_defs_t3c.cdiff 204267 Tue Feb 23 23:17:52 MST 2010 np Allow cxgbtool to build with WARNS=6

MFC after: 1 week
/freebsd-11.0-release/tools/tools/iwi/
H A Diwistats.cdiff 219527 Fri Mar 11 19:46:05 MST 2011 brucec Fix warnings and style(9) issues.
Set WARNS to 6.
/freebsd-11.0-release/sys/dev/aacraid/
H A Daacraid_debug.c250963 Fri May 24 09:24:36 MDT 2013 achim Driver 'aacraid' added. Supports Adaptec by PMC RAID controller families Series 6, 7, 8 and upcoming products. Older Adaptec RAID controller families are supported by the 'aac' driver.

Approved by: scottl (mentor)
H A Daacraid_debug.h250963 Fri May 24 09:24:36 MDT 2013 achim Driver 'aacraid' added. Supports Adaptec by PMC RAID controller families Series 6, 7, 8 and upcoming products. Older Adaptec RAID controller families are supported by the 'aac' driver.

Approved by: scottl (mentor)
/freebsd-11.0-release/usr.bin/logins/
H A DMakefilediff 201386 Sat Jan 02 10:38:58 MST 2010 ed Build usr.bin/ with WARNS=6 by default.

Also add some missing $FreeBSD$ to keep svn happy.
/freebsd-11.0-release/usr.bin/primes/
H A Dprimes.hdiff 272207 Sat Sep 27 09:10:04 MDT 2014 cperciva Switch primes(6) from using unsigned long to using uint64_t. This fixes
'limited range of type' warnings about comparisons on 32-bit systems, and
allows 32-bit systems to compute the full range of primes.
diff 272166 Fri Sep 26 09:43:07 MDT 2014 cperciva Correctly enumerate primes between 4295098369 and 3825123056546413050.

Prior to this commit, primes(6) relied solely on sieving with primes up
to 65537, with the effect that composite numbers which are the product
of two non-16-bit primes would be incorrectly identified as prime. For
example,
# primes 1099511627800 1099511627820
would output
1099511627803
1099511627807
1099511627813
when in fact only the first of those values is prime.

This commit adds strong pseudoprime tests to validate the candidates
which pass the initial sieving stage, using bases of 2, 3, 5, 7, 11,
13, 17, 19, and 23. Thanks to papers from C. Pomerance, J.L. Selfridge,
and S.S. Wagstaff, Jr.; G. Jaeschke; and Y. Jiang and Y. Deng, we know
that the smallest value which passes these tests is 3825123056546413051.

At present we do not know how many strong pseudoprime tests are required
to prove primality for values larger than 3825123056546413050, so we
force primes(6) to stop at that point.

Reviewed by: jmg
Relnotes: primes(6) now correctly enumerates primes up to
3825123056546413050
MFC after: 7 days
Sponsored by: EuroBSDCon devsummit
diff 272166 Fri Sep 26 09:43:07 MDT 2014 cperciva Correctly enumerate primes between 4295098369 and 3825123056546413050.

Prior to this commit, primes(6) relied solely on sieving with primes up
to 65537, with the effect that composite numbers which are the product
of two non-16-bit primes would be incorrectly identified as prime. For
example,
# primes 1099511627800 1099511627820
would output
1099511627803
1099511627807
1099511627813
when in fact only the first of those values is prime.

This commit adds strong pseudoprime tests to validate the candidates
which pass the initial sieving stage, using bases of 2, 3, 5, 7, 11,
13, 17, 19, and 23. Thanks to papers from C. Pomerance, J.L. Selfridge,
and S.S. Wagstaff, Jr.; G. Jaeschke; and Y. Jiang and Y. Deng, we know
that the smallest value which passes these tests is 3825123056546413051.

At present we do not know how many strong pseudoprime tests are required
to prove primality for values larger than 3825123056546413050, so we
force primes(6) to stop at that point.

Reviewed by: jmg
Relnotes: primes(6) now correctly enumerates primes up to
3825123056546413050
MFC after: 7 days
Sponsored by: EuroBSDCon devsummit
diff 272166 Fri Sep 26 09:43:07 MDT 2014 cperciva Correctly enumerate primes between 4295098369 and 3825123056546413050.

Prior to this commit, primes(6) relied solely on sieving with primes up
to 65537, with the effect that composite numbers which are the product
of two non-16-bit primes would be incorrectly identified as prime. For
example,
# primes 1099511627800 1099511627820
would output
1099511627803
1099511627807
1099511627813
when in fact only the first of those values is prime.

This commit adds strong pseudoprime tests to validate the candidates
which pass the initial sieving stage, using bases of 2, 3, 5, 7, 11,
13, 17, 19, and 23. Thanks to papers from C. Pomerance, J.L. Selfridge,
and S.S. Wagstaff, Jr.; G. Jaeschke; and Y. Jiang and Y. Deng, we know
that the smallest value which passes these tests is 3825123056546413051.

At present we do not know how many strong pseudoprime tests are required
to prove primality for values larger than 3825123056546413050, so we
force primes(6) to stop at that point.

Reviewed by: jmg
Relnotes: primes(6) now correctly enumerates primes up to
3825123056546413050
MFC after: 7 days
Sponsored by: EuroBSDCon devsummit
/freebsd-11.0-release/usr.bin/random/
H A Drandomize_fd.cdiff 299484 Wed May 11 22:13:49 MDT 2016 cem random(6): Fix double-close

In the case where a file lacks a trailing newline, there is some "evil" code to
reverse goto the tokenizing code ("make_token") for the final token in the
file. In this case, 'fd' is closed more than once. Use a negative sentinel
value to guard close(2), preventing the double close.

Ideally, this code would be restructured to avoid this ugly construction.

Reported by: Coverity
CID: 1006123
Sponsored by: EMC / Isilon Storage Division
diff 209157 Mon Jun 14 13:08:58 MDT 2010 uqs random(6): avoid dead assignments

Found by: clang static analyzer
diff 110928 Sat Feb 15 10:26:10 MST 2003 seanc flexlint rears its head as well as some style(9) fixes[1]. Fixed a
few bugs for a few corner cases and correctly handle the case where
read(2) is read()'ing from a non-file descriptor and could get fewer
bytes back than the buffer, but it isn't EOF[2]. random(6) extensively
tested and believed to be bug free (save performance for large files).

Submitted by: mkm [1], tjr[2]
110723 Tue Feb 11 19:32:18 MST 2003 seanc Update random(6) to have the ability to randomize a file/stdin based
off of lines or words. See the man page for details.

Reviewed by: markm
MFC after: 3 days
/freebsd-11.0-release/usr.bin/rctl/
H A DMakefilediff 222772 Mon Jun 06 20:34:04 MDT 2011 ed Remove redundant assignments to WARNS.

For these directories, WARNS is already implied to be 6.
/freebsd-11.0-release/usr.bin/stdbuf/
H A DMakefilediff 240372 Tue Sep 11 21:23:59 MDT 2012 delphij WARNS is now default to 6.
/freebsd-11.0-release/usr.sbin/bsnmpd/modules/snmp_wlan/
H A DMakefilediff 222772 Mon Jun 06 20:34:04 MDT 2011 ed Remove redundant assignments to WARNS.

For these directories, WARNS is already implied to be 6.
/freebsd-11.0-release/usr.sbin/pmcannotate/
H A DMakefilediff 201390 Sat Jan 02 11:08:14 MST 2010 ed The last big commit: let usr.sbin/ use WARNS=6 by default.
/freebsd-11.0-release/contrib/subversion/subversion/libsvn_client/
H A Ddelete.cdiff 289180 Mon Oct 12 10:05:40 MDT 2015 peter Update from svn-1.8.14 to 1.9.2.

Formal release notes are available:
https://subversion.apache.org/docs/release-notes/1.9.html

Of particular note, the client checkout format has *not* changed so
upgrades should *not* be required.

When reading a repository (file:// or running as a local server), an
improved fsfs version 7 is available with significant performance
improvements. An optional upgrade is possible to use the new features.
Without the upgrade, this is fully read/write compatible with the
version 6 fsfs as in svn-1.8.

Relnotes: yes
diff 269833 Mon Aug 11 19:42:40 MDT 2014 peter Update serf-1.3.6 -> 1.3.7
Update subversion-1.8.9 -> 1.8.10

Security: CVE-2014-3504, CVE-2014-3522, CVE-2014-3528

Completed in 227 milliseconds

<<11121314151617181920>>