search for: devdata

Displaying 20 results from an estimated 33 matches for "devdata".

2008 Sep 17
1
Question about panel.points
Hello, I'm trying to plot graphs using lattice with this script : xyplot(Y ~ X | factmod, panel = function(x, y) { panel.grid(h=-1, v=-1, col="gray") panel.xyplot(x, y, type="p", pch=20) panel.points(50,Idata, data=devdata, col="red") -----> this doesn't work }, xlab="X", ylab="Y") factmod is a factor with 18 labels corresponding to the 18 names of my devices. devdata is a data.frame of 2 columns and 18 rows : name of the devices / value of Idat...
2016 Oct 20
4
[PATCH net-next v2 6/9] net: use core MTU range checking in virt drivers
...ing/unisys/visornic/visornic_main.c @@ -791,7 +791,7 @@ visornic_xmit(struct sk_buff *skb, struct net_device *netdev) * pointing to */ firstfraglen = skb->len - skb->data_len; - if (firstfraglen < ETH_HEADER_SIZE) { + if (firstfraglen < ETH_HLEN) { spin_unlock_irqrestore(&devdata->priv_lock, flags); devdata->busy_cnt++; dev_err(&netdev->dev, @@ -864,7 +864,7 @@ visornic_xmit(struct sk_buff *skb, struct net_device *netdev) /* copy ethernet header from first frag into ocmdrsp * - everything else will be pass in frags & DMA'ed */ - memcpy(cmd...
2016 Oct 20
4
[PATCH net-next v2 6/9] net: use core MTU range checking in virt drivers
...ing/unisys/visornic/visornic_main.c @@ -791,7 +791,7 @@ visornic_xmit(struct sk_buff *skb, struct net_device *netdev) * pointing to */ firstfraglen = skb->len - skb->data_len; - if (firstfraglen < ETH_HEADER_SIZE) { + if (firstfraglen < ETH_HLEN) { spin_unlock_irqrestore(&devdata->priv_lock, flags); devdata->busy_cnt++; dev_err(&netdev->dev, @@ -864,7 +864,7 @@ visornic_xmit(struct sk_buff *skb, struct net_device *netdev) /* copy ethernet header from first frag into ocmdrsp * - everything else will be pass in frags & DMA'ed */ - memcpy(cmd...
2016 Oct 20
0
[PATCH net-next v2 6/9] net: use core MTU range checking in virt drivers
...> @@ -791,7 +791,7 @@ visornic_xmit(struct sk_buff *skb, struct net_device *netdev) > * pointing to > */ > firstfraglen = skb->len - skb->data_len; > - if (firstfraglen < ETH_HEADER_SIZE) { > + if (firstfraglen < ETH_HLEN) { > spin_unlock_irqrestore(&devdata->priv_lock, flags); > devdata->busy_cnt++; > dev_err(&netdev->dev, > @@ -864,7 +864,7 @@ visornic_xmit(struct sk_buff *skb, struct net_device *netdev) > /* copy ethernet header from first frag into ocmdrsp > * - everything else will be pass in frags & DMA&...
2016 Aug 04
2
[Intel-gfx] [PATCH] backlight: Avoid double fbcon backlight handling
...ideo/backlight/backlight.c b/drivers/video/backlight/backlight.c >> index 288318ad21dd..1a25273576e8 100644 >> --- a/drivers/video/backlight/backlight.c >> +++ b/drivers/video/backlight/backlight.c >> @@ -319,13 +319,15 @@ EXPORT_SYMBOL(backlight_force_update); >> * @devdata: an optional pointer to be stored for private driver use. The >> * methods may retrieve it by using bl_get_data(bd). >> * @ops: the backlight operations structure. >> + * @flags: bitmask to control backlight registration >> * >> * Creates and registers new ba...
2016 Jul 12
0
[Intel-gfx] [PATCH] backlight: Avoid double fbcon backlight handling
...ff --git a/drivers/video/backlight/backlight.c b/drivers/video/backlight/backlight.c > index 288318ad21dd..1a25273576e8 100644 > --- a/drivers/video/backlight/backlight.c > +++ b/drivers/video/backlight/backlight.c > @@ -319,13 +319,15 @@ EXPORT_SYMBOL(backlight_force_update); > * @devdata: an optional pointer to be stored for private driver use. The > * methods may retrieve it by using bl_get_data(bd). > * @ops: the backlight operations structure. > + * @flags: bitmask to control backlight registration > * > * Creates and registers new backlight device. Retu...
2016 Jun 30
6
[PATCH] backlight: Avoid double fbcon backlight handling
...return PTR_ERR(bl); diff --git a/drivers/video/backlight/backlight.c b/drivers/video/backlight/backlight.c index 288318ad21dd..1a25273576e8 100644 --- a/drivers/video/backlight/backlight.c +++ b/drivers/video/backlight/backlight.c @@ -319,13 +319,15 @@ EXPORT_SYMBOL(backlight_force_update); * @devdata: an optional pointer to be stored for private driver use. The * methods may retrieve it by using bl_get_data(bd). * @ops: the backlight operations structure. + * @flags: bitmask to control backlight registration * * Creates and registers new backlight device. Returns either an * ERR_PTR...
2016 Aug 04
1
[Intel-gfx] [PATCH] backlight: Avoid double fbcon backlight handling
...c b/drivers/video/backlight/backlight.c > >> index 288318ad21dd..1a25273576e8 100644 > >> --- a/drivers/video/backlight/backlight.c > >> +++ b/drivers/video/backlight/backlight.c > >> @@ -319,13 +319,15 @@ EXPORT_SYMBOL(backlight_force_update); > >> * @devdata: an optional pointer to be stored for private driver use. The > >> * methods may retrieve it by using bl_get_data(bd). > >> * @ops: the backlight operations structure. > >> + * @flags: bitmask to control backlight registration > >> * > >> * Cre...
2010 Feb 11
1
[PATCH] Provides a reference implementation management server.
...nfo/top_level.txt create mode 100644 server/setup.cfg create mode 100644 server/setup.py create mode 100644 server/test.ini diff --git a/server/.gitignore b/server/.gitignore new file mode 100644 index 0000000..41bf6ae --- /dev/null +++ b/server/.gitignore @@ -0,0 +1,4 @@ +build/ +data/ +dist/ +devdata.db diff --git a/server/MANIFEST.in b/server/MANIFEST.in new file mode 100644 index 0000000..e9c47eb --- /dev/null +++ b/server/MANIFEST.in @@ -0,0 +1,4 @@ +recursive-include ovirtserver/public * +include ovirtserver/public/favicon.ico +recursive-include ovirtserver/i18n * +recursive-include ovirtse...
2010 Feb 17
0
[PATCH] Provides the new node lifecycle events.
...p operations - case $OVIRT_RUNTIME_MODE in + case $NODE_RUNTIME_MODE in esac rm -f $VAR_SUBSYS_OVIRT_POST diff --git a/server/.gitignore b/server/.gitignore deleted file mode 100644 index 41bf6ae..0000000 --- a/server/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -build/ -data/ -dist/ -devdata.db diff --git a/server/MANIFEST.in b/server/MANIFEST.in deleted file mode 100644 index e9c47eb..0000000 --- a/server/MANIFEST.in +++ /dev/null @@ -1,4 +0,0 @@ -recursive-include ovirtserver/public * -include ovirtserver/public/favicon.ico -recursive-include ovirtserver/i18n * -recursive-include ovi...
2019 Nov 22
0
[PATCH net-next v2] drivers: net: virtio_net: Implement a dev_watchdog handler
...return. Make sure we have not already been informed that * the IO Partition is gone; if so, we will have already timed-out the xmits. */ -static void visornic_xmit_timeout(struct net_device *netdev) +static void visornic_xmit_timeout(struct net_device *netdev, int txqueue) { struct visornic_devdata *devdata = netdev_priv(netdev); unsigned long flags; diff --git a/drivers/staging/wlan-ng/p80211netdev.c b/drivers/staging/wlan-ng/p80211netdev.c index a70fb84f38f1..65e6b619a1b3 100644 --- a/drivers/staging/wlan-ng/p80211netdev.c +++ b/drivers/staging/wlan-ng/p80211netdev.c @@ -101,7 +101,7 @@ s...
2019 Nov 23
1
[PATCH net-next v2] drivers: net: virtio_net: Implement a dev_watchdog handler
...dy been informed that > * the IO Partition is gone; if so, we will have already timed-out the xmits. > */ > -static void visornic_xmit_timeout(struct net_device *netdev) > +static void visornic_xmit_timeout(struct net_device *netdev, int txqueue) > { > struct visornic_devdata *devdata = netdev_priv(netdev); > unsigned long flags; > diff --git a/drivers/staging/wlan-ng/p80211netdev.c b/drivers/staging/wlan-ng/p80211netdev.c > index a70fb84f38f1..65e6b619a1b3 100644 > --- a/drivers/staging/wlan-ng/p80211netdev.c > +++ b/drivers/staging/wlan-ng/p8021...
2019 Nov 22
4
[PATCH net-next v2] drivers: net: virtio_net: Implement a dev_watchdog handler
Hi Michael, Em sex., 22 de nov. de 2019 ?s 07:31, Michael S. Tsirkin <mst at redhat.com> escreveu: > > On Thu, Nov 21, 2019 at 10:36:36PM -0300, Julio Faracco wrote: > > Driver virtio_net is not handling error events for TX provided by > > dev_watchdog. This event is reached when transmission queue is having > > problems to transmit packets. This could happen for any
2019 Nov 22
4
[PATCH net-next v2] drivers: net: virtio_net: Implement a dev_watchdog handler
Hi Michael, Em sex., 22 de nov. de 2019 ?s 07:31, Michael S. Tsirkin <mst at redhat.com> escreveu: > > On Thu, Nov 21, 2019 at 10:36:36PM -0300, Julio Faracco wrote: > > Driver virtio_net is not handling error events for TX provided by > > dev_watchdog. This event is reached when transmission queue is having > > problems to transmit packets. This could happen for any
2019 Nov 24
0
[PATCH net-next v2] drivers: net: virtio_net: Implement a dev_watchdog handler
...return. Make sure we have not already been informed that * the IO Partition is gone; if so, we will have already timed-out the xmits. */ -static void visornic_xmit_timeout(struct net_device *netdev) +static void visornic_xmit_timeout(struct net_device *netdev, int txqueue) { struct visornic_devdata *devdata = netdev_priv(netdev); unsigned long flags; diff --git a/drivers/staging/wlan-ng/p80211netdev.c b/drivers/staging/wlan-ng/p80211netdev.c index a70fb84f38f1..65e6b619a1b3 100644 --- a/drivers/staging/wlan-ng/p80211netdev.c +++ b/drivers/staging/wlan-ng/p80211netdev.c @@ -101,7 +101,7 @@ s...
2019 Nov 24
3
[PATCH net-next v2] drivers: net: virtio_net: Implement a dev_watchdog handler
...return. Make sure we have not already been informed that * the IO Partition is gone; if so, we will have already timed-out the xmits. */ -static void visornic_xmit_timeout(struct net_device *netdev) +static void visornic_xmit_timeout(struct net_device *netdev, int txqueue) { struct visornic_devdata *devdata = netdev_priv(netdev); unsigned long flags; diff --git a/drivers/staging/wlan-ng/p80211netdev.c b/drivers/staging/wlan-ng/p80211netdev.c index a70fb84f38f1..65e6b619a1b3 100644 --- a/drivers/staging/wlan-ng/p80211netdev.c +++ b/drivers/staging/wlan-ng/p80211netdev.c @@ -101,7 +101,7 @@ s...
2019 Nov 24
3
[PATCH net-next v2] drivers: net: virtio_net: Implement a dev_watchdog handler
...return. Make sure we have not already been informed that * the IO Partition is gone; if so, we will have already timed-out the xmits. */ -static void visornic_xmit_timeout(struct net_device *netdev) +static void visornic_xmit_timeout(struct net_device *netdev, int txqueue) { struct visornic_devdata *devdata = netdev_priv(netdev); unsigned long flags; diff --git a/drivers/staging/wlan-ng/p80211netdev.c b/drivers/staging/wlan-ng/p80211netdev.c index a70fb84f38f1..65e6b619a1b3 100644 --- a/drivers/staging/wlan-ng/p80211netdev.c +++ b/drivers/staging/wlan-ng/p80211netdev.c @@ -101,7 +101,7 @@ s...
2019 Nov 24
0
[PATCH net-next v2] drivers: net: virtio_net: Implement a dev_watchdog handler
...Make sure we have not already been informed that * the IO Partition is gone; if so, we will have already timed-out the xmits. */ -static void visornic_xmit_timeout(struct net_device *netdev) +static void visornic_xmit_timeout(struct net_device *netdev, unsigned int txqueue) { struct visornic_devdata *devdata = netdev_priv(netdev); unsigned long flags; diff --git a/drivers/staging/wlan-ng/p80211netdev.c b/drivers/staging/wlan-ng/p80211netdev.c index a70fb84f38f1..65e6b619a1b3 100644 --- a/drivers/staging/wlan-ng/p80211netdev.c +++ b/drivers/staging/wlan-ng/p80211netdev.c @@ -101,7 +101,7 @@ s...
2019 Nov 24
1
[PATCH net-next v2] drivers: net: virtio_net: Implement a dev_watchdog handler
On Sun, 24 Nov 2019 18:29:49 -0500, Michael S. Tsirkin wrote: > netdev: pass the stuck queue to the timeout handler > > This allows incrementing the correct timeout statistic without any mess. > Down the road, devices can learn to reset just the specific queue. FWIW Acked-by: Jakub Kicinski <jakub.kicinski at netronome.com>
2019 Nov 27
0
[net-next V3 1/2] netdev: pass the stuck queue to the timeout handler
...ve already timed-out the xmits. > > */ > > -static void visornic_xmit_timeout(struct net_device *netdev) > > +static void visornic_xmit_timeout(struct net_device *netdev, > > + unsigned int txqueue) > > { > > struct visornic_devdata *devdata = netdev_priv(netdev); > > unsigned long flags; > > diff --git a/drivers/staging/wlan-ng/p80211netdev.c b/drivers/staging/wlan-ng/p80211netdev.c > > index a70fb84f38f1..72d9b03248c7 100644 > > --- a/drivers/staging/wlan-ng/p80211netdev.c > > +++ b/driver...