Displaying 10 results from an estimated 10 matches for "ucon".
Did you mean:
con
2006 Oct 09
1
Discussion starter for package level Connection API
...up the
internals to package writers and not allowing them to do bad things. My
first attempt at cracking this nut is to just memcpy() the Rconnection
and not allow access to the private stuff:
/* Alternative to allowing C code access to connection API. */
Rconnection R_GetConnection(Rconnection ucon, int idx){
Rconnection rcon;
/* Valid connection? */
if ((rcon = getConnection(idx)) == NULL)
return NULL;
memcpy(ucon,rcon,sizeof(struct Rconn));
/* Don't reveal private data */
ucon->private = NULL;
return ucon;
}
This would take an user all...
2006 Oct 19
1
ethereal log of PXE bootup
Hi,
I'm considering adding a PXE Boot Server to a tool I have (uCon).
Anyone out there have an ethereal log of an entire PXE boot transaction
between client/server(s) they could send me?
Thanks
Ed Sutter
2015 Jul 05
2
[PATCH RESEND] virtio: Fix typecast of pointer in vring_init()
...; > Signed-off-by: Thomas Huth <thuth at redhat.com>
>
> This seems to break some userspace too:
>
> INSTALL usr/include/linux/ (413 files)
> CHECK usr/include/linux/ (413 files)
> HOSTCC Documentation/accounting/getdelays
> HOSTCC Documentation/connector/ucon
> HOSTCC Documentation/mic/mpssd/mpssd.o
> In file included from Documentation/mic/mpssd/mpssd.c:36:0:
> ./usr/include/linux/virtio_ring.h: In function ?vring_init?:
> ./usr/include/linux/virtio_ring.h:146:24: error: ?uintptr_t? undeclared
> (first use in this function)
> vr-...
2015 Jul 05
2
[PATCH RESEND] virtio: Fix typecast of pointer in vring_init()
...; > Signed-off-by: Thomas Huth <thuth at redhat.com>
>
> This seems to break some userspace too:
>
> INSTALL usr/include/linux/ (413 files)
> CHECK usr/include/linux/ (413 files)
> HOSTCC Documentation/accounting/getdelays
> HOSTCC Documentation/connector/ucon
> HOSTCC Documentation/mic/mpssd/mpssd.o
> In file included from Documentation/mic/mpssd/mpssd.c:36:0:
> ./usr/include/linux/virtio_ring.h: In function ?vring_init?:
> ./usr/include/linux/virtio_ring.h:146:24: error: ?uintptr_t? undeclared
> (first use in this function)
> vr-...
2015 Jul 02
2
[PATCH RESEND] virtio: Fix typecast of pointer in vring_init()
The virtio_ring.h header is used in userspace programs (ie. QEMU),
too. Here we can not assume that sizeof(pointer) is the same as
sizeof(long), e.g. when compiling for Windows, so the typecast in
vring_init() should be done with (uintptr_t) instead of (unsigned long).
Signed-off-by: Thomas Huth <thuth at redhat.com>
---
include/uapi/linux/virtio_ring.h | 2 +-
1 file changed, 1
2015 Jul 02
2
[PATCH RESEND] virtio: Fix typecast of pointer in vring_init()
The virtio_ring.h header is used in userspace programs (ie. QEMU),
too. Here we can not assume that sizeof(pointer) is the same as
sizeof(long), e.g. when compiling for Windows, so the typecast in
vring_init() should be done with (uintptr_t) instead of (unsigned long).
Signed-off-by: Thomas Huth <thuth at redhat.com>
---
include/uapi/linux/virtio_ring.h | 2 +-
1 file changed, 1
2015 Jul 06
1
[PATCH RESEND] virtio: Fix typecast of pointer in vring_init()
...; >
> > > This seems to break some userspace too:
> > >
> > > INSTALL usr/include/linux/ (413 files)
> > > CHECK usr/include/linux/ (413 files)
> > > HOSTCC Documentation/accounting/getdelays
> > > HOSTCC Documentation/connector/ucon
> > > HOSTCC Documentation/mic/mpssd/mpssd.o
> > > In file included from Documentation/mic/mpssd/mpssd.c:36:0:
> > > ./usr/include/linux/virtio_ring.h: In function ?vring_init?:
> > > ./usr/include/linux/virtio_ring.h:146:24: error: ?uintptr_t? undeclared
>...
2015 Jul 06
1
[PATCH RESEND] virtio: Fix typecast of pointer in vring_init()
...; >
> > > This seems to break some userspace too:
> > >
> > > INSTALL usr/include/linux/ (413 files)
> > > CHECK usr/include/linux/ (413 files)
> > > HOSTCC Documentation/accounting/getdelays
> > > HOSTCC Documentation/connector/ucon
> > > HOSTCC Documentation/mic/mpssd/mpssd.o
> > > In file included from Documentation/mic/mpssd/mpssd.c:36:0:
> > > ./usr/include/linux/virtio_ring.h: In function ?vring_init?:
> > > ./usr/include/linux/virtio_ring.h:146:24: error: ?uintptr_t? undeclared
>...
2015 Jul 05
0
[PATCH RESEND] virtio: Fix typecast of pointer in vring_init()
...t) instead of (unsigned long).
>
> Signed-off-by: Thomas Huth <thuth at redhat.com>
This seems to break some userspace too:
INSTALL usr/include/linux/ (413 files)
CHECK usr/include/linux/ (413 files)
HOSTCC Documentation/accounting/getdelays
HOSTCC Documentation/connector/ucon
HOSTCC Documentation/mic/mpssd/mpssd.o
In file included from Documentation/mic/mpssd/mpssd.c:36:0:
./usr/include/linux/virtio_ring.h: In function ?vring_init?:
./usr/include/linux/virtio_ring.h:146:24: error: ?uintptr_t? undeclared
(first use in this function)
vr->used = (void *)(((uintptr_...
2015 Jul 06
0
[PATCH RESEND] virtio: Fix typecast of pointer in vring_init()
...lt;thuth at redhat.com>
> >
> > This seems to break some userspace too:
> >
> > INSTALL usr/include/linux/ (413 files)
> > CHECK usr/include/linux/ (413 files)
> > HOSTCC Documentation/accounting/getdelays
> > HOSTCC Documentation/connector/ucon
> > HOSTCC Documentation/mic/mpssd/mpssd.o
> > In file included from Documentation/mic/mpssd/mpssd.c:36:0:
> > ./usr/include/linux/virtio_ring.h: In function ?vring_init?:
> > ./usr/include/linux/virtio_ring.h:146:24: error: ?uintptr_t? undeclared
> > (first use in...