Page MenuHomeFreeBSD
Feed Advanced Search

Oct 16 2018

yuripv committed rS339380: pw: (file == NULL) check is always false in read_userconfig(), remove.
pw: (file == NULL) check is always false in read_userconfig(), remove
Oct 16 2018, 4:00 PM
yuripv closed D17575: pw: file == NULL check in read_userconfig() is always false.
Oct 16 2018, 4:00 PM
yuripv added a comment to D17454: PR227922: man -k/-f does not search man pages/mandoc.db from packages/ports (MANPATH problem).
In D17454#375324, @bapt wrote:

fine with me. my plan was in long term to extend mandoc's man.conf to have the missing features we have in our man(1) like able to read: /usr/local/etc/man.d/*
And then swictch fully to upstream's man.conf and remove our man(1), so go ahead for your patch :)

Oct 16 2018, 3:15 PM
yuripv added a comment to D17454: PR227922: man -k/-f does not search man pages/mandoc.db from packages/ports (MANPATH problem).
In D17454#375268, @bapt wrote:

We could bring again apropos and whatis as hardlinks to man(1) moving the binaries in libexec so manpath is built before calling them as well

Oct 16 2018, 2:25 PM
yuripv added a comment to D17454: PR227922: man -k/-f does not search man pages/mandoc.db from packages/ports (MANPATH problem).
In D17454#375266, @bapt wrote:

what about building MANPATH before calling apropos in man(1) ?

That would be less intrusive

Oct 16 2018, 11:35 AM
yuripv added a comment to D17449: PR227408: apropos(1) doesn't sort.
In D17449#375264, @bapt wrote:

First we should ship the said manpage :)

I think this is debattable, but I think upstream is opened enought to accept such change, you should anyway talk to them to see if that will remain a freebsd only patch or not :)

Oct 16 2018, 11:25 AM
yuripv retitled D17454: PR227922: man -k/-f does not search man pages/mandoc.db from packages/ports (MANPATH problem) from PR227992: man -k/-f does not search man pages/mandoc.db from packages/ports (MANPATH problem) to PR227922: man -k/-f does not search man pages/mandoc.db from packages/ports (MANPATH problem).
Oct 16 2018, 10:41 AM
yuripv added a comment to D17575: pw: file == NULL check in read_userconfig() is always false.

Looks good. While you are here, please also replace last "/etc" literal in the pw.c's main() function with _PATH_PWD used with all other places of pw(1) sources.

Oct 16 2018, 10:31 AM
yuripv updated the diff for D17575: pw: file == NULL check in read_userconfig() is always false.

Suggestion from Eugene.

Oct 16 2018, 10:31 AM
yuripv added inline comments to D17551: PR225855: restore x_fmt for ca_IT.ISO8859-15.src.
Oct 16 2018, 3:28 AM

Oct 15 2018

yuripv created D17575: pw: file == NULL check in read_userconfig() is always false.
Oct 15 2018, 8:45 PM
yuripv committed rS339369: pw: respect path specified using -V when writing pw.conf, and -C is not.
pw: respect path specified using -V when writing pw.conf, and -C is not
Oct 15 2018, 8:12 PM
yuripv closed D17566: PR231653: pw doesn't respect -V when writing pw.conf.
Oct 15 2018, 8:12 PM
yuripv added a comment to D17566: PR231653: pw doesn't respect -V when writing pw.conf.

While the change seems to be semantically right, I don't really like we have more and more places with hard-coded "pw.conf" in the pw(8) sources.

Could you please to add #define _PW_CONF "pw.conf" to pw.h and use "%s/" _PW_CONF (concatenation of C string literals) instead of "%s/pw.conf" ? And make same change to pw_utils.c' get_userconfig() function too, while you are here.

Sure, done.

I have not asked to touch _PATH_PW_CONF in the pw.h and I'm not sure it is completely correct to change it like this, with space and without parenthesis. I'd like to change it back as it was to be sure.

Oct 15 2018, 2:30 PM
yuripv updated the diff for D17566: PR231653: pw doesn't respect -V when writing pw.conf.
Oct 15 2018, 2:30 PM
yuripv added a comment to D17566: PR231653: pw doesn't respect -V when writing pw.conf.

While the change seems to be semantically right, I don't really like we have more and more places with hard-coded "pw.conf" in the pw(8) sources.

Could you please to add #define _PW_CONF "pw.conf" to pw.h and use "%s/" _PW_CONF (concatenation of C string literals) instead of "%s/pw.conf" ? And make same change to pw_utils.c' get_userconfig() function too, while you are here.

Oct 15 2018, 2:10 PM
yuripv updated the diff for D17566: PR231653: pw doesn't respect -V when writing pw.conf.

Add and use _PW_CONF instead of hardcoding "pw.conf".

Oct 15 2018, 2:10 PM
yuripv added a comment to D17566: PR231653: pw doesn't respect -V when writing pw.conf.
In D17566#374919, @bapt wrote:

if you can provide a regression test, that would be nice

Oct 15 2018, 1:57 PM
yuripv created D17566: PR231653: pw doesn't respect -V when writing pw.conf.
Oct 15 2018, 1:42 PM

Oct 14 2018

yuripv added a comment to D17550: strptime: fix %C, %y, and %Y permutations.
In D17550#374675, @kib wrote:
In D17550#374655, @kib wrote:

So we apparently have Y2K bug ?

If you mean the negative values for tm_year, then it likely should be called Y1.9K bug. Otherwise, we seem to have followed the standard, just didn't care about %C and %y both appearing in the format string in arbitrary order.

I mean that %y%C leads to invalid century.

Oct 14 2018, 3:22 PM
yuripv added a comment to D17550: strptime: fix %C, %y, and %Y permutations.
In D17550#374655, @kib wrote:

So we apparently have Y2K bug ?

Oct 14 2018, 1:01 PM
yuripv updated the diff for D17550: strptime: fix %C, %y, and %Y permutations.

style

Oct 14 2018, 12:59 PM
yuripv added inline comments to D17550: strptime: fix %C, %y, and %Y permutations.
Oct 14 2018, 12:51 PM
yuripv added inline comments to D17550: strptime: fix %C, %y, and %Y permutations.
Oct 14 2018, 12:50 PM
yuripv created D17551: PR225855: restore x_fmt for ca_IT.ISO8859-15.src.
Oct 14 2018, 7:21 AM

Oct 13 2018

yuripv created D17550: strptime: fix %C, %y, and %Y permutations.
Oct 13 2018, 9:20 PM
yuripv added inline comments to D17546: connect libc/tests/time to the build.
Oct 13 2018, 5:00 PM
yuripv added a comment to D17546: connect libc/tests/time to the build.
In D17546#374448, @ngie wrote:

Regarding this comment, do you mean that the test fails when you remove the atf_tc_expect_fail call on 231-234? If so, please restore that line, but feel free to update the message to improve the clarity, since what I put in there a couple years back is pretty vague.

Oct 13 2018, 4:55 PM
yuripv committed rS339346: strptime: disallow zero hour for %I (defined by POSIX as [01,12]) and %l.
strptime: disallow zero hour for %I (defined by POSIX as [01,12]) and %l
Oct 13 2018, 4:26 PM
yuripv closed D17543: strptime: disallow zero hour for %I and %l.
Oct 13 2018, 4:26 PM
yuripv created D17546: connect libc/tests/time to the build.
Oct 13 2018, 1:00 PM
yuripv added a comment to D17543: strptime: disallow zero hour for %I and %l.

Agreed, this needs to be looked at, and according to tests results, there are a lot more issues with strptime() (comparing with standard and linux output as well).

Oct 13 2018, 12:42 AM
yuripv added inline comments to D17543: strptime: disallow zero hour for %I and %l.
Oct 13 2018, 12:19 AM
yuripv updated the diff for D17543: strptime: disallow zero hour for %I and %l.

simplify even more

Oct 13 2018, 12:18 AM
yuripv updated the diff for D17543: strptime: disallow zero hour for %I and %l.

simplify the check

Oct 13 2018, 12:13 AM
yuripv created D17543: strptime: disallow zero hour for %I and %l.
Oct 13 2018, 12:00 AM

Oct 12 2018

yuripv updated the diff for D17531: bhyve: provide basic descriptions for VMX exit reason.

style fixes

Oct 12 2018, 2:44 PM
yuripv added inline comments to D17531: bhyve: provide basic descriptions for VMX exit reason.
Oct 12 2018, 11:49 AM
yuripv updated the diff for D17531: bhyve: provide basic descriptions for VMX exit reason.

Address comments.

Oct 12 2018, 11:48 AM
yuripv updated the diff for D17531: bhyve: provide basic descriptions for VMX exit reason.

copy/paste error

Oct 12 2018, 10:56 AM
yuripv created D17531: bhyve: provide basic descriptions for VMX exit reason.
Oct 12 2018, 10:43 AM

Oct 11 2018

yuripv closed D17473: fix PNP entries for if_ix and if_ixv.
Oct 11 2018, 10:27 PM
yuripv committed rS339319: Fix PNP entries for if_ix and if_ixv properly using the IFLIB_PNP_INFO().
Fix PNP entries for if_ix and if_ixv properly using the IFLIB_PNP_INFO()
Oct 11 2018, 10:27 PM
yuripv committed rS339318: MODULE_PNP_INFO(9): catch up with r338948, and remove the element size.
MODULE_PNP_INFO(9): catch up with r338948, and remove the element size
Oct 11 2018, 9:19 PM
yuripv closed D17436: MODULE_PNP_INFO(9): catch up with r338948.
Oct 11 2018, 9:19 PM
yuripv committed rS339313: Restore some of the ctype definitions reported in the PR from pre-CLDR.
Restore some of the ctype definitions reported in the PR from pre-CLDR
Oct 11 2018, 6:30 PM
yuripv closed D17471: PR225692: ctype: restore some of ctype definitions from pre-CLDR data.
Oct 11 2018, 6:30 PM
yuripv committed rS339311: Add fbsd:nokeywords to tools/tools/locale/etc/manual-input.UTF-8..
Add fbsd:nokeywords to tools/tools/locale/etc/manual-input.UTF-8.
Oct 11 2018, 6:26 PM
yuripv added a comment to D17473: fix PNP entries for if_ix and if_ixv.

@yuripv Do you want me to commit this or are you going to be able to send the request to release engineering?

https://wiki.freebsd.org/Releng/ChangeRequestGuidelines

Oct 11 2018, 6:00 PM

Oct 10 2018

yuripv updated the diff for D17471: PR225692: ctype: restore some of ctype definitions from pre-CLDR data.
Oct 10 2018, 1:43 PM

Oct 8 2018

yuripv added a comment to D17473: fix PNP entries for if_ix and if_ixv.

Sorry, I forgot to add the output from devmatch -d for fixed versions. Done now.

Oct 8 2018, 4:45 PM
yuripv updated the test plan for D17473: fix PNP entries for if_ix and if_ixv.
Oct 8 2018, 4:44 PM
yuripv created D17473: fix PNP entries for if_ix and if_ixv.
Oct 8 2018, 4:03 PM
yuripv updated the diff for D17471: PR225692: ctype: restore some of ctype definitions from pre-CLDR data.

full context

Oct 8 2018, 2:06 PM
yuripv created D17471: PR225692: ctype: restore some of ctype definitions from pre-CLDR data.
Oct 8 2018, 1:35 PM
yuripv updated the diff for D17467: PR225692: localedef: mark "space" also as "print" excluding known conflicts.

update copyright

Oct 8 2018, 11:49 AM
yuripv updated the diff for D17467: PR225692: localedef: mark "space" also as "print" excluding known conflicts.
Oct 8 2018, 11:08 AM
yuripv created D17467: PR225692: localedef: mark "space" also as "print" excluding known conflicts.
Oct 8 2018, 11:04 AM

Oct 7 2018

yuripv created D17454: PR227922: man -k/-f does not search man pages/mandoc.db from packages/ports (MANPATH problem).
Oct 7 2018, 7:26 AM

Oct 6 2018

yuripv created D17449: PR227408: apropos(1) doesn't sort.
Oct 6 2018, 11:13 AM

Oct 5 2018

yuripv created D17436: MODULE_PNP_INFO(9): catch up with r338948.
Oct 5 2018, 5:34 PM

Oct 4 2018

yuripv accepted D17403: MODULE_PNP_INFO(9): Fix a grammar mistake..
Oct 4 2018, 10:24 AM
yuripv added a comment to D17403: MODULE_PNP_INFO(9): Fix a grammar mistake..

Looks good.

Oct 4 2018, 10:23 AM

Oct 2 2018

yuripv added a comment to D17386: Allow "gpart bootcode" to work with version 1 boot0/boot0sio and to set new Volume Serial Number via boot0cfg.

Please provide the diff with full context, e.g. by using -U10000 (a number big enough to include entire file contents) for git diff or git log.

Oct 2 2018, 10:42 PM

Oct 1 2018

yuripv added a comment to D17369: top(1): rework DESCRIPTION OF MEMORY section.

The order currently follows what we have in the actual top output, and seems logically more correct than sorting alphabetically.

Oct 1 2018, 11:12 AM
yuripv updated the diff for D17369: top(1): rework DESCRIPTION OF MEMORY section.
Oct 1 2018, 11:10 AM
yuripv added inline comments to D17369: top(1): rework DESCRIPTION OF MEMORY section.
Oct 1 2018, 11:10 AM
yuripv created D17369: top(1): rework DESCRIPTION OF MEMORY section.
Oct 1 2018, 10:48 AM

Sep 27 2018

yuripv added a comment to D17321: MODULE_PNP_INFO(9): add example of T usage.

So.. if this looks all good, can anyone please commit it? :)

Sep 27 2018, 11:14 AM

Sep 26 2018

yuripv updated the diff for D17321: MODULE_PNP_INFO(9): add example of T usage.
Sep 26 2018, 11:08 AM
yuripv updated the diff for D17321: MODULE_PNP_INFO(9): add example of T usage.

Address review comments.

Sep 26 2018, 11:07 AM
yuripv added inline comments to D17321: MODULE_PNP_INFO(9): add example of T usage.
Sep 26 2018, 11:06 AM

Sep 25 2018

yuripv added a comment to D17321: MODULE_PNP_INFO(9): add example of T usage.
In D17321#369299, @cem wrote:

I am unfamiliar with usage of T, but assuming the example provided is correct, I agree that adding an example is a good idea. (And the markup/text changes look good.)

Sep 25 2018, 8:20 PM
yuripv created D17321: MODULE_PNP_INFO(9): add example of T usage.
Sep 25 2018, 8:00 PM

Sep 24 2018

yuripv updated the diff for D17299: PR231649: pw: make checks in boolean_str() match reality.

add fix for PR231653 helping added test cases

Sep 24 2018, 7:42 AM
yuripv updated the diff for D17299: PR231649: pw: make checks in boolean_str() match reality.

add test case

Sep 24 2018, 4:09 AM
yuripv updated the test plan for D17299: PR231649: pw: make checks in boolean_str() match reality.
Sep 24 2018, 3:49 AM
yuripv created D17299: PR231649: pw: make checks in boolean_str() match reality.
Sep 24 2018, 3:49 AM

Sep 21 2018

yuripv added a comment to D17267: We don't need shell protection for when we're expanding matches. Don't add it. This should fix when we do regepx matches against variables we've set and fix wifi bring up..

Does this require any changes to devd.conf to work? Only applying this patch and copy over devd binary to my test machine doesn't change anything for me, the regexp still starts with ^$'(.....

Sep 21 2018, 8:43 AM

Sep 14 2018

yuripv added a comment to D17166: Add a way to get version information from querylocale(3)..

Looks good to me, FWIW.

Sep 14 2018, 11:54 AM
yuripv added inline comments to D17166: Add a way to get version information from querylocale(3)..
Sep 14 2018, 11:01 AM
yuripv added inline comments to D17166: Add a way to get version information from querylocale(3)..
Sep 14 2018, 6:18 AM
yuripv added a comment to D17166: Add a way to get version information from querylocale(3)..

Please provide the diff with full context, e.g. by using -U with number of lines big enough to include full file contents if you are using git diff or git log -p.

Sep 14 2018, 6:03 AM

Sep 12 2018

yuripv created D17132: PR228448: `unlink -foo` , the original use of `unlink`, no longer works..
Sep 12 2018, 12:58 PM

Sep 8 2018

yuripv added inline comments to D17076: intelspi: don't leak spibus children on detach.
Sep 8 2018, 5:42 PM
yuripv updated the diff for D17076: intelspi: don't leak spibus children on detach.

use bus_generic_detach().

Sep 8 2018, 5:41 PM
yuripv created D17076: intelspi: don't leak spibus children on detach.
Sep 8 2018, 5:44 AM

Aug 27 2018

yuripv updated the diff for D16798: sed: fix -i option behavior with 'q' command.

I don't see an easy way to check for leftovers in the working directory using standard kyua commands, so simply add the check for '.!'* files to all inplace cases.

Aug 27 2018, 9:49 PM
yuripv added inline comments to D16798: sed: fix -i option behavior with 'q' command.
Aug 27 2018, 8:50 PM
yuripv added inline comments to D16798: sed: fix -i option behavior with 'q' command.
Aug 27 2018, 6:49 PM
yuripv added inline comments to D16798: sed: fix -i option behavior with 'q' command.
Aug 27 2018, 6:42 PM
yuripv added inline comments to D16798: sed: fix -i option behavior with 'q' command.
Aug 27 2018, 5:03 PM

Aug 25 2018

yuripv accepted D16895: Add in a missing newline.

Fixes the issue for me, ums.ko is correctly auto-loaded.

Aug 25 2018, 7:51 AM

Aug 24 2018

yuripv added a reviewer for D16798: sed: fix -i option behavior with 'q' command: kevans.
Aug 24 2018, 1:29 PM
yuripv updated subscribers of D16798: sed: fix -i option behavior with 'q' command.
Aug 24 2018, 1:28 PM

Aug 19 2018

yuripv updated the diff for D16798: sed: fix -i option behavior with 'q' command.

Add a simple test case (hopefully not TOO simple).

Aug 19 2018, 4:39 PM
yuripv added a comment to D16798: sed: fix -i option behavior with 'q' command.

This seems reasonable to me. Would you be willing to add a regression test?

Aug 19 2018, 3:50 PM
yuripv updated the summary of D16798: sed: fix -i option behavior with 'q' command.
Aug 19 2018, 3:03 PM
yuripv added inline comments to D16797: Provide set_constraint_handler_s(3) man page.
Aug 19 2018, 1:28 PM
yuripv updated the diff for D16797: Provide set_constraint_handler_s(3) man page.
Aug 19 2018, 1:27 PM