nbd-commits Mailing List for Network Block Device
Brought to you by:
yoe
You can subscribe to this list here.
| 2007 |
Jan
|
Feb
|
Mar
(4) |
Apr
(1) |
May
|
Jun
(9) |
Jul
(11) |
Aug
(9) |
Sep
(6) |
Oct
(18) |
Nov
(6) |
Dec
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2008 |
Jan
(5) |
Feb
|
Mar
(15) |
Apr
(2) |
May
(3) |
Jun
(2) |
Jul
(1) |
Aug
(3) |
Sep
|
Oct
(1) |
Nov
|
Dec
(1) |
| 2009 |
Jan
|
Feb
|
Mar
|
Apr
(4) |
May
(6) |
Jun
(3) |
Jul
(7) |
Aug
(9) |
Sep
(3) |
Oct
(3) |
Nov
(1) |
Dec
(1) |
| 2010 |
Jan
|
Feb
(2) |
Mar
(2) |
Apr
(3) |
May
(2) |
Jun
(2) |
Jul
(15) |
Aug
(12) |
Sep
(10) |
Oct
|
Nov
|
Dec
(1) |
| 2011 |
Jan
(4) |
Feb
(3) |
Mar
(1) |
Apr
(2) |
May
(20) |
Jun
(7) |
Jul
(3) |
Aug
(3) |
Sep
(6) |
Oct
(2) |
Nov
(5) |
Dec
(3) |
| 2012 |
Jan
(1) |
Feb
(2) |
Mar
|
Apr
|
May
(13) |
Jun
(2) |
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
(4) |
| 2013 |
Jan
(9) |
Feb
(1) |
Mar
(4) |
Apr
(11) |
May
(6) |
Jun
(5) |
Jul
(1) |
Aug
|
Sep
(1) |
Oct
|
Nov
(4) |
Dec
(15) |
| 2014 |
Jan
(28) |
Feb
(4) |
Mar
(23) |
Apr
(5) |
May
(2) |
Jun
(3) |
Jul
(3) |
Aug
|
Sep
(8) |
Oct
(20) |
Nov
(3) |
Dec
(1) |
| 2015 |
Jan
(5) |
Feb
|
Mar
(14) |
Apr
|
May
(4) |
Jun
(49) |
Jul
(2) |
Aug
(4) |
Sep
(1) |
Oct
(8) |
Nov
(28) |
Dec
(23) |
| 2016 |
Jan
(9) |
Feb
(4) |
Mar
(9) |
Apr
(44) |
May
(2) |
Jun
(4) |
Jul
(3) |
Aug
(1) |
Sep
(3) |
Oct
(16) |
Nov
(25) |
Dec
(43) |
| 2017 |
Jan
(6) |
Feb
(4) |
Mar
(3) |
Apr
(13) |
May
(17) |
Jun
(4) |
Jul
|
Aug
|
Sep
(6) |
Oct
(8) |
Nov
(15) |
Dec
(5) |
| 2018 |
Jan
(4) |
Feb
(1) |
Mar
(18) |
Apr
(21) |
May
(3) |
Jun
|
Jul
(1) |
Aug
(3) |
Sep
(17) |
Oct
(6) |
Nov
(3) |
Dec
(1) |
| 2019 |
Jan
(4) |
Feb
(7) |
Mar
(1) |
Apr
(5) |
May
(6) |
Jun
(1) |
Jul
(1) |
Aug
(2) |
Sep
(4) |
Oct
(1) |
Nov
|
Dec
|
| 2020 |
Jan
|
Feb
(2) |
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
(3) |
Nov
|
Dec
|
| 2021 |
Jan
(2) |
Feb
(1) |
Mar
|
Apr
|
May
(6) |
Jun
(1) |
Jul
(2) |
Aug
(6) |
Sep
(3) |
Oct
(3) |
Nov
(6) |
Dec
(1) |
| 2022 |
Jan
(1) |
Feb
|
Mar
(16) |
Apr
(1) |
May
|
Jun
(2) |
Jul
(3) |
Aug
(1) |
Sep
(1) |
Oct
(1) |
Nov
|
Dec
(1) |
| 2023 |
Jan
(3) |
Feb
(1) |
Mar
(11) |
Apr
(25) |
May
(3) |
Jun
(3) |
Jul
(2) |
Aug
(1) |
Sep
(1) |
Oct
|
Nov
|
Dec
|
| 2024 |
Jan
(7) |
Feb
(3) |
Mar
(10) |
Apr
(7) |
May
(2) |
Jun
|
Jul
(1) |
Aug
(7) |
Sep
(1) |
Oct
|
Nov
|
Dec
|
|
From: Wouter V. <no...@gi...> - 2024-09-28 11:29:44
|
Branch: refs/heads/master Home: https://github.com/NetworkBlockDevice/nbd Commit: 82c500fac5003c0f7448cebe7805fb083322724e https://github.com/NetworkBlockDevice/nbd/commit/82c500fac5003c0f7448cebe7805fb083322724e Author: Josef Bacik <jb...@fb...> Date: 2024-09-28 (Sat, 28 Sep 2024) Changed paths: M Makefile.am M configure.ac A nbd-get-status.c M nbd-netlink.h Log Message: ----------- nbd: add nbd-get-status Add support for the netlink get status command to get the connection status of one or all of the nbd devices in a system. Signed-off-by: Josef Bacik <jb...@fb...> [Forward-ported after seven (!) years by Wouter Verhelst] Signed-off-by: Wouter Verhelst <w...@ut...> Commit: 17043b068f4323078637314258158aebbfff0a6c https://github.com/NetworkBlockDevice/nbd/commit/17043b068f4323078637314258158aebbfff0a6c Author: Wouter Verhelst <w...@ut...> Date: 2024-09-28 (Sat, 28 Sep 2024) Changed paths: M nbd-client.c Log Message: ----------- Refactor the negotiate() and connected functions Having a gazillion arguments to negotiate is unwieldy and unmaintainable. Use the CLIENT type to handle parsed stuff instead. Originally we were going to pass a pointer to a CLIENT, but we need to keep the cur_client global variable for config file parsing, so might as well reuse that. Not so clean, so we might revisit this in the future, but at least this reduces complexity somewhat. Signed-off-by: Wouter Verhelst <w...@ut...> Compare: https://github.com/NetworkBlockDevice/nbd/compare/6ff6c94c9baf...17043b068f43 To unsubscribe from these emails, change your notification settings at https://github.com/NetworkBlockDevice/nbd/settings/notifications |
|
From: Wouter V. <no...@gi...> - 2024-08-18 17:10:43
|
Branch: refs/heads/master Home: https://github.com/NetworkBlockDevice/nbd Commit: 6ff6c94c9baf9a02bb33f5cebd8685514bed0c48 https://github.com/NetworkBlockDevice/nbd/commit/6ff6c94c9baf9a02bb33f5cebd8685514bed0c48 Author: Wouter Verhelst <w...@ut...> Date: 2024-08-18 (Sun, 18 Aug 2024) Changed paths: M README.md Log Message: ----------- Drop note about sourceforge. Closes: gh-168 Signed-off-by: Wouter Verhelst <w...@ut...> To unsubscribe from these emails, change your notification settings at https://github.com/NetworkBlockDevice/nbd/settings/notifications |
|
From: Eric B. <no...@gi...> - 2024-08-13 14:04:00
|
Branch: refs/heads/master Home: https://github.com/NetworkBlockDevice/nbd Commit: 29171ecb991a6f13bb8fe1493083174660fbdeff https://github.com/NetworkBlockDevice/nbd/commit/29171ecb991a6f13bb8fe1493083174660fbdeff Author: Eric Blake <eb...@re...> Date: 2024-08-13 (Tue, 13 Aug 2024) Changed paths: M doc/proto.md Log Message: ----------- docs: Tweak location of qemu nbd extensions Upstream QEMU has moved the location of its NBD docs, as of its commit 8dac93a8e[1]. Instead of pointing to a raw git .txt source file that no longer exists, we now point to the rendered html version built from rST [2]. [1] https://gitlab.com/qemu-project/qemu/-/commit/8dac93a8e, see also https://lists.gnu.org/archive/html/qemu-devel/2024-08/msg00223.html [2] https://www.qemu.org/docs/master/interop/nbd.html CC: qem...@no... Signed-off-by: Eric Blake <eb...@re...> To unsubscribe from these emails, change your notification settings at https://github.com/NetworkBlockDevice/nbd/settings/notifications |
|
From: Wouter V. <no...@gi...> - 2024-08-06 17:23:08
|
Branch: refs/heads/master Home: https://github.com/NetworkBlockDevice/nbd Commit: ff5846d1b5abdf476da074550ee098569b51feb2 https://github.com/NetworkBlockDevice/nbd/commit/ff5846d1b5abdf476da074550ee098569b51feb2 Author: Wouter Verhelst <w...@ut...> Date: 2024-08-06 (Tue, 06 Aug 2024) Changed paths: M cliserv.c Log Message: ----------- Stop using gcc linker magic Somehow gcc figures out that nbd_err is err, because of the macro? not sure. This is confusing and black magic, stop doing it. To unsubscribe from these emails, change your notification settings at https://github.com/NetworkBlockDevice/nbd/settings/notifications |
|
From: Wouter V. <no...@gi...> - 2024-08-06 17:07:19
|
Branch: refs/heads/master Home: https://github.com/NetworkBlockDevice/nbd Commit: e788607b6b386b5b06122a9ac4b92650a306f432 https://github.com/NetworkBlockDevice/nbd/commit/e788607b6b386b5b06122a9ac4b92650a306f432 Author: Wouter Verhelst <w...@ut...> Date: 2024-08-06 (Tue, 06 Aug 2024) Changed paths: M Makefile.am M configure.ac Log Message: ----------- Drop gznbd We have not looked at this in forever, and it probably does not work with modern nbd clients anymore. To unsubscribe from these emails, change your notification settings at https://github.com/NetworkBlockDevice/nbd/settings/notifications |
|
From: Wouter V. <no...@gi...> - 2024-08-06 17:06:55
|
Branch: refs/heads/master Home: https://github.com/NetworkBlockDevice/nbd Commit: da5e07c057abbee8cc4d2beef03952c7a44fd9eb https://github.com/NetworkBlockDevice/nbd/commit/da5e07c057abbee8cc4d2beef03952c7a44fd9eb Author: Wouter Verhelst <w...@ut...> Date: 2024-08-06 (Tue, 06 Aug 2024) Changed paths: R gznbd/.gitignore R gznbd/Makefile.am R gznbd/gznbd.c M nbd-server.c Log Message: ----------- Reimplement daemonize() without using daemon() The daemon() helper function is widely implemented, but is not really standardized and is actually somewhat buggy on some platforms. Implementing the desired functionality is also not all that complicated. So, do it ourselves. Closes: gh-161 To unsubscribe from these emails, change your notification settings at https://github.com/NetworkBlockDevice/nbd/settings/notifications |
|
From: Wouter V. <no...@gi...> - 2024-08-06 17:02:39
|
Branch: refs/heads/master Home: https://github.com/NetworkBlockDevice/nbd Commit: 88d22672fb7d3b0423dffc5f31d14830aff928f7 https://github.com/NetworkBlockDevice/nbd/commit/88d22672fb7d3b0423dffc5f31d14830aff928f7 Author: Wouter Verhelst <w...@ut...> Date: 2024-08-06 (Tue, 06 Aug 2024) Changed paths: M nbd-server.c Log Message: ----------- Reimplement daemonize() without using daemon() The daemon() helper function is widely implemented, but is not really standardized and is actually somewhat buggy on some platforms. Implementing the desired functionality is also not all that complicated. So, do it ourselves. Closes: gh-161 To unsubscribe from these emails, change your notification settings at https://github.com/NetworkBlockDevice/nbd/settings/notifications |
|
From: Wouter V. <no...@gi...> - 2024-08-06 16:20:26
|
Branch: refs/heads/master Home: https://github.com/NetworkBlockDevice/nbd Commit: 99cb65476224a55a98f74581cc87a2ad711e1f7e https://github.com/NetworkBlockDevice/nbd/commit/99cb65476224a55a98f74581cc87a2ad711e1f7e Author: Wouter Verhelst <w...@ut...> Date: 2024-08-06 (Tue, 06 Aug 2024) Changed paths: M nbd-client.c Log Message: ----------- Clarify error message when not root nbd-client requires root to set up devices. The error message when we are not root was less than helpful. Fix. Closes: gh-167 Signed-off-by: Wouter Verhelst <w...@ut...> To unsubscribe from these emails, change your notification settings at https://github.com/NetworkBlockDevice/nbd/settings/notifications |
|
From: Khem R. <no...@gi...> - 2024-07-25 10:16:30
|
Branch: refs/heads/master Home: https://github.com/NetworkBlockDevice/nbd Commit: 4664b8dd3bc124c27b160720113339c1da97c2c4 https://github.com/NetworkBlockDevice/nbd/commit/4664b8dd3bc124c27b160720113339c1da97c2c4 Author: Khem Raj <raj...@gm...> Date: 2024-07-25 (Thu, 25 Jul 2024) Changed paths: M nbd-client.c Log Message: ----------- nbd-client: Fix build on musl + gcc14 GCC-14 has promoted incompatible-pointer-types warning into error which is now flagged especially with when building on musl Fixes following error | ../nbd-3.26.1/nbd-client.c: In function 'openunix': | ../nbd-3.26.1/nbd-client.c:345:27: error: passing argument 2 of 'connect' from incompatible pointer type [-Wincompatible-pointer-types] | 345 | if (connect(sock, &un_addr, sizeof(un_addr)) == -1) { | | ^~~~~~~~ | | | | | struct sockaddr_un * | In file included from ../nbd-3.26.1/nbd-client.c:25: | /mnt/b/yoe/master/build/tmp/work/core2-64-yoe-linux-musl/nbd/3.26.1/recipe-sysroot/usr/include/sys/socket.h:386:19: note: expected 'const struct sockaddr *' but argument is of type 'struct sockaddr_un *' | 386 | int connect (int, const struct sockaddr *, socklen_t); | | ^~~~~~~~~~~~~~~~~~~~~~~ Signed-off-by: Khem Raj <raj...@gm...> To unsubscribe from these emails, change your notification settings at https://github.com/NetworkBlockDevice/nbd/settings/notifications |
|
From: Wouter V. <no...@gi...> - 2024-05-15 09:18:29
|
Branch: refs/heads/master Home: https://github.com/NetworkBlockDevice/nbd Commit: d294cda8438bc223e34185f43d12f16686090568 https://github.com/NetworkBlockDevice/nbd/commit/d294cda8438bc223e34185f43d12f16686090568 Author: Wouter Verhelst <w...@ut...> Date: 2024-05-15 (Wed, 15 May 2024) Changed paths: M systemd/nbd@.service.tmpl Log Message: ----------- Depend on the nbd module being loaded To unsubscribe from these emails, change your notification settings at https://github.com/NetworkBlockDevice/nbd/settings/notifications |
|
From: Lars H. R. <no...@gi...> - 2024-05-15 08:36:50
|
Branch: refs/heads/master Home: https://github.com/NetworkBlockDevice/nbd Commit: 4a4c3ad365543b31cfc1e40fd49caccbe544cff3 https://github.com/NetworkBlockDevice/nbd/commit/4a4c3ad365543b31cfc1e40fd49caccbe544cff3 Author: Lars H. Rohwedder <Rok...@us...> Date: 2024-05-15 (Wed, 15 May 2024) Changed paths: M cliserv.c M cliserv.h M nbd-server.c M nbdsrv.h Log Message: ----------- buffer is 'const void*' in output functions, as in write(2), fwrite(3) etc. To unsubscribe from these emails, change your notification settings at https://github.com/NetworkBlockDevice/nbd/settings/notifications |
|
From: Wouter V. <no...@gi...> - 2024-04-24 12:47:21
|
Branch: refs/heads/master Home: https://github.com/NetworkBlockDevice/nbd Commit: a956b6bedfc8aea2f14449cbe1f9d5b18699103c https://github.com/NetworkBlockDevice/nbd/commit/a956b6bedfc8aea2f14449cbe1f9d5b18699103c Author: roker <ro...@pe...> Date: 2024-04-24 (Wed, 24 Apr 2024) Changed paths: M treefiles.c M treefiles.h Log Message: ----------- clean-up headers necessary for treefiles.o, minor source formatting fixes, remove unecessary heap allocation in open_treefile() Commit: 22ba4a848359040b64647908ab8e732209645df5 https://github.com/NetworkBlockDevice/nbd/commit/22ba4a848359040b64647908ab8e732209645df5 Author: roker <ro...@pe...> Date: 2024-04-24 (Wed, 24 Apr 2024) Changed paths: M treefiles.c Log Message: ----------- umask(77) -> umask(077): "allow rwx permission for the owner, but prohibit rwx for everyone else" Compare: https://github.com/NetworkBlockDevice/nbd/compare/4efb275794b0...22ba4a848359 To unsubscribe from these emails, change your notification settings at https://github.com/NetworkBlockDevice/nbd/settings/notifications |
|
From: Wouter V. <no...@gi...> - 2024-04-07 10:44:02
|
Branch: refs/heads/master Home: https://github.com/NetworkBlockDevice/nbd Commit: 4efb275794b0da67099a6260d4bf1d069c6fb10e https://github.com/NetworkBlockDevice/nbd/commit/4efb275794b0da67099a6260d4bf1d069c6fb10e Author: Wouter Verhelst <w...@ut...> Date: 2024-04-07 (Sun, 07 Apr 2024) Changed paths: M man/nbd-server.5.sgml.in M nbd-server.c Log Message: ----------- Actually, do this differently Disabling all versions of TLS and then enabling those versions that are supported only means we get to do this again when (if ever) a new version of TLS is defined. Enabling all versions of TLS and then disabling those versions that are *not* supported means we support it the moment GnuTLS supports it. To unsubscribe from these emails, change your notification settings at https://github.com/NetworkBlockDevice/nbd/settings/notifications |
|
From: Wouter V. <no...@gi...> - 2024-04-07 10:40:10
|
Branch: refs/heads/master Home: https://github.com/NetworkBlockDevice/nbd Commit: c9eb9b282ebbc602466f3d5d92bac51a00ed91f6 https://github.com/NetworkBlockDevice/nbd/commit/c9eb9b282ebbc602466f3d5d92bac51a00ed91f6 Author: Wouter Verhelst <w...@ut...> Date: 2024-04-07 (Sun, 07 Apr 2024) Changed paths: M man/nbd-server.5.sgml.in M nbd-server.c Log Message: ----------- Enable TLS1.3 by default Older versions of GnuTLS did not support TLS1.3, and so we couldn't update the version priority string to enable that by default, yet. This now seems to no longer be a problem, so enable support for TLS1.3 by default while still disallowing TLS1.1 and below. To unsubscribe from these emails, change your notification settings at https://github.com/NetworkBlockDevice/nbd/settings/notifications |
|
From: Wouter V. <no...@gi...> - 2024-04-03 12:17:39
|
Branch: refs/heads/master Home: https://github.com/NetworkBlockDevice/nbd Commit: ac83952bcd262608b2c606ca56e27f98c1bb1cbf https://github.com/NetworkBlockDevice/nbd/commit/ac83952bcd262608b2c606ca56e27f98c1bb1cbf Author: Wouter Verhelst <w...@ut...> Date: 2024-04-03 (Wed, 03 Apr 2024) Changed paths: M nbd-server.c Log Message: ----------- Drop now-superfluous g_key_file_free() Now that we auto-free g_key_file stuff, we shouldn't manually free them anymore. Fixes: ab41c4f5a91857d9466d83ea062ec60435f7eaa0 Reported-By: Hilko Bengen <be...@de...> To unsubscribe from these emails, change your notification settings at https://github.com/NetworkBlockDevice/nbd/settings/notifications |
|
From: Wouter V. <no...@gi...> - 2024-04-03 10:49:02
|
Branch: refs/heads/master Home: https://github.com/NetworkBlockDevice/nbd Commit: c1899cf245249808e197269974931062fc2b3005 https://github.com/NetworkBlockDevice/nbd/commit/c1899cf245249808e197269974931062fc2b3005 Author: roker <ro...@pe...> Date: 2024-04-03 (Wed, 03 Apr 2024) Changed paths: M nbd-server.c Log Message: ----------- fix clang warnings in nbd-server.c To unsubscribe from these emails, change your notification settings at https://github.com/NetworkBlockDevice/nbd/settings/notifications |
|
From: Dave J. <no...@gi...> - 2024-04-03 10:48:21
|
Branch: refs/heads/master Home: https://github.com/NetworkBlockDevice/nbd Commit: f0418b0d8b54c21a1e5b0c6dce3277e938d07e7c https://github.com/NetworkBlockDevice/nbd/commit/f0418b0d8b54c21a1e5b0c6dce3277e938d07e7c Author: Dave Jones <dav...@ca...> Date: 2024-04-03 (Wed, 03 Apr 2024) Changed paths: M configure.ac Log Message: ----------- Fix the check & no cases of enable_manpages Currently, running "configure --disable-manpages" while docbook2man *is* installed results in the error "don't know what to do here" when it should disable manpages. There also appears to be a missing conditional at the start of the line; there's closing un-matched ]) at the end of the line. Still, at this point the check can be done in pure shell; no need for AC macros. I've also removed the confusing m4_divert_text call on the check case. Not sure why that was there, but it appears unnecessary. To unsubscribe from these emails, change your notification settings at https://github.com/NetworkBlockDevice/nbd/settings/notifications |
|
From: Dave J. <no...@gi...> - 2024-04-03 10:47:00
|
Branch: refs/heads/master Home: https://github.com/NetworkBlockDevice/nbd Commit: 256f95a529f3d7128afbb890c11c2ebf4750d16f https://github.com/NetworkBlockDevice/nbd/commit/256f95a529f3d7128afbb890c11c2ebf4750d16f Author: Dave Jones <dav...@ca...> Date: 2024-04-03 (Wed, 03 Apr 2024) Changed paths: M nbd-client.c Log Message: ----------- Set sensible default for port Commit 915444bc0b8a931d32dfb755542f4bd1d37f1449 introduced a regression whereby an entry in nbdtab with no port specification was read as wanting port "0" rather than the default "10809". To unsubscribe from these emails, change your notification settings at https://github.com/NetworkBlockDevice/nbd/settings/notifications |
|
From: Christian H. <no...@gi...> - 2024-03-06 17:54:00
|
Branch: refs/heads/master Home: https://github.com/NetworkBlockDevice/nbd Commit: f8d7d3dbf1ef2ef84c92fe375ebc8674a79e25c2 https://github.com/NetworkBlockDevice/nbd/commit/f8d7d3dbf1ef2ef84c92fe375ebc8674a79e25c2 Author: Christian Hesse <ma...@ew...> Date: 2024-03-06 (Wed, 06 Mar 2024) Changed paths: R man/sh.tmpl M systemd/Makefile.am A systemd/sh.tmpl Log Message: ----------- fix generation of systemd service The shell template is no longer required to generate man pages, so more it to systemd/ and ship it in tarball. Signed-off-by: Wouter Verhelst <w...@ut...> To unsubscribe from these emails, change your notification settings at https://github.com/NetworkBlockDevice/nbd/settings/notifications |
|
From: Christian H. <no...@gi...> - 2024-03-06 17:53:51
|
Branch: refs/heads/master Home: https://github.com/NetworkBlockDevice/nbd Commit: 38ec6991e1d3cc3fd14d3de6153a01cb8d62873c https://github.com/NetworkBlockDevice/nbd/commit/38ec6991e1d3cc3fd14d3de6153a01cb8d62873c Author: Christian Hesse <ma...@ew...> Date: 2024-03-06 (Wed, 06 Mar 2024) Changed paths: R man/sh.tmpl M systemd/Makefile.am A systemd/sh.tmpl Log Message: ----------- fix generation of systemd service The shell template is no longer required to generate man pages, so more it to systemd/ and ship it in tarball. To unsubscribe from these emails, change your notification settings at https://github.com/NetworkBlockDevice/nbd/settings/notifications |
|
From: Wouter V. <no...@gi...> - 2024-03-03 22:39:46
|
Branch: refs/tags/nbd-3.26.1 Home: https://github.com/NetworkBlockDevice/nbd To unsubscribe from these emails, change your notification settings at https://github.com/NetworkBlockDevice/nbd/settings/notifications |
|
From: Wouter V. <no...@gi...> - 2024-03-03 21:28:56
|
Branch: refs/heads/master Home: https://github.com/NetworkBlockDevice/nbd Commit: 9e9e0168e70c074cf089d7a3cf94acabecb21e8d https://github.com/NetworkBlockDevice/nbd/commit/9e9e0168e70c074cf089d7a3cf94acabecb21e8d Author: Wouter Verhelst <w...@ut...> Date: 2024-03-03 (Sun, 03 Mar 2024) Changed paths: M configure.ac Log Message: ----------- Fix tests in configure.ac We accidentally had a single AS_IF where multiple ones were required. Fixes: ff052d0 ("Don't try to build manpages without docbook2man") Signed-off-by: Wouter Verhelst <w...@ut...> To unsubscribe from these emails, change your notification settings at https://github.com/NetworkBlockDevice/nbd/settings/notifications |
|
From: Wouter V. <no...@gi...> - 2024-03-03 17:44:32
|
Branch: refs/heads/master Home: https://github.com/NetworkBlockDevice/nbd Commit: 80cd7db86598f1a3f139ecd8d7cf25a42d58766d https://github.com/NetworkBlockDevice/nbd/commit/80cd7db86598f1a3f139ecd8d7cf25a42d58766d Author: Wouter Verhelst <w...@ut...> Date: 2024-03-03 (Sun, 03 Mar 2024) Changed paths: R .gbs.conf Log Message: ----------- Also drop this file Signed-off-by: Wouter Verhelst <w...@ut...> To unsubscribe from these emails, change your notification settings at https://github.com/NetworkBlockDevice/nbd/settings/notifications |
|
From: Wouter V. <no...@gi...> - 2024-03-03 17:37:23
|
Branch: refs/tags/nbd-3.26 Home: https://github.com/NetworkBlockDevice/nbd Commit: 80cd7db86598f1a3f139ecd8d7cf25a42d58766d https://github.com/NetworkBlockDevice/nbd/commit/80cd7db86598f1a3f139ecd8d7cf25a42d58766d Author: Wouter Verhelst <w...@ut...> Date: 2024-03-03 (Sun, 03 Mar 2024) Changed paths: R .gbs.conf Log Message: ----------- Also drop this file Signed-off-by: Wouter Verhelst <w...@ut...> To unsubscribe from these emails, change your notification settings at https://github.com/NetworkBlockDevice/nbd/settings/notifications |
|
From: Wouter V. <no...@gi...> - 2024-03-03 17:15:49
|
Branch: refs/heads/master Home: https://github.com/NetworkBlockDevice/nbd Commit: 66cfbd633b08488596d60520ed8d933b6e8b35b2 https://github.com/NetworkBlockDevice/nbd/commit/66cfbd633b08488596d60520ed8d933b6e8b35b2 Author: Wouter Verhelst <w...@ut...> Date: 2024-03-03 (Sun, 03 Mar 2024) Changed paths: M .github/workflows/build.yml Log Message: ----------- Bump checkout action version We were getting a number of warnings about certain bits being deprecated. Bump versions to remedy that. Signed-off-by: Wouter Verhelst <w...@ut...> To unsubscribe from these emails, change your notification settings at https://github.com/NetworkBlockDevice/nbd/settings/notifications |