search for: rescheduling

Displaying 20 results from an estimated 376 matches for "rescheduling".

2011 Feb 14
2
rescheduling sector linux raid ?
...or reconstruction. md: using 128k window, over a total of 2096384 blocks. md: md0: sync done. RAID1 conf printout: --- wd:2 rd:2 disk 0, wo:0, o:1, dev:sda2 disk 1, wo:0, o:1, dev:sdb2 sd 0:0:0:0: SCSI error: return code = 0x06000000 end_request: I/O error, dev sda, sector 451792231 raid1: sda1: rescheduling sector 451792168 sd 0:0:0:0: SCSI error: return code = 0x06000000 end_request: I/O error, dev sda, sector 451792263 raid1: sda1: rescheduling sector 451792200 raid1: sdb1: redirecting sector 451792168 to another mirror raid1: sdb1: redirecting sector 451792200 to another mirror md: syncing RAID arr...
2016 Jan 12
3
hoping to reschedule SIG meetings to Tuesdays 1500 UTC
I can't make it to the current schedule for alternate Tuesday 1400 UTC meetings. I was hoping we could reschedule it to 1500 UTC on the same Tuesdays instead, or any other slot which could work for all. What do other members think? -- Lokesh Freenode: lsm5 GPG: 0xC7C3A0DD -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type:
2017 Dec 07
1
[PATCH net-next] virtio_net: Disable interrupts if napi_complete_done rescheduled napi
On 2017?12?07? 13:09, Michael S. Tsirkin wrote: > On Thu, Dec 07, 2017 at 01:15:15PM +0900, Toshiaki Makita wrote: >> Since commit 39e6c8208d7b ("net: solve a NAPI race") napi has been able >> to be rescheduled within napi_complete_done() even in non-busypoll case, >> but virtnet_poll() always enabled interrupts before complete, and when >> napi was rescheduled
2017 Dec 07
1
[PATCH net-next] virtio_net: Disable interrupts if napi_complete_done rescheduled napi
On 2017?12?07? 13:09, Michael S. Tsirkin wrote: > On Thu, Dec 07, 2017 at 01:15:15PM +0900, Toshiaki Makita wrote: >> Since commit 39e6c8208d7b ("net: solve a NAPI race") napi has been able >> to be rescheduled within napi_complete_done() even in non-busypoll case, >> but virtnet_poll() always enabled interrupts before complete, and when >> napi was rescheduled
2010 Feb 03
2
[LLVMdev] Integrated instruction scheduling/register allocation
...at the August 2008 developer meeting [1], where he very briefly mentioned allowing the register allocator to reschedule instructions as a "crazy idea" for the future. I independently arrived at the same crazy idea :-) and I'm wondering if anybody ever went and actually implemented a rescheduling allocator in LLVM. I've done some poking around the web, the mailing list archives and the LLVM source code, but I haven't found anything suggesting that this has been done. If anyone has tried it and would be willing to share code, insights, or lessons learned, I would be very grateful to...
2017 Dec 07
2
[PATCH net-next] virtio_net: Disable interrupts if napi_complete_done rescheduled napi
Since commit 39e6c8208d7b ("net: solve a NAPI race") napi has been able to be rescheduled within napi_complete_done() even in non-busypoll case, but virtnet_poll() always enabled interrupts before complete, and when napi was rescheduled within napi_complete_done() it did not disable interrupts. This caused more interrupts when event idx is disabled. According to commit cbdadbbf0c79
2017 Dec 07
2
[PATCH net-next] virtio_net: Disable interrupts if napi_complete_done rescheduled napi
Since commit 39e6c8208d7b ("net: solve a NAPI race") napi has been able to be rescheduled within napi_complete_done() even in non-busypoll case, but virtnet_poll() always enabled interrupts before complete, and when napi was rescheduled within napi_complete_done() it did not disable interrupts. This caused more interrupts when event idx is disabled. According to commit cbdadbbf0c79
2017 Dec 07
0
[PATCH net-next] virtio_net: Disable interrupts if napi_complete_done rescheduled napi
On Thu, Dec 07, 2017 at 01:15:15PM +0900, Toshiaki Makita wrote: > Since commit 39e6c8208d7b ("net: solve a NAPI race") napi has been able > to be rescheduled within napi_complete_done() even in non-busypoll case, > but virtnet_poll() always enabled interrupts before complete, and when > napi was rescheduled within napi_complete_done() it did not disable > interrupts. >
2014 Mar 13
1
[PATCH] pm/fan: drop the fan lock in fan_update() before rescheduling
From: Martin Peres <martin.peres at labri.fr> This should fix a deadlock that has been reported to us where fan_update() would hold the fan lock and try to grab the alarm_program_lock to reschedule an update. On an other CPU, the alarm_program_lock would have been taken before calling fan_update(), leading to a deadlock. Reported-by: Marcin Slusarz <marcin.slusarz at gmail.com>
2010 Feb 03
0
[LLVMdev] Integrated instruction scheduling/register allocation
On Feb 3, 2010, at 6:00 AM, Gergö Barany wrote: > I independently arrived at the same crazy idea :-) and I'm wondering if > anybody ever went and actually implemented a rescheduling allocator in LLVM. > I've done some poking around the web, the mailing list archives and the LLVM > source code, but I haven't found anything suggesting that this has been > done. If anyone has tried it and would be willing to share code, insights, > or lessons learned, I would...
2016 Jan 14
0
hoping to reschedule SIG meetings to Tuesdays 1500 UTC
On Tue, Jan 12, 2016 at 6:00 PM, Lokesh Mandvekar <lsm5 at fedoraproject.org> wrote: > I can't make it to the current schedule for alternate Tuesday 1400 UTC > meetings. > > I was hoping we could reschedule it to 1500 UTC on the same Tuesdays > instead, or > any other slot which could work for all. > > What do other members think? > Ok for me > -- >
2010 Jun 10
0
[PATCH for-2.6.35] virtio_net: do not reschedule rx refill forever
We currently fill all of RX ring, then add_buf returns ENOSPC, which gets mis-detected as an out of memory condition and causes us to reschedule the work, and so on forever. Fix this by oom = err == -ENOMEM; Signed-off-by: Michael S. Tsirkin <mst at redhat.com> --- Rusty, please review the following patch for 2.6.35. drivers/net/virtio_net.c | 7 +++---- 1 files changed, 3
2010 Jun 10
0
[PATCH for-2.6.35] virtio_net: do not reschedule rx refill forever
We currently fill all of RX ring, then add_buf returns ENOSPC, which gets mis-detected as an out of memory condition and causes us to reschedule the work, and so on forever. Fix this by oom = err == -ENOMEM; Signed-off-by: Michael S. Tsirkin <mst at redhat.com> --- Rusty, please review the following patch for 2.6.35. drivers/net/virtio_net.c | 7 +++---- 1 files changed, 3
2020 Mar 18
4
[PATCH 1/9] drm/vblank: Add vblank works
...on success, error code on failure. > + */ > +int drm_vblank_work_schedule(struct drm_vblank_work *work, > + u64 count, bool nextonmiss) > +{ > + struct drm_vblank_crtc *vblank = work->vblank; > + unsigned long irqflags; > + u64 cur_vbl; > + int ret = 0; > + bool rescheduling = false; > + bool passed; > + > + spin_lock_irqsave(&vblank->dev->event_lock, irqflags); > + > + if (work->cancel) > + goto out; > + > + if (work->state == DRM_VBL_WORK_RUNNING) { > + work->reschedule = true; > + work->count = count; > + go...
2020 Mar 18
0
[PATCH 1/9] drm/vblank: Add vblank works
...using the new @count. + * + * Returns: + * 0 on success, error code on failure. + */ +int drm_vblank_work_schedule(struct drm_vblank_work *work, + u64 count, bool nextonmiss) +{ + struct drm_vblank_crtc *vblank = work->vblank; + unsigned long irqflags; + u64 cur_vbl; + int ret = 0; + bool rescheduling = false; + bool passed; + + spin_lock_irqsave(&vblank->dev->event_lock, irqflags); + + if (work->cancel) + goto out; + + if (work->state == DRM_VBL_WORK_RUNNING) { + work->reschedule = true; + work->count = count; + goto out; + } else if (work->state != DRM_VBL_WORK_IDL...
2012 Jun 25
2
[LLVMdev] Bay Area LLVM Social - July
Will the Bay Area LLVM Social take place on July 5 (first Thursday), or be rescheduled because adjacent to the July 4 holiday? -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120625/6b8626ff/attachment.html>
2020 Mar 27
2
[PATCH 1/9] drm/vblank: Add vblank works
..._schedule(struct drm_vblank_work *work, > > > + u64 count, bool nextonmiss) > > > +{ > > > + struct drm_vblank_crtc *vblank = work->vblank; > > > + unsigned long irqflags; > > > + u64 cur_vbl; > > > + int ret = 0; > > > + bool rescheduling = false; > > > + bool passed; > > > + > > > + spin_lock_irqsave(&vblank->dev->event_lock, irqflags); > > > + > > > + if (work->cancel) > > > + goto out; > > > + > > > + if (work->state == DRM_VBL_WORK_RUNNING)...
2020 Mar 27
0
[PATCH 1/9] drm/vblank: Add vblank works
...+ */ > > +int drm_vblank_work_schedule(struct drm_vblank_work *work, > > + u64 count, bool nextonmiss) > > +{ > > + struct drm_vblank_crtc *vblank = work->vblank; > > + unsigned long irqflags; > > + u64 cur_vbl; > > + int ret = 0; > > + bool rescheduling = false; > > + bool passed; > > + > > + spin_lock_irqsave(&vblank->dev->event_lock, irqflags); > > + > > + if (work->cancel) > > + goto out; > > + > > + if (work->state == DRM_VBL_WORK_RUNNING) { > > + work->reschedule = tru...
2017 Nov 30
2
TwoAddressInstructionPass bug?
Hi, we are in the midst of an interesting work that begun with setting 'guessInstructionProperties = 0' in the SystemZ backend. We have found this to be useful, and discovered many instructions where the hasSideEffects flag was incorrectly set while it actually shouldn't. The attached patch and test case triggers an assert in TwoAddress.  (bin/llc ./tc_TwoAddr_crash.ll
2020 Apr 13
0
[PATCH 1/9] drm/vblank: Add vblank works
...ork, > > > > + u64 count, bool nextonmiss) > > > > +{ > > > > + struct drm_vblank_crtc *vblank = work->vblank; > > > > + unsigned long irqflags; > > > > + u64 cur_vbl; > > > > + int ret = 0; > > > > + bool rescheduling = false; > > > > + bool passed; > > > > + > > > > + spin_lock_irqsave(&vblank->dev->event_lock, irqflags); > > > > + > > > > + if (work->cancel) > > > > + goto out; > > > > + > > > > + if (...