svn commit: r284626 - head/sys/compat/linux

2015-06-19 Thread Dmitry Chagin
Author: dchagin Date: Sat Jun 20 05:40:35 2015 New Revision: 284626 URL: https://svnweb.freebsd.org/changeset/base/284626 Log: Add EPOLLRDHUP support. Tested by:abi at abinet dot ru Modified: head/sys/compat/linux/linux_event.c head/sys/compat/linux/linux_event.h Modified: head/sy

svn commit: r284624 - head/sys/dev/ofw

2015-06-19 Thread Warner Losh
Author: imp Date: Sat Jun 20 04:48:48 2015 New Revision: 284624 URL: https://svnweb.freebsd.org/changeset/base/284624 Log: Add ofw_bus_find_child_by_phandle, a helper routine to find a device_t child matchig a given phandle_t. Differential Revision: https://reviews.freebsd.org/D2871 Modi

svn commit: r284625 - head/sys/dev/gpio

2015-06-19 Thread Warner Losh
Author: imp Date: Sat Jun 20 04:48:53 2015 New Revision: 284625 URL: https://svnweb.freebsd.org/changeset/base/284625 Log: Use ofw_bus_find_child_device_by_phandle to see if the child we're adding already exists and if so just return that. The typical use case is from identify routines, whic

Re: svn commit: r284602 - head/sys/kern

2015-06-19 Thread Konstantin Belousov
On Fri, Jun 19, 2015 at 06:57:37PM +, Sean Bruno wrote: > Author: sbruno > Date: Fri Jun 19 18:57:36 2015 > New Revision: 284602 > URL: https://svnweb.freebsd.org/changeset/base/284602 > > Log: > Feedback from commit r284535 > > davide: imgact_binmisc_clear_entry() needs to use atomic

svn commit: r284623 - head/sys/dev/uart

2015-06-19 Thread Marcel Moolenaar
Author: marcel Date: Sat Jun 20 04:02:33 2015 New Revision: 284623 URL: https://svnweb.freebsd.org/changeset/base/284623 Log: Add support for the Intel Atom E3800 series SoC (aka Bay Trail). Sponsored by: XipLink, Inc Modified: head/sys/dev/uart/uart_bus_pci.c Modified: head/sys/dev/uar

svn commit: r284622 - head/sys/cam/ctl

2015-06-19 Thread Alexander Motin
Author: mav Date: Sat Jun 20 03:40:19 2015 New Revision: 284622 URL: https://svnweb.freebsd.org/changeset/base/284622 Log: Remove device queue freeze handling and replace it with dummy. At this point CTL has no known use case for device queue freezes. Same time existing (considered to be

svn commit: r284620 - head/share/mk

2015-06-19 Thread Baptiste Daroussin
Author: bapt Date: Sat Jun 20 00:17:57 2015 New Revision: 284620 URL: https://svnweb.freebsd.org/changeset/base/284620 Log: Use .CURDIR in soelim's include path instead of SRCDIR This fixes build when a user has defined SRCDIR in make.conf as required by some ports Modified: head/share/mk

svn commit: r284619 - head/share/doc/usd/13.viref

2015-06-19 Thread Baptiste Daroussin
Author: bapt Date: Sat Jun 20 00:13:28 2015 New Revision: 284619 URL: https://svnweb.freebsd.org/changeset/base/284619 Log: Readd merge.awk forgotten while importing the old vi documentation directly into the tree. Do not rely on SRCDIR to find the merge.awk script but use .CURDIR Fix

svn commit: r284618 - head/sys/dev/xen/blkfront

2015-06-19 Thread Colin Percival
Author: cperciva Date: Sat Jun 20 00:02:03 2015 New Revision: 284618 URL: https://svnweb.freebsd.org/changeset/base/284618 Log: Refactor xbd_queue_cb, extracting the code which converts bus_dma segments into blkif segments, and moving it into a new function. This will be used by upcoming su

Re: svn commit: r284614 - head/sys/boot/uboot/lib

2015-06-19 Thread Maxim Sobolev
Ian, that's cool and dandy, but I still suggest we put some sanity checking and have certain workarounds in the loader (whenever it does not add ambiguity or blows up a code too much of course), so that new folks in town trying to port to new platforms like myself won't spend hours and hours huntin

Re: svn commit: r284614 - head/sys/boot/uboot/lib

2015-06-19 Thread Ian Lepore
On Fri, 2015-06-19 at 22:24 +, Maxim Sobolev wrote: > Author: sobomax > Date: Fri Jun 19 22:24:58 2015 > New Revision: 284614 > URL: https://svnweb.freebsd.org/changeset/base/284614 > > Log: > Provide bug4bug workaround for certain dumbiness of the u-boot's > API_env_enum > function, whic

svn commit: r284617 - head/release/tools

2015-06-19 Thread Glen Barber
Author: gjb Date: Fri Jun 19 23:03:05 2015 New Revision: 284617 URL: https://svnweb.freebsd.org/changeset/base/284617 Log: Fix path to waagent. MFC after:3 days Sponsored by: The FreeBSD Foundation Modified: head/release/tools/azure.conf Modified: head/release/tools/azure.conf ===

svn commit: r284616 - head/sys/opencrypto

2015-06-19 Thread John-Mark Gurney
Author: jmg Date: Fri Jun 19 22:42:26 2015 New Revision: 284616 URL: https://svnweb.freebsd.org/changeset/base/284616 Log: change the KASSERT so it is meaningful, var is unsigned, so even when it wraps, it's still >= 0... Reported by: Coverity CID: 1017564 Modified: head/sy

svn commit: r284615 - head/sys/dev/xen/blkfront

2015-06-19 Thread Colin Percival
Author: cperciva Date: Fri Jun 19 22:40:58 2015 New Revision: 284615 URL: https://svnweb.freebsd.org/changeset/base/284615 Log: Minor clean up to xbd_queue_cb: * nsegs must be at most BLKIF_MAX_SEGMENTS_PER_REQUEST (since we specify that limit to bus_dma_tag_create), so KASSERT that rather

Re: svn commit: r284613 - head/sys/netinet

2015-06-19 Thread NGie Cooper
On Fri, Jun 19, 2015 at 2:55 PM, Michael Tuexen wrote: > Author: tuexen > Date: Fri Jun 19 21:55:12 2015 > New Revision: 284613 > URL: https://svnweb.freebsd.org/changeset/base/284613 > > Log: > Fix two KTRACE related bugs. > > Reported by: Coverity > CID: 1018058, 1018060 The com

svn commit: r284614 - head/sys/boot/uboot/lib

2015-06-19 Thread Maxim Sobolev
Author: sobomax Date: Fri Jun 19 22:24:58 2015 New Revision: 284614 URL: https://svnweb.freebsd.org/changeset/base/284614 Log: Provide bug4bug workaround for certain dumbiness of the u-boot's API_env_enum function, which is expected to set returned env to NULL upon reaching the end of the en

svn commit: r284613 - head/sys/netinet

2015-06-19 Thread Michael Tuexen
Author: tuexen Date: Fri Jun 19 21:55:12 2015 New Revision: 284613 URL: https://svnweb.freebsd.org/changeset/base/284613 Log: Fix two KTRACE related bugs. Reported by: Coverity CID: 1018058, 1018060 MFC after:3 days Modified: head/sys/netinet/sctp_syscalls.c Modifie

Re: svn commit: r284162 - head/bin/ls

2015-06-19 Thread Jilles Tjoelker
On Mon, Jun 08, 2015 at 07:13:05PM +, Xin LI wrote: > Author: delphij > Date: Mon Jun 8 19:13:04 2015 > New Revision: 284162 > URL: https://svnweb.freebsd.org/changeset/base/284162 > Log: > It has been long time that when doing 'ls -G /path/to/a/symlink', instead of > using the color of s

svn commit: r284612 - head/sys/dev/ixl

2015-06-19 Thread Andrew Gallatin
Author: gallatin Date: Fri Jun 19 21:40:26 2015 New Revision: 284612 URL: https://svnweb.freebsd.org/changeset/base/284612 Log: Fix typo in baudrate initialization that was causing ixl to be seen as a 4GbE NIC, rather than a 40GbE NIC. Reviewed by: Eric Joyner MFC after:3 days S

svn commit: r284611 - head/share/man/man4

2015-06-19 Thread Xin LI
Author: delphij Date: Fri Jun 19 21:35:56 2015 New Revision: 284611 URL: https://svnweb.freebsd.org/changeset/base/284611 Log: Fix markups and change e.g./eg. to e.g.,. MFC after:2 weeks Modified: head/share/man/man4/acpi_hp.4 head/share/man/man4/acpi_ibm.4 head/share/man/man4/ac

svn commit: r284610 - head/share/man/man4

2015-06-19 Thread Xin LI
Author: delphij Date: Fri Jun 19 21:35:24 2015 New Revision: 284610 URL: https://svnweb.freebsd.org/changeset/base/284610 Log: Fix markups. MFC after:2 weeks Modified: head/share/man/man4/aacraid.4 Modified: head/share/man/man4/aacraid.4 =

svn commit: r284609 - head/usr.sbin/bsdconfig/usermgmt/share

2015-06-19 Thread Devin Teske
Author: dteske Date: Fri Jun 19 21:32:20 2015 New Revision: 284609 URL: https://svnweb.freebsd.org/changeset/base/284609 Log: Interim fix for "Login not found" error. PR: bin/196514 MFC after:3 days X-MFC-to: stable/10 Modified: head/usr.sbin/bsdconfig/usermgmt/shar

svn commit: r284608 - head/share/man/man9

2015-06-19 Thread Warner Losh
Author: imp Date: Fri Jun 19 21:30:45 2015 New Revision: 284608 URL: https://svnweb.freebsd.org/changeset/base/284608 Log: Back out contested change until dispute is resolved. This proved to be more contentious than I expected. Modified: head/share/man/man9/style.9 Modified: head/share/man

svn commit: r284607 - head/share/man/man4

2015-06-19 Thread Xin LI
Author: delphij Date: Fri Jun 19 21:26:06 2015 New Revision: 284607 URL: https://svnweb.freebsd.org/changeset/base/284607 Log: Document kern.cam.ada.legacy_aliases, while I'm there also fix some typos. MFC after:2 weeks Modified: head/share/man/man4/ada.4 Modified: head/share/man/ma

svn commit: r284606 - head/sys/kern

2015-06-19 Thread Sean Bruno
Author: sbruno Date: Fri Jun 19 20:35:17 2015 New Revision: 284606 URL: https://svnweb.freebsd.org/changeset/base/284606 Log: Remove uneeded NULL check since malloc the malloc is now M_WAITOK Submitted by: mjg Modified: head/sys/kern/imgact_binmisc.c Modified: head/sys/kern/imgact_binmi

svn commit: r284605 - head/sys/kern

2015-06-19 Thread Sean Bruno
Author: sbruno Date: Fri Jun 19 19:57:39 2015 New Revision: 284605 URL: https://svnweb.freebsd.org/changeset/base/284605 Log: Must have one of either M_WAITOK or M_NOWAIT, read the man page bruno. Submitted by: mjg Modified: head/sys/kern/imgact_binmisc.c Modified: head/sys/kern/imgact_

Re: svn commit: r284602 - head/sys/kern

2015-06-19 Thread Mateusz Guzik
On Fri, Jun 19, 2015 at 06:57:37PM +, Sean Bruno wrote: > Author: sbruno > Date: Fri Jun 19 18:57:36 2015 > New Revision: 284602 > URL: https://svnweb.freebsd.org/changeset/base/284602 > > Log: > Feedback from commit r284535 > > davide: imgact_binmisc_clear_entry() needs to use atomic

svn commit: r284604 - head/usr.bin/sockstat

2015-06-19 Thread Michael Tuexen
Author: tuexen Date: Fri Jun 19 19:36:29 2015 New Revision: 284604 URL: https://svnweb.freebsd.org/changeset/base/284604 Log: Don't leak sockets. Reported by: Coverity CID: 1306785 MFC after:3 days Modified: head/usr.bin/sockstat/sockstat.c Modified: head/usr.bin/so

svn commit: r284603 - stable/10/sys/netinet

2015-06-19 Thread Hiren Panchasara
Author: hiren Date: Fri Jun 19 19:36:21 2015 New Revision: 284603 URL: https://svnweb.freebsd.org/changeset/base/284603 Log: MFC r266420 (by adrian) Ensure that the flowid hashtype is assigned to the inp if the flowid is also assigned. Spotted by: gallatin Tested by:gallatin

svn commit: r284602 - head/sys/kern

2015-06-19 Thread Sean Bruno
Author: sbruno Date: Fri Jun 19 18:57:36 2015 New Revision: 284602 URL: https://svnweb.freebsd.org/changeset/base/284602 Log: Feedback from commit r284535 davide: imgact_binmisc_clear_entry() needs to use atomic ops to remove the enable bit. kib: M_NOWAIT is not warranted and comme

Re: svn commit: r284529 - in head/sys: cddl/contrib/opensolaris/uts/common/fs/zfs fs/nfsclient vm

2015-06-19 Thread Mark Linimon
On Wed, Jun 17, 2015 at 10:44:28PM +, Gleb Smirnoff wrote: > Log: > o Un-inline vm_pager_get_pages(), vm_pager_get_pages_async(). > o Provide an extensive set of assertions for input array of pages. > o Remove now duplicate assertions from different pagers. Out of curiosity, what is the

svn commit: r284601 - head/sys/dev/filemon

2015-06-19 Thread Simon J. Gerraty
Author: sjg Date: Fri Jun 19 17:34:59 2015 New Revision: 284601 URL: https://svnweb.freebsd.org/changeset/base/284601 Log: sx_sunlock for sx_slock Modified: head/sys/dev/filemon/filemon_wrapper.c Modified: head/sys/dev/filemon/filemon_wrapper.c ===

Re: svn commit: r268137 - head/sys/sys

2015-06-19 Thread Bruce Evans
On Fri, 19 Jun 2015, Dimitry Andric wrote: On 19 Jun 2015, at 17:02, Pedro Giffuni wrote: On 19/06/2015 05:16 a.m., David Chisnall wrote: I only just caught this (having seen the fallout from NetBSD doing the same thing in a shipping release and the pain that it???s caused): __weak is a r

svn commit: r284600 - head/sys/dev/filemon

2015-06-19 Thread Simon J. Gerraty
Author: sjg Date: Fri Jun 19 17:19:20 2015 New Revision: 284600 URL: https://svnweb.freebsd.org/changeset/base/284600 Log: filemon_pid_check needs to hold proctree_lock Reviewed by: kib MFC after:few days Modified: head/sys/dev/filemon/filemon_wrapper.c Modified: head/sys/dev/fil

Re: svn commit: r268137 - head/sys/sys

2015-06-19 Thread Joerg Sonnenberger
On Fri, Jun 19, 2015 at 03:22:49PM +0100, David Chisnall wrote: > > NetBSD: > > > sys/cdefs_elf.h > > #define __weak __attribute__((__weak__)) > > > > FreeBSD: > > > sys/cdefs.h > > #define __weak __attribute__((__weak__)) > > NetBSD is the only system that I’m aware of that has actually sh

svn commit: r284599 - head/sys/boot/uboot/lib

2015-06-19 Thread Maxim Sobolev
Author: sobomax Date: Fri Jun 19 17:00:36 2015 New Revision: 284599 URL: https://svnweb.freebsd.org/changeset/base/284599 Log: Fix bug in the ubldr introduced in the rev.283035. The new code fails to properly consider memory regions when the loader is located below of those regions or engulf

Re: svn commit: r268137 - head/sys/sys

2015-06-19 Thread Pedro Giffuni
On 06/19/15 11:24, Dimitry Andric wrote: On 19 Jun 2015, at 17:02, Pedro Giffuni wrote: On 19/06/2015 05:16 a.m., David Chisnall wrote: I only just caught this (having seen the fallout from NetBSD doing the same thing in a shipping release and the pain that it’s caused): __weak is a reserv

Re: svn commit: r268137 - head/sys/sys

2015-06-19 Thread Dimitry Andric
On 19 Jun 2015, at 17:02, Pedro Giffuni wrote: > >> On 19/06/2015 05:16 a.m., David Chisnall wrote: >>> I only just caught this (having seen the fallout from NetBSD doing the same >>> thing in a shipping release and the pain that it’s caused): >>> >>> __weak is a reserved keyword in Objective-C

Re: svn commit: r284546 - head/contrib/gcc

2015-06-19 Thread Dimitry Andric
On 18 Jun 2015, at 15:40, Adrian Chadd wrote: > > Author: adrian > Date: Thu Jun 18 13:40:08 2015 > New Revision: 284546 > URL: https://svnweb.freebsd.org/changeset/base/284546 > > Log: > Fix compilation of this macro under gcc-4.9 for MIPS32. > > Some point after gcc-4.2 the MIPS inline asse

Re: svn commit: r268137 - head/sys/sys

2015-06-19 Thread Pedro Giffuni
Hello; Closely related to this, we are redefining _Noreturn, which is a reserved keyword in C11. Not sure what effect that mess causes. Pedro. On 19/06/2015 05:16 a.m., David Chisnall wrote: I only just caught this (having seen the fallout from NetBSD doing the same thing in a shipping r

svn commit: r284598 - head/share/mk

2015-06-19 Thread Simon J. Gerraty
Author: sjg Date: Fri Jun 19 14:56:24 2015 New Revision: 284598 URL: https://svnweb.freebsd.org/changeset/base/284598 Log: Move include of make.conf back to its old position. This means moving include of local.sys.mk and src.sys.mk too. Introduce new includes to take the early slot, for t

Re: svn commit: r268137 - head/sys/sys

2015-06-19 Thread Hans Petter Selasky
On 06/19/15 16:32, Marcelo Araujo wrote: 2015-06-19 22:29 GMT+08:00 Hans Petter Selasky : On 06/19/15 16:22, David Chisnall wrote: Right - can you explain why it is ending up in your ObjC code? Because it’s in cdefs.h, which is included by*every single userspace C header*. cdefs.h must wor

Re: svn commit: r268137 - head/sys/sys

2015-06-19 Thread David Chisnall
On 19 Jun 2015, at 15:32, Marcelo Araujo wrote: > > Maybe would be a good idea run an 'exp run' with this patch? Just to double > check if any port will break, although after you rename, I don't believe it > will conflict anymore, however an 'exp run' would show you it. It’s probably worth doi

Re: svn commit: r268137 - head/sys/sys

2015-06-19 Thread Marcelo Araujo
2015-06-19 22:29 GMT+08:00 Hans Petter Selasky : > On 06/19/15 16:22, David Chisnall wrote: > >> >Right - can you explain why it is ending up in your ObjC code? >>> >> Because it’s in cdefs.h, which is included by*every single userspace C >> header*. cdefs.h must work with all C-family languages.

Re: svn commit: r268137 - head/sys/sys

2015-06-19 Thread Hans Petter Selasky
On 06/19/15 16:22, David Chisnall wrote: >Right - can you explain why it is ending up in your ObjC code? Because it’s in cdefs.h, which is included by*every single userspace C header*. cdefs.h must work with all C-family languages. David Hi David, My buildworld and buildkernel has just su

Re: svn commit: r268137 - head/sys/sys

2015-06-19 Thread David Chisnall
On 19 Jun 2015, at 14:41, Hans Petter Selasky wrote: > > On 06/19/15 14:54, David Chisnall wrote: >> I definitely know of people building out-of-ports programs on FreeBSD whose >> code you have just broken (including myself, > > though I do Objective-C stuff on 10, so haven’t yet encountered the

svn commit: r284597 - in head/sys/boot: mips/beri/loader pc98/loader powerpc/kboot powerpc/ofw powerpc/ps3 sparc64/loader

2015-06-19 Thread Baptiste Daroussin
Author: bapt Date: Fri Jun 19 14:20:21 2015 New Revision: 284597 URL: https://svnweb.freebsd.org/changeset/base/284597 Log: Fix fallouts from r284590 Reported by: kib Modified: head/sys/boot/mips/beri/loader/Makefile head/sys/boot/pc98/loader/Makefile head/sys/boot/powerpc/kboot/Mak

Re: svn commit: r268137 - head/sys/sys

2015-06-19 Thread Hans Petter Selasky
On 06/19/15 14:54, David Chisnall wrote: I definitely know of people building out-of-ports programs on FreeBSD whose code you have just broken (including myself, > though I do Objective-C stuff on 10, so haven’t yet encountered the breakage). Hi David, r268137 has been in 11-current for a lo

Re: svn commit: r284584 - in stable/10: gnu/usr.bin/groff/tmac lib/clang sys/conf

2015-06-19 Thread Slawa Olhovchenkov
On Fri, Jun 19, 2015 at 12:00:33AM +, Glen Barber wrote: > Author: gjb > Date: Fri Jun 19 00:00:32 2015 > New Revision: 284584 > URL: https://svnweb.freebsd.org/changeset/base/284584 > > Log: > Update stable/10 from 10.1-STABLE to 10.2-PRERELEASE, > marking the official start of the code

Re: svn commit: r268137 - head/sys/sys

2015-06-19 Thread David Chisnall
On 19 Jun 2015, at 12:57, Hans Petter Selasky wrote: > > Hi, > >> Then they will get a compile error no matter what GNUstep’s Foundation.h >> does. It can’t prevent cdefs.h from redefining __weak to be something >> different. >> > > Except "#undef __weak” Please read the example that I wro

svn commit: r284596 - head/sys/netinet

2015-06-19 Thread Michael Tuexen
Author: tuexen Date: Fri Jun 19 12:48:22 2015 New Revision: 284596 URL: https://svnweb.freebsd.org/changeset/base/284596 Log: When setting the primary address, return an error whenever it fails. MFC after: 3 days Modified: head/sys/netinet/sctp_usrreq.c Modified: head/sys/netinet/sctp_u

Re: svn commit: r268137 - head/sys/sys

2015-06-19 Thread Hans Petter Selasky
On 06/19/15 13:42, David Chisnall wrote: On 19 Jun 2015, at 11:45, Hans Petter Selasky wrote: Appearently this will be fixed in GNUSTEP base: http://cvsweb.netbsd.org/bsdweb.cgi/src/sys/sys/cdefs_elf.h?only_with_tag=MAIN Is this still an issue? It is impossible to fix it in GNUstep Base, b

Re: svn commit: r268137 - head/sys/sys

2015-06-19 Thread David Chisnall
On 19 Jun 2015, at 11:45, Hans Petter Selasky wrote: > > Appearently this will be fixed in GNUSTEP base: > > http://cvsweb.netbsd.org/bsdweb.cgi/src/sys/sys/cdefs_elf.h?only_with_tag=MAIN > > Is this still an issue? It is impossible to fix it in GNUstep Base, because we can’t guarantee that u

Re: svn commit: r268137 - head/sys/sys

2015-06-19 Thread Hans Petter Selasky
On 06/19/15 12:16, David Chisnall wrote: I only just caught this (having seen the fallout from NetBSD doing the same thing in a shipping release and the pain that it’s caused): __weak is a reserved keyword in Objective-C, please pick another name for this. This in cdefs.h makes it impossible

Re: svn commit: r284412 - in vendor-sys/illumos/dist/uts/common/fs/zfs: . sys

2015-06-19 Thread Gleb Smirnoff
On Fri, Jun 19, 2015 at 10:07:01AM +0300, Andriy Gapon wrote: A> Gleb Smirnoff wrote: A> > Is it possible to expand your script to A> > A> > fetch https://www.illumos.org/issues/$issue A> > A> > into your text editor, so that you can quickly cut the issue text and A> > produce a paragraph describ

Re: svn commit: r268137 - head/sys/sys

2015-06-19 Thread David Chisnall
I only just caught this (having seen the fallout from NetBSD doing the same thing in a shipping release and the pain that it’s caused): __weak is a reserved keyword in Objective-C, please pick another name for this. This in cdefs.h makes it impossible to include any FreeBSD standard headers in

svn commit: r284595 - head/etc/devd

2015-06-19 Thread Hans Petter Selasky
Author: hselasky Date: Fri Jun 19 09:37:37 2015 New Revision: 284595 URL: https://svnweb.freebsd.org/changeset/base/284595 Log: Regenerate usb.conf . MFC after:1 week Modified: head/etc/devd/usb.conf Modified: head/etc/devd/usb.conf ==

svn commit: r284594 - head/sys/fs/tmpfs

2015-06-19 Thread Konstantin Belousov
Author: kib Date: Fri Jun 19 07:25:15 2015 New Revision: 284594 URL: https://svnweb.freebsd.org/changeset/base/284594 Log: Restore the td_cookie value for the tmpfs directory entry which was a dup entry, upon detach from the parent directory. If the node is renamed, the entry is re-attached

Re: svn commit: r284412 - in vendor-sys/illumos/dist/uts/common/fs/zfs: . sys

2015-06-19 Thread Andriy Gapon
On 15/06/2015 17:43, Matthew Ahrens wrote: > You might also consider copy/pasting the description of the illumos bug into > the > FreeBSD commit message. Gleb Smirnoff wrote: > Is it possible to expand your script to > > fetch https://www.illumos.org/issues/$issue > > into your text editor, so