Displaying 20 results from an estimated 32 matches for "_desc".
Did you mean:
desc
2015 Mar 06
2
Call for testing: OpenSSH 6.8
On Wed, 4 Mar 2015, mikep at noc.utoronto.ca wrote:
> Re-testing 'openssh-SNAP-20150305' on Solaris 10, with 'gcc':
>
> Configure, 'make' complete; 'make tests' fails at:
>
> postcondition check failed: setstat readonly
I couldn't reporoduce this on an illumos zone that I had access to,
will try installing solaris10 next.
-d
2015 Mar 11
4
Call for testing: OpenSSH 6.8
...cal/src/security/openssh/regress'
make: *** [tests] Error 2
> diff --git a/regress/sftp-perm.sh b/regress/sftp-perm.sh
> index 304ca0a..9a3740e 100644
> --- a/regress/sftp-perm.sh
> +++ b/regress/sftp-perm.sh
> @@ -41,13 +41,17 @@ ro_test() {
> verbose "$tid: read-only $_desc"
> # Plain (no options, mostly to test that _cmd is good)
> prepare_files "$_prep"
> + printf "XXX PRE RW: " ; ls -l $COPY
> prepare_server
> run_client "$_cmd" || fail "plain $_desc failed"
> + printf "XXX POST RW: " ; ls...
2007 Apr 18
1
[Bridge] bridge at start up
...data point.
>
> I've been trying to figure out ways to decrease the number of
> args that get sent to nf_hook_slow but this would require
> some API changes unfortunately.
>
> One idea goes like this, we create little descriptors of the form:
>
> struct nf_hook_desc {
> int (*okfn)(struct sk_buff *);
> int pf;
> int hook;
> };
>
> Then NF_HOOK*() callsites do something like this:
>
> static const struct nf_hook_desc nf_ip_local_out = {
> .okfn = dst_output,
> .pf = PF_INET,
> .hook = NF_IP_LOCAL_OUT,
> };...
2016 Nov 02
0
[PATCH v3 06/15] secboot: add low-secure firmware hooks
..., 264 insertions(+), 197 deletions(-)
diff --git a/drm/nouveau/nvkm/subdev/secboot/gm200.c b/drm/nouveau/nvkm/subdev/secboot/gm200.c
index e1c51f8293c8..8571a4b4d56c 100644
--- a/drm/nouveau/nvkm/subdev/secboot/gm200.c
+++ b/drm/nouveau/nvkm/subdev/secboot/gm200.c
@@ -130,175 +130,6 @@ struct fw_bl_desc {
};
-/*
- *
- * LS blob structures
- *
- */
-
-/**
- * struct lsf_ucode_desc - LS falcon signatures
- * @prd_keys: signature to use when the GPU is in production mode
- * @dgb_keys: signature to use when the GPU is in debug mode
- * @b_prd_present: whether the production key is present
- *...
2016 Nov 02
0
[PATCH v3 14/15] secboot: abstract LS firmware loading functions
...--- a/drm/nouveau/nvkm/subdev/secboot/acr_r352.c
+++ b/drm/nouveau/nvkm/subdev/secboot/acr_r352.c
@@ -21,7 +21,6 @@
*/
#include "acr_r352.h"
-#include "ls_ucode.h"
#include <core/gpuobj.h>
#include <core/firmware.h>
@@ -93,11 +92,12 @@ struct acr_r352_flcn_bl_desc {
*/
static void
acr_r352_generate_flcn_bl_desc(const struct nvkm_acr *acr,
- const struct ls_ucode_img *img, u64 wpr_addr,
+ const struct ls_ucode_img *_img, u64 wpr_addr,
void *_desc)
{
+ struct ls_ucode_img_r352 *img = ls_ucode_img_r352(_img);
struct acr_r352_...
2015 May 31
1
[LLVMdev] TableGen Style Conventions
...as bikeshedding, but how strict are the style
norms for TableGen? Some aspects of it, like individually and
consecutively declaring all *_ENC variables in this manner:
class ADDU_QB_ENC : ADDU_QB_FMT<0b00000>;
To be used only once, in this manner:
def ADDU_QB : ADDU_QB_ENC, ADDU_QB_DESC;
Seem like avoidable clutter to me. The files tend to be pretty big, and
I think that collapsing assignments like that could make them more
readable.
I'm new to this, so let me know if I'm missing something.
Thanks,
Michael
2018 Feb 23
0
[PATCH RFC 2/2] virtio_ring: support packed ring
...nux/virtio_ring.h | 8 +-
2 files changed, 618 insertions(+), 89 deletions(-)
diff --git a/drivers/virtio/virtio_ring.c b/drivers/virtio/virtio_ring.c
index eb30f3e09a47..393778a2f809 100644
--- a/drivers/virtio/virtio_ring.c
+++ b/drivers/virtio/virtio_ring.c
@@ -58,14 +58,14 @@
struct vring_desc_state {
void *data; /* Data for callback. */
- struct vring_desc *indir_desc; /* Indirect descriptor, if any. */
+ void *indir_desc; /* Indirect descriptor, if any. */
+ int num; /* Descriptor list length. */
};
struct vring_virtqueue {
struct virtqueue vq;
- /* Actual memory layout...
2018 Feb 23
5
[PATCH RFC 0/2] Packed ring for virtio
...vhost (testpmd/vhost-PMD) implemented
by Jens at http://dpdk.org/ml/archives/dev/2018-January/089417.html
Minor changes are needed for the vhost code, e.g. to kick the guest.
It's not a complete implementation, here is what's missing:
- Device area and driver area
- VIRTIO_RING_F_INDIRECT_DESC
- VIRTIO_F_NOTIFICATION_DATA
- Virtio devices except net are not tested
- See FIXME in the code for more details
Thanks!
Best regards,
Tiwei Bie
Tiwei Bie (2):
virtio: introduce packed ring defines
virtio_ring: support packed ring
drivers/virtio/virtio_ring.c | 699 ++++++++++++++++++...
2018 Mar 16
2
[PATCH RFC 2/2] virtio_ring: support packed ring
...ged, 618 insertions(+), 89 deletions(-)
>
> diff --git a/drivers/virtio/virtio_ring.c b/drivers/virtio/virtio_ring.c
> index eb30f3e09a47..393778a2f809 100644
> --- a/drivers/virtio/virtio_ring.c
> +++ b/drivers/virtio/virtio_ring.c
> @@ -58,14 +58,14 @@
>
> struct vring_desc_state {
> void *data; /* Data for callback. */
> - struct vring_desc *indir_desc; /* Indirect descriptor, if any. */
> + void *indir_desc; /* Indirect descriptor, if any. */
> + int num; /* Descriptor list length. */
> };
>
> struct vring_virtqueue {
> stru...
2018 Mar 16
2
[PATCH RFC 2/2] virtio_ring: support packed ring
...ged, 618 insertions(+), 89 deletions(-)
>
> diff --git a/drivers/virtio/virtio_ring.c b/drivers/virtio/virtio_ring.c
> index eb30f3e09a47..393778a2f809 100644
> --- a/drivers/virtio/virtio_ring.c
> +++ b/drivers/virtio/virtio_ring.c
> @@ -58,14 +58,14 @@
>
> struct vring_desc_state {
> void *data; /* Data for callback. */
> - struct vring_desc *indir_desc; /* Indirect descriptor, if any. */
> + void *indir_desc; /* Indirect descriptor, if any. */
> + int num; /* Descriptor list length. */
> };
>
> struct vring_virtqueue {
> stru...
2018 Mar 16
0
[PATCH RFC 2/2] virtio_ring: support packed ring
...eletions(-)
> >
> > diff --git a/drivers/virtio/virtio_ring.c b/drivers/virtio/virtio_ring.c
> > index eb30f3e09a47..393778a2f809 100644
> > --- a/drivers/virtio/virtio_ring.c
> > +++ b/drivers/virtio/virtio_ring.c
> > @@ -58,14 +58,14 @@
> > struct vring_desc_state {
> > void *data; /* Data for callback. */
> > - struct vring_desc *indir_desc; /* Indirect descriptor, if any. */
> > + void *indir_desc; /* Indirect descriptor, if any. */
> > + int num; /* Descriptor list length. */
> > };
> > struct vring_vi...
2018 Mar 16
2
[PATCH RFC 2/2] virtio_ring: support packed ring
...gt;
>>> diff --git a/drivers/virtio/virtio_ring.c b/drivers/virtio/virtio_ring.c
>>> index eb30f3e09a47..393778a2f809 100644
>>> --- a/drivers/virtio/virtio_ring.c
>>> +++ b/drivers/virtio/virtio_ring.c
>>> @@ -58,14 +58,14 @@
>>> struct vring_desc_state {
>>> void *data; /* Data for callback. */
>>> - struct vring_desc *indir_desc; /* Indirect descriptor, if any. */
>>> + void *indir_desc; /* Indirect descriptor, if any. */
>>> + int num; /* Descriptor list length. */
>>> };
>>&g...
2018 Mar 16
2
[PATCH RFC 2/2] virtio_ring: support packed ring
...gt;
>>> diff --git a/drivers/virtio/virtio_ring.c b/drivers/virtio/virtio_ring.c
>>> index eb30f3e09a47..393778a2f809 100644
>>> --- a/drivers/virtio/virtio_ring.c
>>> +++ b/drivers/virtio/virtio_ring.c
>>> @@ -58,14 +58,14 @@
>>> struct vring_desc_state {
>>> void *data; /* Data for callback. */
>>> - struct vring_desc *indir_desc; /* Indirect descriptor, if any. */
>>> + void *indir_desc; /* Indirect descriptor, if any. */
>>> + int num; /* Descriptor list length. */
>>> };
>>&g...
2016 Dec 14
18
[PATCH v5 0/18] Secure Boot refactoring
...gs more reusable and will allow us to close the loop with
the current falcon engine code - please just allow me a few more days
to finish this! :)
In the meantime, this code should be good to go and test.
Alexandre Courbot (18):
secboot: rename init() hook to oneinit()
secboot: remove fixup_hs_desc hook
secboot: add low-secure firmware hooks
secboot: generate HS BL descriptor in hook
secboot: reorganize into more files
secboot: add LS flags to LS func structure
secboot: split reset function
secboot: disable falcon interrupts when running blob
secboot: remove unneeded ls_ucode_im...
2018 Mar 16
0
[PATCH RFC 2/2] virtio_ring: support packed ring
...| 8 +-
> > > > 2 files changed, 618 insertions(+), 89 deletions(-)
[...]
> > > > cpu_addr, size, direction);
> > > > }
> > > > -static void vring_unmap_one(const struct vring_virtqueue *vq,
> > > > - struct vring_desc *desc)
> > > > +static void vring_unmap_one(const struct vring_virtqueue *vq, void *_desc)
> > > > {
> > > Let's split the helpers to packed/split version like other helpers?
> > > (Consider the caller has already known the type of vq).
> > Oka...
2016 Oct 27
15
[PATCH v2 00/14] Secure Boot refactoring
...ware loading functions
- Optimized set of abstractions
- Removed some more code
Alexandre Courbot (14):
core: constify nv*_printk macros
core: add falcon library
secboot: use falcon library's IMEM/DMEM loading functions
secboot: rename init() hook to oneinit()
secboot: remove fixup_hs_desc hook
secboot: add low-secure firmware hooks
secboot: generate HS BL descriptor in hook
secboot: reorganize into more files
secboot: add LS flags to LS func structure
secboot: split reset function
secboot: disable falcon interrupts before running
secboot: remove unneeded ls_ucode_img m...
2016 Nov 02
15
[PATCH v3 00/15] Secure Boot refactoring
...oved some more code
Changes since v2:
- Fix naming of new structures/functions
Alexandre Courbot (15):
core: constify nv*_printk macros
core: add falcon library
secboot: use falcon library's IMEM/DMEM loading functions
secboot: rename init() hook to oneinit()
secboot: remove fixup_hs_desc hook
secboot: add low-secure firmware hooks
secboot: generate HS BL descriptor in hook
secboot: reorganize into more files
secboot: add LS flags to LS func structure
secboot: split reset function
secboot: disable falcon interrupts before running
secboot: remove unneeded ls_ucode_img m...
2007 Apr 18
3
[Bridge] Re: do_IRQ: stack overflow: 872..
On Fri, 07 Jan 2005 17:05:59 +0000
David Woodhouse <dwmw2@infradead.org> wrote:
> On Sat, 2004-12-18 at 08:50 +0100, Andi Kleen wrote:
> > It's not really an oops, just a warning that stack space got quiet
> > tight.
> >
> > The problem seems to be that the br netfilter code is nesting far too
> > deeply and recursing several times. Looks like a design
2018 Mar 16
2
[PATCH RFC 2/2] virtio_ring: support packed ring
...t;>>>> 2 files changed, 618 insertions(+), 89 deletions(-)
> [...]
>>>>> cpu_addr, size, direction);
>>>>> }
>>>>> -static void vring_unmap_one(const struct vring_virtqueue *vq,
>>>>> - struct vring_desc *desc)
>>>>> +static void vring_unmap_one(const struct vring_virtqueue *vq, void *_desc)
>>>>> {
>>>> Let's split the helpers to packed/split version like other helpers?
>>>> (Consider the caller has already known the type of vq).
>&g...
2018 Mar 16
2
[PATCH RFC 2/2] virtio_ring: support packed ring
...t;>>>> 2 files changed, 618 insertions(+), 89 deletions(-)
> [...]
>>>>> cpu_addr, size, direction);
>>>>> }
>>>>> -static void vring_unmap_one(const struct vring_virtqueue *vq,
>>>>> - struct vring_desc *desc)
>>>>> +static void vring_unmap_one(const struct vring_virtqueue *vq, void *_desc)
>>>>> {
>>>> Let's split the helpers to packed/split version like other helpers?
>>>> (Consider the caller has already known the type of vq).
>&g...