Page MenuHomeFreeBSD
Feed Advanced Search

Jun 12 2023

nyan_myuji.xyz added a comment to D40377: Teach route(8) to run in jails.

The jail_name variable must be initialised to NULL. This should be done through an explicit char * jail_name = NULL; in line 101 of route.c.

Jun 12 2023, 3:50 PM · Jails

Jun 2 2023

nyan_myuji.xyz updated the diff for D40377: Teach route(8) to run in jails.
  • remove usejail variable
Jun 2 2023, 6:01 PM · Jails

Jun 1 2023

nyan_myuji.xyz added a comment to D40377: Teach route(8) to run in jails.

@melifaro Thank you so much for reviewing and the suggestion! I have moved the jail attach bit out and added the missed Makefile changes. (oops)

Jun 1 2023, 6:03 PM · Jails
nyan_myuji.xyz updated subscribers of D40377: Teach route(8) to run in jails.
Jun 1 2023, 6:01 PM · Jails
nyan_myuji.xyz updated the diff for D40377: Teach route(8) to run in jails.
  • move jail attach away from arg parse
Jun 1 2023, 5:59 PM · Jails
nyan_myuji.xyz added a comment to D40213: Teach ifconfig to attach and run itself in a jail..

@dfr A patch for route is available at D40377

Jun 1 2023, 2:48 PM
nyan_myuji.xyz added reviewers for D40377: Teach route(8) to run in jails: Jails, melifaro.
Jun 1 2023, 2:48 PM · Jails
nyan_myuji.xyz requested review of D40377: Teach route(8) to run in jails.
Jun 1 2023, 2:44 PM · Jails

May 27 2023

nyan_myuji.xyz updated subscribers of D40299: Tie kern.fallback_elf_brand to the fallback elf brand of the current prison.

@jamie Here is the review for the sysctl

May 27 2023, 4:59 AM
nyan_myuji.xyz updated the summary of D40299: Tie kern.fallback_elf_brand to the fallback elf brand of the current prison.
May 27 2023, 4:59 AM
nyan_myuji.xyz requested review of D40299: Tie kern.fallback_elf_brand to the fallback elf brand of the current prison.
May 27 2023, 4:57 AM
nyan_myuji.xyz updated the diff for D40262: Allow setting a per-Jail fallback ABI brand..
  • assign value to prison_fallback_brand varibale right before it is used
May 27 2023, 3:36 AM · Jails

May 26 2023

nyan_myuji.xyz added a comment to D40262: Allow setting a per-Jail fallback ABI brand..

Rather than add a separate value different from the kern.fallback_elf_brand sysctl, it would make sense for the jail parameter to be tied to the sysctl itself, such as the securelevel parameter is. It's complicated somewhat by the fact that there are three similar sysctls.

May 26 2023, 12:42 AM · Jails
nyan_myuji.xyz updated the diff for D40262: Allow setting a per-Jail fallback ABI brand..
  • Use pr_spare for pr_elf_fallback_brand
May 26 2023, 12:30 AM · Jails

May 25 2023

nyan_myuji.xyz updated the diff for D40262: Allow setting a per-Jail fallback ABI brand..
  • update date
May 25 2023, 6:21 PM · Jails
nyan_myuji.xyz updated the diff for D40262: Allow setting a per-Jail fallback ABI brand..
  • use .Pp instead of empty lines in manpage
May 25 2023, 6:19 PM · Jails
nyan_myuji.xyz updated the diff for D40262: Allow setting a per-Jail fallback ABI brand..
  • use .Xr in manpage
May 25 2023, 6:17 PM · Jails
nyan_myuji.xyz updated the diff for D40262: Allow setting a per-Jail fallback ABI brand..

Man page update

May 25 2023, 5:58 PM · Jails
nyan_myuji.xyz updated the summary of D40262: Allow setting a per-Jail fallback ABI brand..
May 25 2023, 4:50 AM · Jails
nyan_myuji.xyz retitled D40262: Allow setting a per-Jail fallback ABI brand. from Allow setting a per-Jail efi fallback ABI brand. to Allow setting a per-Jail fallback ABI brand..
May 25 2023, 4:24 AM · Jails
nyan_myuji.xyz added reviewers for D40262: Allow setting a per-Jail fallback ABI brand.: emaste, lwhsu, khng, Jails.
May 25 2023, 4:20 AM · Jails
nyan_myuji.xyz updated the diff for D40262: Allow setting a per-Jail fallback ABI brand..
  • fix sysctl parametetr description
May 25 2023, 4:19 AM · Jails
nyan_myuji.xyz requested review of D40262: Allow setting a per-Jail fallback ABI brand..
May 25 2023, 4:16 AM · Jails

May 23 2023

nyan_myuji.xyz updated the diff for D40213: Teach ifconfig to attach and run itself in a jail..
  • remove explicit initialization
May 23 2023, 7:44 PM

May 22 2023

nyan_myuji.xyz updated the diff for D40213: Teach ifconfig to attach and run itself in a jail..

including the correct range

May 22 2023, 11:18 PM
nyan_myuji.xyz updated the diff for D40213: Teach ifconfig to attach and run itself in a jail..

cleanup

May 22 2023, 11:16 PM
nyan_myuji.xyz updated the diff for D40213: Teach ifconfig to attach and run itself in a jail..

Move jail_attach away from args_parse

May 22 2023, 11:13 PM
nyan_myuji.xyz updated the diff for D40213: Teach ifconfig to attach and run itself in a jail..
  • print error and exit if -j specified but ifconfig isn't built with jail support
  • bump manpage date
May 22 2023, 10:31 PM
nyan_myuji.xyz updated the diff for D40213: Teach ifconfig to attach and run itself in a jail..
  • modify man page to refactor the new -j flag
May 22 2023, 10:23 PM
nyan_myuji.xyz updated the diff for D40213: Teach ifconfig to attach and run itself in a jail..
  • improve readability
May 22 2023, 8:11 PM
nyan_myuji.xyz added inline comments to D40213: Teach ifconfig to attach and run itself in a jail..
May 22 2023, 8:10 PM
nyan_myuji.xyz updated the summary of D40213: Teach ifconfig to attach and run itself in a jail..
May 22 2023, 7:55 PM
nyan_myuji.xyz updated the diff for D40213: Teach ifconfig to attach and run itself in a jail..
  • fix rescue build
May 22 2023, 7:53 PM
nyan_myuji.xyz added reviewers for D40213: Teach ifconfig to attach and run itself in a jail.: emaste, lwhsu, khng.
May 22 2023, 7:39 PM
nyan_myuji.xyz requested review of D40213: Teach ifconfig to attach and run itself in a jail..
May 22 2023, 7:37 PM

Jul 6 2022

nyan_myuji.xyz added a comment to D35649: Fix ixl SR-IOV..

@erj @krzysztof.galazka_intel.com Thank you so much for reviewing. Do you mind to commit this as well? Thank you so much.

Jul 6 2022, 6:34 AM

Jun 30 2022

nyan_myuji.xyz added a comment to D35143: Bhyve virtio-net: Allow backend type to be explicitly specified..

@jhb Thank you so much for helping! I have submitted a few patches under "Yan Ka Chiu" lately so I guess I will use that instead for consistency.

Jun 30 2022, 4:36 PM

Jun 29 2022

nyan_myuji.xyz updated the diff for D35649: Fix ixl SR-IOV..

Fix typo

Jun 29 2022, 4:08 AM
nyan_myuji.xyz requested review of D35649: Fix ixl SR-IOV..
Jun 29 2022, 4:01 AM

Jun 6 2022

nyan_myuji.xyz updated the diff for D35143: Bhyve virtio-net: Allow backend type to be explicitly specified..
  • change to use type as the option
  • simplify code
Jun 6 2022, 1:11 PM

May 16 2022

nyan_myuji.xyz updated the diff for D35169: pam_exec: fix segfault when existing auth token is null on `pam_sm_set_cred`.
  • Rephrase error message and formatting
  • Removed blank line
May 16 2022, 5:09 PM
nyan_myuji.xyz added a comment to D35169: pam_exec: fix segfault when existing auth token is null on `pam_sm_set_cred`.

@des updated

May 16 2022, 3:24 PM
nyan_myuji.xyz updated the diff for D35169: pam_exec: fix segfault when existing auth token is null on `pam_sm_set_cred`.
  • Rephrase error message and formatting
May 16 2022, 3:23 PM

May 12 2022

nyan_myuji.xyz updated the diff for D35169: pam_exec: fix segfault when existing auth token is null on `pam_sm_set_cred`.

Fix the submitted diff

May 12 2022, 8:51 AM

May 10 2022

nyan_myuji.xyz updated the diff for D35169: pam_exec: fix segfault when existing auth token is null on `pam_sm_set_cred`.

also check rc

May 10 2022, 7:43 PM
nyan_myuji.xyz added a reviewer for D35169: pam_exec: fix segfault when existing auth token is null on `pam_sm_set_cred`: des.
May 10 2022, 6:33 PM
nyan_myuji.xyz requested review of D35169: pam_exec: fix segfault when existing auth token is null on `pam_sm_set_cred`.
May 10 2022, 6:30 PM

May 6 2022

nyan_myuji.xyz retitled D35143: Bhyve virtio-net: Allow backend type to be explicitly specified. from Bhyve virtio-net: Allow backend to be explicitly specified. to Bhyve virtio-net: Allow backend type to be explicitly specified..
May 6 2022, 8:23 PM
nyan_myuji.xyz updated the diff for D35143: Bhyve virtio-net: Allow backend type to be explicitly specified..
  • change to use type as the option
  • yes I am an idiot and totally forgot bhyve-config(5)
May 6 2022, 8:19 PM
nyan_myuji.xyz requested review of D35143: Bhyve virtio-net: Allow backend type to be explicitly specified..
May 6 2022, 7:47 PM
nyan_myuji.xyz requested review of D35142: Fix virtio-console on bhyve.
May 6 2022, 6:26 PM

Mar 21 2021

nyan_myuji.xyz added a comment to D29359: Bring back lang/julia and lang/julia10.

Thanks for resurrecting julia!

I have two remarks:

  • any reason to work on 1.0.3? The latest release is now 1.5.4, and 1.6.0 is now at -rc3;
  • when using the external BLAS, you could set USES+= blaslapack:openblas
Mar 21 2021, 2:07 PM
nyan_myuji.xyz added a reviewer for D29359: Bring back lang/julia and lang/julia10: lwhsu.
Mar 21 2021, 12:16 PM
nyan_myuji.xyz updated the diff for D29359: Bring back lang/julia and lang/julia10.

remove lang/julia and lang/juila10 from MOVED

Mar 21 2021, 11:31 AM
nyan_myuji.xyz requested review of D29359: Bring back lang/julia and lang/julia10.
Mar 21 2021, 11:29 AM

Mar 4 2021

nyan_myuji.xyz updated the summary of D29050: Unbreak devel/libgtop for base post R365734.
Mar 4 2021, 12:23 AM
nyan_myuji.xyz updated the diff for D29050: Unbreak devel/libgtop for base post R365734.
  • Manually expand the VTOI macro to further avoid dependency of
Mar 4 2021, 12:19 AM
nyan_myuji.xyz added a reviewer for D29050: Unbreak devel/libgtop for base post R365734: cy.
Mar 4 2021, 12:16 AM
nyan_myuji.xyz removed a reviewer for D29050: Unbreak devel/libgtop for base post R365734: cy.
Mar 4 2021, 12:15 AM

Mar 3 2021

nyan_myuji.xyz updated the diff for D29050: Unbreak devel/libgtop for base post R365734.
Mar 3 2021, 11:26 PM
nyan_myuji.xyz updated the diff for D29050: Unbreak devel/libgtop for base post R365734.
Mar 3 2021, 11:21 PM
nyan_myuji.xyz requested review of D29050: Unbreak devel/libgtop for base post R365734.
Mar 3 2021, 11:15 PM

Feb 28 2021

nyan_myuji.xyz updated the summary of D28985: Update distinfo of textproc/UCD.
Feb 28 2021, 3:51 PM
nyan_myuji.xyz updated the diff for D28985: Update distinfo of textproc/UCD.

Revert more files

Feb 28 2021, 1:38 PM
nyan_myuji.xyz updated the diff for D28985: Update distinfo of textproc/UCD.

Revert accidental changes to other ports

Feb 28 2021, 1:33 PM
nyan_myuji.xyz updated the diff for D28985: Update distinfo of textproc/UCD.

add port revision

Feb 28 2021, 1:26 PM
nyan_myuji.xyz requested review of D28985: Update distinfo of textproc/UCD.
Feb 28 2021, 1:24 PM

Feb 13 2021

nyan_myuji.xyz added a comment to D28655: ifconfig-wg fix incorrect allowed-ips netmask info.

Related bugzillla ticket: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=253487

Feb 13 2021, 11:42 PM
nyan_myuji.xyz requested review of D28655: ifconfig-wg fix incorrect allowed-ips netmask info.
Feb 13 2021, 11:39 PM

Feb 8 2021

nyan_myuji.xyz added a comment to D28135: net/aquantia-atlantic-kmod: Fix CURRENT build post r353868 (iflib changes).

@koobs Please review and commit this if it's alright?

Feb 8 2021, 2:24 PM

Feb 1 2021

nyan_myuji.xyz updated the diff for D28135: net/aquantia-atlantic-kmod: Fix CURRENT build post r353868 (iflib changes).

Add link to upstream pr

Feb 1 2021, 11:42 AM

Jan 21 2021

nyan_myuji.xyz updated the diff for D28135: net/aquantia-atlantic-kmod: Fix CURRENT build post r353868 (iflib changes).

Use arc4random instead of random

Jan 21 2021, 10:24 AM

Jan 14 2021

nyan_myuji.xyz added inline comments to D28135: net/aquantia-atlantic-kmod: Fix CURRENT build post r353868 (iflib changes).
Jan 14 2021, 3:00 AM
nyan_myuji.xyz added a comment to D28135: net/aquantia-atlantic-kmod: Fix CURRENT build post r353868 (iflib changes).

If the iflib changes have been tested and are known to work, they're probably okay.

Is the extra patch to aq_hw.c intentional? Using random() to generate a MAC address isn't great. Not seeding it makes it even worse.

Jan 14 2021, 2:26 AM

Jan 13 2021

nyan_myuji.xyz updated the diff for D28135: net/aquantia-atlantic-kmod: Fix CURRENT build post r353868 (iflib changes).

Use PORTREVISION instead of PORTEPOCH

Jan 13 2021, 5:21 PM
nyan_myuji.xyz added inline comments to D28135: net/aquantia-atlantic-kmod: Fix CURRENT build post r353868 (iflib changes).
Jan 13 2021, 5:18 PM
nyan_myuji.xyz added a reviewer for D28135: net/aquantia-atlantic-kmod: Fix CURRENT build post r353868 (iflib changes): philip.
Jan 13 2021, 5:08 PM
nyan_myuji.xyz added inline comments to D28135: net/aquantia-atlantic-kmod: Fix CURRENT build post r353868 (iflib changes).
Jan 13 2021, 5:07 PM
nyan_myuji.xyz requested review of D28135: net/aquantia-atlantic-kmod: Fix CURRENT build post r353868 (iflib changes).
Jan 13 2021, 2:49 PM

Jun 15 2019

nyan_myuji.xyz created D20648: add macOS like three finger drag trackpad gesture to psm.
Jun 15 2019, 9:38 AM

Jun 2 2019

nyan_myuji.xyz added a comment to D20447: Add natural scrolling support to psm..
In D20447#442373, @wulf wrote:

One more question:

Why ver and hor sysctls are added separately?

I think single "natural_scroll" is enough.

Jun 2 2019, 10:50 PM

May 29 2019

nyan_myuji.xyz added inline comments to D20447: Add natural scrolling support to psm..
May 29 2019, 5:25 AM

May 28 2019

nyan_myuji.xyz added a comment to D20447: Add natural scrolling support to psm..
In D20447#441492, @wulf wrote:

Hi Nyan,
Could you upload the diff as fullcontext diff next time. See https://wiki.freebsd.org/Phabricator

git diff -U999999 other-branch > change.diff
git show -U999999 <commit-hash> > change.diff
svn diff --diff-cmd=diff -x -U999999 > change.diff`

It is not necessary to reupload current diff

May 28 2019, 11:04 PM
nyan_myuji.xyz created D20447: Add natural scrolling support to psm..
May 28 2019, 5:12 PM