summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-05-30point readers to the correct place instead of having themSebastian Benoit
jump around. suggested and ok jmc@, ok jcm@
2018-05-30cosmethic change, shuffle smtpd specific grammar bits _after_ the ones thatGilles Chehade
make sense to others
2018-05-30Use new SIOCGIFGLIST to provide carpGroupTable, showing "demote" valuesStuart Henderson
for interface groups on the system. From Jan Klemkow.
2018-05-30Add SIOCGIFGLIST to fetch a list of interface groups on the system.Stuart Henderson
From Jan Klemkow, ok mpi@ tb@, ok/bugfix bluhm@
2018-05-30when path is too long, display it in error messageGilles Chehade
suggested by millert@
2018-05-30Add const to both arguments of X509_certificate_type() and clean upTheo Buehler
a little: Use X509_get0_pubkey() in place of X509_get_pubkey() and EVP_PKEY_free(). Check return value of the former in the appropriate place and simplify the logic for dealing with the potentially NULL pkey argument (includes a neat tweak from jsing). Finally, kill an ugly comment that has been rotting for twenty years and merge the lines around it. tested in a bulk build by sthen ok jsing
2018-05-30Add a const qualifier to the argument of EVP_PKEY_size().Theo Buehler
tested in a bulk build by sthen ok jsing
2018-05-30Add a const qualifier to the `name' argument ofTheo Buehler
X509_NAME_get_index_by_{OBJ,NID}(). tested in a bulk build by sthen suggested by & ok jsing
2018-05-30Add a const qualifier to the `uni' argument of OPENSSL_uni2asc().Theo Buehler
tested in a bulk build by sthen ok jsing
2018-05-30calling err after fgets assumes we're not at EOF.Marc Espie
provide sensical error messages. okay millert@
2018-05-30Add sizes for free() for octeon.Frederic Cambus
OK deraadt@, visa@
2018-05-30Implement SDIO DMA support. This is achieved by wrapping thePatrick Wildt
sdmmc_io_rw_extended() function and loading the passed buffer using the bus dma API akin to the SDMMC memory card code. The 2-byte and 4-byte accessors continue to use PIO. ok kettenis@
2018-05-30For the upcoming SDIO DMA support we need to use DMA-able bufferPatrick Wildt
to send/receive data. This basically means that we cannot use any malloc(9)'d buffer. For this, use dma_alloc(9) to allocate a buf that can fit a whole SDIO frame (unfortunately without headers). Keep note that we need to round up the transfer sizes to block- sized (for TX packets) or 4-byte alignment, since some DMA con- trollers truncate the request size. If there's anything wrong, the KASSERTs will catch it. ok kettenis@
2018-05-30Define IPL_MPFLOOR on SP archs.Martin Pieuchot
From Mathieu <naabed at poolp.org>, ok visa@
2018-05-30tweak previous;Jason McIntyre
2018-05-30consistent casing;Jason McIntyre
2018-05-30Add uvm view to show all values being collected in uvmexp.Kenneth R Westerback
Feedbacks, tweaks, ok bluhm@
2018-05-30Clear the DMA select bits in case we use PIO instead of DMA. SomePatrick Wildt
SDHC controllers get confused if the ADMA bit is set even though we don't set the DMA enable flag. This can happen with the SDIO stack which uses PIO for 4 byte read/writes but DMA for larger transfers and thus switches from one mode to the other. ok kettenis@
2018-05-30The open POSIX test suite reveals that sigpause(int sigmask) fromAlexander Bluhm
4.2 BSD takes a signal mask as argument while POSIX sigpause(int sig) expects a single signal. Do not expose our traditional BSD sigpause(3) to XPG/POSIX sources. OK guenther@
2018-05-30tweak previous;Jason McIntyre
2018-05-30Remove comcnspeed variable, which gets set but is never actually used.Mark Kettenis
This removes the (no-op) -1 and -9 kernel boot arguments. ok visa@
2018-05-30port -u userlist option from update-plist, as suggested by sthen@.Marc Espie
main differences: - error out on a problem instead of warning - always parse the userlist if the option is specified. Avoid ticking time bomb effect on bulk builds, where packages would be fine until the first @new(user|group) usage in case the user list got corrupted. Note it's still an option, so if you're using pkg_create outside of the ports tree, you can do whatever you want.
2018-05-30teach mail.maildir how to junk mails if -j option is set and X-Spam isGilles Chehade
positive, this can be enabled with the 'junk' option in maildir action ok eric@
2018-05-30Add a const qualifier to the return value of BIO_s_file().Theo Buehler
tested in a bulk build by sthen ok bcook, jsing
2018-05-29it turns out we can provide syntaxic sugar for an LMTP action in smtpd.confGilles Chehade
which should please our users ;-) while at it get rid of unix:/inet: prefixes in LMTP destinations, we either use an absolute path for a UNIX socket or it's necessarily a network socket so '/' as the first char of the destination makes the prefixes irrelevant.
2018-05-29RECIPIENT should really be the dest address, post-expansion, not rcptGilles Chehade
suggested by eric@
2018-05-29remove unused functionEric Faurot
ok gilles@
2018-05-29missing caseEric Faurot
ok gilles@
2018-05-29no need to parse and dump the relayhost in the lookup process.Eric Faurot
ok gilles@
2018-05-29Make md_consoleinfo() set the appropriate variables that make install.subMark Kettenis
adjust the speed of the 'console' ttys entry to reflect the speed of the console being used to install. Makes for a smoother install on Rockchip devices for which the SoC vendor had the not so brilliant idea that 1500000 is a suitable default speed. ok benno@, tb@
2018-05-29When adjusting the speed of a 'console' tty entry, also change entriesMark Kettenis
with a default speed of 115200 since that is what we have on armv7 and arm64. ok benno@, tb@
2018-05-29Remove redundant value= attributes from option elements,Ingo Schwarze
and use type=search rather than type=text for the input element because it tends to better support autocompletion. Both suggested by John Gardner <gardnerjohng at gmail dot com>.
2018-05-29remove unused codeEric Faurot
ok gilles@
2018-05-29simplify mail.maildir as well as the parse.y glueGilles Chehade
ok eric@
2018-05-29provide mail user agents with the same environments as PostfixGilles Chehade
ok millert@, eric@
2018-05-29Lock the device vnode when calling vinvalbuf() in ext2fs_reload(),Visa Hankala
just as is done in ffs_reload(). Requested by and OK bluhm@
2018-05-29Improve `checkpatch' descriptionkn
PATCH_DEBUG=Yes is already the default and `patch' description does not mention debugging bits. Snatch wording from patch(1)'s `-C' to clarify what's really done. OK espie jca
2018-05-29remove paragraph that's no longer true about authenticated users beingGilles Chehade
matched by from local
2018-05-29If foo doesn't exist and can't be expanded in #{?foo,a,b} then assume itNicholas Marriott
is false.
2018-05-29`f_mtx' must block interrupts as long as it is taken w/ and w/o theMartin Pieuchot
KERNEL_LOCK(). Otherwise a deadlock can occur as found the hardway by tb@. ok tb@, kettenis@, visa@
2018-05-29syncTheo de Raadt
2018-05-29Delete support for the print_otag(sw) * and - modifiers,Ingo Schwarze
which are no longer used because we write fewer style= attributes.
2018-05-29Ignore author-specified -width arguments for -tag and -hang listsIngo Schwarze
in HTML output. For terminal and typeset output, such arguments kind of work to achieve presentational micro-optimization. But for HTML, they only do harm. Large increases usually look ugly. Large reductions are impossible since the default is not large in the first place. Small tweaks in either direction are not important; at least not important enough to justify making responsive design impossible. Triggered by John Gardner's suggestion to further reduce style= attributes in the HTML code, in particular those containing hard-coded lengths.
2018-05-288 spaces -> tabTheo Buehler
2018-05-28Initialize FIFO watermark thresholds. Fixes DMA issues on controllers thatMark Kettenis
are not initialized by U-Boot.
2018-05-28Make sure that the inetd echo and nonxt protocol reflectors areAlexander Bluhm
running on the remote machines.
2018-05-28More steps for i386 Meltdown fix:Alexander Bluhm
- name gdt explicitly in struct cpu_info_full - identfiy ARCH_CAPABILITIES_RDCL_NO and print in identifycpu() - in pmap.c build U-K table, handle PG_G accordingly - in pmap_switch() do not unmap the kernel, yet; but all pieces are in place - pmapae.c: on boostrap transfer pmap to pmapae tables, build U-K table and wire it, handle PG_G from hshoexer@; OK mlarkin@
2018-05-28Cleanup bootconfig.h and use strlcpy() to copy boot arguments.Mark Kettenis
ok drahn@
2018-05-28Remove unused include file.Mark Kettenis
ok drahn@
2018-05-28Drop include of <arm64/swi.h> and remove it.Mark Kettenis
ok drahm@