search for: ledkov

Displaying 14 results from an estimated 14 matches for "ledkov".

2019 Oct 31
3
[PATCH 1/2] loop: fix loop_info struct
...rrect runtime behaviour. For example, overriding argc from main(). References: https://bugs.launchpad.net/ubuntu/+source/klibc/+bug/1850184 Signed-off-by: Michael Hudson-Doyle <michael.hudson at ubuntu.com> Signed-off-by: Adam Conrad <adconrad at ubuntu.com> Signed-off-by: Dimitri John Ledkov <xnox at ubuntu.com> --- usr/utils/loop.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/utils/loop.h b/usr/utils/loop.h index 9abc2874..667f7dc0 100644 --- a/usr/utils/loop.h +++ b/usr/utils/loop.h @@ -15,9 +15,9 @@ struct loop_info { int lo_number; - dev_...
2019 Nov 01
2
[PATCH 2/2] loop: switch to linux/loop.h
On Thu, 2019-10-31 at 22:59 +0000, Dimitri John Ledkov wrote: > linux/loop.h header is exported by linux, for userspace to > consume. This would prevent issues with struct sizes > incompatibilities. [...] The structure definitions can't change in future, so I don't think that's a real issue after the previous patch. But I agree t...
2019 Nov 04
2
[PATCH 2/2] loop: switch to linux/loop.h
On Fri, 1 Nov 2019 at 14:40:24, Dimitri John Ledkov wrote: > > On Fri, 1 Nov 2019 at 14:36, Ben Hutchings <ben at decadent.org.uk> wrote: > > > The structure definitions can't change in future, so I don't think > > that's a real issue after the previous patch. But I agree that we > > should prefer using...
2019 Jul 28
0
[klibc:master] ipconfig: Implement support -d ...:dns0:dns1 options
Commit-ID: b86cd0ef3f225b0e68a7c49de2460829f6bfe2be Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=b86cd0ef3f225b0e68a7c49de2460829f6bfe2be Author: Dimitri John Ledkov <xnox at ubuntu.com> AuthorDate: Wed, 17 Jul 2019 22:18:23 +0100 Committer: Ben Hutchings <ben at decadent.org.uk> CommitDate: Sun, 28 Jul 2019 20:12:38 +0100 [klibc] ipconfig: Implement support -d ...:dns0:dns1 options Whilst ip= command is documented to support dns0:dns1 options as...
2019 Nov 05
0
[klibc:master] loop: switch to linux/loop.h
Commit-ID: 547b7cf241d4bcf518759d06cff694b9738c57b0 Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=547b7cf241d4bcf518759d06cff694b9738c57b0 Author: Dimitri John Ledkov <xnox at ubuntu.com> AuthorDate: Thu, 31 Oct 2019 15:59:02 -0700 Committer: Ben Hutchings <ben at decadent.org.uk> CommitDate: Tue, 5 Nov 2019 00:42:26 +0000 [klibc] loop: switch to linux/loop.h linux/loop.h header is exported by linux, for userspace to consume. This would prevent is...
2019 Jun 13
0
[PATCH] ipconfig: Implement support -d ...:dns0:dns1 options
...roadcast address 10.245.237.255 IP-Config: dummy0 complete: address: 10.245.237.7 broadcast: 10.245.237.255 netmask: 255.255.255.0 gateway: 10.245.237.1 dns0 : 8.8.8.8 dns1 : 8.8.4.4 host : ottawa rootserver: 0.0.0.0 rootpath: filename : Signed-off-by: Dimitri John Ledkov <xnox at ubuntu.com> --- usr/kinit/ipconfig/main.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/usr/kinit/ipconfig/main.c b/usr/kinit/ipconfig/main.c index a454022e..2c905986 100644 --- a/usr/kinit/ipconfig/main.c +++ b/usr/kinit/ipconfig/main.c @@ -611,7 +611,7...
2019 Jul 28
0
[PATCH] ipconfig: Implement support -d ...:dns0:dns1 options
On Wed, 2019-07-17 at 22:18 +0100, Dimitri John Ledkov wrote: > Whilst ip= command is documented to support dns0:dns1 options as > arguments 7 and 8, the -d parser in ipconfig does not. This breaks > bringing up static ip configuration with dns nameservers set in the > ip= command. [...] Applied, thanks. Ben. -- Ben Hutchings - Debian d...
2019 Oct 07
0
[ANNOUNCE] klibc 2.0.7
...[klibc] klcc: Enable stripping even if CONFIG_DEBUG_INFO is enabled [klibc] Kbuild: Work around broken "ar s" in binutils 2.32 [klibc] Fix missing header dependency for sigsuspend.o [klibc] nfsmount: Use kernel client's default value for timeo option Dimitri John Ledkov (1): [klibc] ipconfig: Implement support -d ...:dns0:dns1 options Matthew Garrett (1): [klibc] run-init: Allow the initramfs to be persisted across root changes -- Ben Hutchings Nothing is ever a complete failure; it can always serve as a bad example. -------------- next part ------...
2019 Oct 31
0
[PATCH 2/2] loop: switch to linux/loop.h
...me. This would prevent issues with struct sizes incompatibilities. References: https://bugs.launchpad.net/ubuntu/+source/klibc/+bug/1850184 Signed-off-by: Michael Hudson-Doyle <michael.hudson at ubuntu.com> Signed-off-by: Adam Conrad <adconrad at ubuntu.com> Signed-off-by: Dimitri John Ledkov <xnox at ubuntu.com> --- usr/utils/loop.h | 49 --------------------------------------------- usr/utils/losetup.c | 3 +-- 2 files changed, 1 insertion(+), 51 deletions(-) delete mode 100644 usr/utils/loop.h diff --git a/usr/utils/loop.h b/usr/utils/loop.h deleted file mode 100644 inde...
2019 Nov 01
0
[PATCH 1/2 v2] loop: fix loop_info struct
...nition (on most architectures) which leads to undefined behaviour. References: https://bugs.launchpad.net/ubuntu/+source/klibc/+bug/1850184 Signed-off-by: Michael Hudson-Doyle <michael.hudson at ubuntu.com> Signed-off-by: Adam Conrad <adconrad at ubuntu.com> Signed-off-by: Dimitri John Ledkov <xnox at ubuntu.com> --- Updated patch description, based on feedback on the mailing list. usr/utils/loop.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/utils/loop.h b/usr/utils/loop.h index 9abc2874..667f7dc0 100644 --- a/usr/utils/loop.h +++ b/usr/utils/l...
2019 Nov 01
0
[PATCH 2/2] loop: switch to linux/loop.h
On Fri, 1 Nov 2019 at 14:36, Ben Hutchings <ben at decadent.org.uk> wrote: > > On Thu, 2019-10-31 at 22:59 +0000, Dimitri John Ledkov wrote: > > linux/loop.h header is exported by linux, for userspace to > > consume. This would prevent issues with struct sizes > > incompatibilities. > [...] > > The structure definitions can't change in future, so I don't think > that's a real issue after...
2019 Nov 05
0
[PATCH 2/2] loop: switch to linux/loop.h
On Mon, 2019-11-04 at 17:44 +0000, Adam Conrad wrote: > On Fri, 1 Nov 2019 at 14:40:24, Dimitri John Ledkov wrote: > > On Fri, 1 Nov 2019 at 14:36, Ben Hutchings <ben at decadent.org.uk> wrote: > > > > > The structure definitions can't change in future, so I don't think > > > that's a real issue after the previous patch. But I agree that we > > >...
2020 Aug 22
0
[ANNOUNCE] klibc 2.0.8
...Wendling (5): [klibc] Kbuild: add support for clang builds [klibc] Kbuild: support clang's lld [klibc] Kbuild: Add "-fcommon" for clang builds [klibc] Clean up clang warnings [klibc] use "--just-symbols" for compatibility with LLD Dimitri John Ledkov (1): [klibc] loop: switch to linux/loop.h H. Peter Anvin (1): [klibc] Framework and trivial implementation of sysconf(3) Olliver Schinagl (1): klcc: Remove the need for bash -- Ben Hutchings When in doubt, use brute force. - Ken Thompson -------------- next part ------------...
2015 Jun 25
0
Processed: raising severity for GCC 5 issues, please fix these now (see https://wiki.debian.org/GCC5)
...lktap] blktap: ftbfs with GCC-5 Severity set to 'serious' from 'important' > severity 777803 serious Bug #777803 [src:bomberclone] bomberclone: ftbfs with GCC-5 Severity set to 'serious' from 'important' > severity 777805 serious Bug #777805 {Done: Dimitri John Ledkov <dimitri.j.ledkov at linux.intel.com>} [src:boost1.55] boost1.55: ftbfs with GCC-5 Severity set to 'serious' from 'important' > severity 777806 serious Bug #777806 [src:booth] booth: ftbfs with GCC-5 Severity set to 'serious' from 'important' > severity 7...