Displaying 20 results from an estimated 21 matches for "unreg".
Did you mean:
unref
2017 Dec 22
1
[bpf-next V2 PATCH 11/14] virtio_net: setup xdp_rxq_info
The virtio_net driver doesn't dynamically change the RX-ring queue
layout and backing pages, but instead reject XDP setup if all the
conditions for XDP is not meet. Thus, the xdp_rxq_info also remains
fairly static. This allow us to simply add the reg/unreg to
net_device open/close functions.
Driver hook points for xdp_rxq_info:
* reg : virtnet_open
* unreg: virtnet_close
Cc: "Michael S. Tsirkin" <mst at redhat.com>
Cc: Jason Wang <jasowang at redhat.com>
Cc: virtualization at lists.linux-foundation.org
Signed-off-by: Jesper...
2017 Dec 31
1
[bpf-next V3 PATCH 11/14] virtio_net: setup xdp_rxq_info
The virtio_net driver doesn't dynamically change the RX-ring queue
layout and backing pages, but instead reject XDP setup if all the
conditions for XDP is not meet. Thus, the xdp_rxq_info also remains
fairly static. This allow us to simply add the reg/unreg to
net_device open/close functions.
Driver hook points for xdp_rxq_info:
* reg : virtnet_open
* unreg: virtnet_close
V3:
- bugfix, also setup xdp.rxq in receive_mergeable()
- Tested bpf-sample prog inside guest on a virtio_net device
Cc: "Michael S. Tsirkin" <mst at redhat.com&...
2017 Dec 13
0
[bpf-next V1-RFC PATCH 11/14] virtio_net: setup xdp_rxq_info
The virtio_net driver doesn't dynamically change the RX-ring queue
layout and backing pages, but instead reject XDP setup if all the
conditions for XDP is not meet. Thus, the xdp_rxq_info also remains
fairly static. This allow us to simply add the init+reg/unreg to
net_device open/close functions.
Driver hook points for xdp_rxq_info:
* init+reg: virtnet_open
* unreg : virtnet_close
Cc: "Michael S. Tsirkin" <mst at redhat.com>
Cc: Jason Wang <jasowang at redhat.com>
Cc: virtualization at lists.linux-foundation.org
Signed-off-by:...
2017 Dec 13
0
[bpf-next V1-RFC PATCH 11/14] virtio_net: setup xdp_rxq_info
The virtio_net driver doesn't dynamically change the RX-ring queue
layout and backing pages, but instead reject XDP setup if all the
conditions for XDP is not meet. Thus, the xdp_rxq_info also remains
fairly static. This allow us to simply add the init+reg/unreg to
net_device open/close functions.
Driver hook points for xdp_rxq_info:
* init+reg: virtnet_open
* unreg : virtnet_close
Cc: "Michael S. Tsirkin" <mst at redhat.com>
Cc: Jason Wang <jasowang at redhat.com>
Cc: virtualization at lists.linux-foundation.org
Signed-off-by:...
2018 Jan 03
0
[bpf-next V4 PATCH 11/14] virtio_net: setup xdp_rxq_info
The virtio_net driver doesn't dynamically change the RX-ring queue
layout and backing pages, but instead reject XDP setup if all the
conditions for XDP is not meet. Thus, the xdp_rxq_info also remains
fairly static. This allow us to simply add the reg/unreg to
net_device open/close functions.
Driver hook points for xdp_rxq_info:
* reg : virtnet_open
* unreg: virtnet_close
V3:
- bugfix, also setup xdp.rxq in receive_mergeable()
- Tested bpf-sample prog inside guest on a virtio_net device
Cc: "Michael S. Tsirkin" <mst at redhat.com&...
2005 May 25
1
Remote Voicemail Notifier / enter Dialplan on SIP Register
...cation
as well.
Now the 3rd feature ...
in iax.conf or sip.conf for each user define the keyword
'onregister-context'
syntax:
[user]
type=friend
onregister-context=regcontext
etc
then upon registry, (context,exten) = (<onregister-context>,<user>,1)
will be invoked and on unregister the
(unreg-<onregister-context>,<user>,1) is invoked
So on unregister 'unreg-' is prefixed to the onregister_context
The variable ${DEVICETECH} contains the technology of the device
registering.
To rebuild the unique channel id from this, you would use
${DEVICETECH}/$...
2023 May 10
2
[PATCH net v3] virtio_net: Fix error unwinding of XDP initialization
...c void virtnet_disable_qp(struct virtnet_info *vi, int qp_index)
>>>>>> +{
>>>>>> + virtnet_napi_tx_disable(&vi->sq[qp_index].napi);
>>>>>> + napi_disable(&vi->rq[qp_index].napi);
>>>>>> + xdp_rxq_info_unreg(&vi->rq[qp_index].xdp_rxq);
>>>>>> +}
>>>>>> +
>>>>>> static int virtnet_open(struct net_device *dev)
>>>>>> {
>>>>>> struct virtnet_info *vi = netdev_priv(dev);
>>>>>>...
2016 Aug 04
0
[Intel-gfx] [PATCH] backlight: Avoid double fbcon backlight handling
...> >
> > > The fbdev notifier strikes again!
> > >
> > > Last time I looked into this I think the proper solution would be to split
> > > the backlight part from the other fbdev notifier (which is used by fbcon
> > > for reacting to fbdev device reg/unreg events).
> > >
> > > I think that would fix this too, with the added bonus of slightly
> > > untangling the fbcon locking mess. And it's also the one part of
> > > untangling this mess which should be possible without any trouble - I've
> > > sim...
2009 Apr 15
2
Threed32.ocx error wwhen installing VB6 application
...HREED.OCX' or one of its dependancies not correctly registered: a file is missing or invalid.
* THREED.OCX is present in the Wine windows\system32 folder. It is identical with the THREED.OCX file on my windows computer.
* I have manually registered the file using regsvr32. Also tried to first unreg it and the reg it again.
* I have checked with RegEdit that THREED.OCX is in the Registry (under Shared DLLs)
* I have used Winetricks to install Vb6run
What am I missing?
Please help
2023 May 09
1
[PATCH net v3] virtio_net: Fix error unwinding of XDP initialization
...;> +static void virtnet_disable_qp(struct virtnet_info *vi, int qp_index)
> >>>> +{
> >>>> + virtnet_napi_tx_disable(&vi->sq[qp_index].napi);
> >>>> + napi_disable(&vi->rq[qp_index].napi);
> >>>> + xdp_rxq_info_unreg(&vi->rq[qp_index].xdp_rxq);
> >>>> +}
> >>>> +
> >>>> static int virtnet_open(struct net_device *dev)
> >>>> {
> >>>> struct virtnet_info *vi = netdev_priv(dev);
> >>>> @@ -1883,20 +1890,2...
2016 Aug 04
0
[Intel-gfx] [PATCH] backlight: Avoid double fbcon backlight handling
...> The fbdev notifier strikes again!
> > > >
> > > > Last time I looked into this I think the proper solution would be to split
> > > > the backlight part from the other fbdev notifier (which is used by fbcon
> > > > for reacting to fbdev device reg/unreg events).
> > > >
> > > > I think that would fix this too, with the added bonus of slightly
> > > > untangling the fbcon locking mess. And it's also the one part of
> > > > untangling this mess which should be possible without any trouble - I'v...
2004 Oct 21
5
Cluster Analysis: Density-Based Method
Hi people,
Does anybody know some Density-Based Method for clustering implemented in R?
Thanks,
Fernando Prass
_______________________________________________________
2011 Apr 08
0
Wine release 1.2.3
...inor shutdown reasons.
Aric Stewart (2):
ws2_32: async_send with no buffers does not need to do any work.
user32: Remove SetWindowText export.
Austin English (3):
ntdll: Bump win2k3 version information to sp2.
urlmon: Add stubs for ordinals 410 and 423.
msiexec: Add /unreg as an alias for /z.
Charles Davis (2):
ntdll: Fix IOCTL_CDROM_RAW_READ on Mac OS.
ntdll: Implement CDROM_GetInterfaceInfo() on Mac OS.
Cheer Xiao (1):
view: Update simplified Chinese translation.
Damian Dixon (1):
advapi32: Added check for NULL pointer being passed to Que...
2007 Aug 08
2
[PATCH] x86-64: syscall/sysenter support for 32-bit apps
...1) != 0 )
ret = -EIO;
break;
+
+ case CALLBACKTYPE_sysenter:
+ if ( ! cpu_has_sep )
+ ret = -EINVAL;
+ else
+ do_update_sysenter(®->address);
+ break;
#endif
case CALLBACKTYPE_nmi:
@@ -358,6 +365,7 @@ static long unregister_guest_callback(st
case CALLBACKTYPE_event:
case CALLBACKTYPE_failsafe:
#ifdef CONFIG_X86_SUPERVISOR_MODE_KERNEL
+ case CALLBACKTYPE_sysenter_deprecated:
case CALLBACKTYPE_sysenter:
#endif
ret = -EINVAL;
Index: 2007-08-08/xen/arch/x86/x86_64/asm-offsets.c
==========...
2011 Feb 18
0
Wine release 1.3.14
....
ole32/tests: Make sure to use return values (LLVM/Clang).
urlmon/tests: Make sure to use a return value (LLVM/Clang).
ntdll/tests: Make sure return values are used (LLVM/Clang).
wine.inf: Add HKLM\\Software\\Microsoft\\Windows\\Current Version\\Run key.
msiexec: Add /unreg as an alias for /z.
oleaut32/tests: Don't check return values inside of if(0) (LLVM/Clang).
oleaut32/tests: Make sure a return value is used (LLVM/Clang).
oleaut32/tests: Make sure return values are used (LLVM/Clang).
oleaut32/tests: Make sure return values are used (LLV...
2016 Aug 04
1
[Intel-gfx] [PATCH] backlight: Avoid double fbcon backlight handling
...bout a dependency cycle:
> >
> > The fbdev notifier strikes again!
> >
> > Last time I looked into this I think the proper solution would be to split
> > the backlight part from the other fbdev notifier (which is used by fbcon
> > for reacting to fbdev device reg/unreg events).
> >
> > I think that would fix this too, with the added bonus of slightly
> > untangling the fbcon locking mess. And it's also the one part of
> > untangling this mess which should be possible without any trouble - I've
> > simply never done it since e...
2012 Aug 10
18
[PATCH v2 0/5] ARM hypercall ABI: 64 bit ready
Hi all,
this patch series makes the necessary changes to make sure that the
current ARM hypercall ABI can be used as-is on 64 bit ARM platforms:
- it defines xen_ulong_t as uint64_t on ARM;
- it introduces a new macro to handle guest pointers, called
XEN_GUEST_HANDLE_PARAM (that has size 4 bytes on aarch and is going to
have size 8 bytes on aarch64);
- it replaces all the occurrences of
2016 Aug 04
2
[Intel-gfx] [PATCH] backlight: Avoid double fbcon backlight handling
...ses lockdep to warn
>> about a dependency cycle:
>
> The fbdev notifier strikes again!
>
> Last time I looked into this I think the proper solution would be to split
> the backlight part from the other fbdev notifier (which is used by fbcon
> for reacting to fbdev device reg/unreg events).
>
> I think that would fix this too, with the added bonus of slightly
> untangling the fbcon locking mess. And it's also the one part of
> untangling this mess which should be possible without any trouble - I've
> simply never done it since entirely getting rid of th...
2012 Aug 16
27
[PATCH v3 0/6] ARM hypercall ABI: 64 bit ready
Hi all,
this patch series makes the necessary changes to make sure that the
current ARM hypercall ABI can be used as-is on 64 bit ARM platforms:
- it defines xen_ulong_t as uint64_t on ARM;
- it introduces a new macro to handle guest pointers, called
XEN_GUEST_HANDLE_PARAM (that has size 4 bytes on aarch and is going to
have size 8 bytes on aarch64);
- it replaces all the occurrences of
2016 Jul 12
0
[Intel-gfx] [PATCH] backlight: Avoid double fbcon backlight handling
...r with the fbdev as a client causes lockdep to warn
> about a dependency cycle:
The fbdev notifier strikes again!
Last time I looked into this I think the proper solution would be to split
the backlight part from the other fbdev notifier (which is used by fbcon
for reacting to fbdev device reg/unreg events).
I think that would fix this too, with the added bonus of slightly
untangling the fbcon locking mess. And it's also the one part of
untangling this mess which should be possible without any trouble - I've
simply never done it since entirely getting rid of the fbdev notifier for
fbc...