Displaying 7 results from an estimated 7 matches for "435,11".
Did you mean:
35,11
2012 Apr 22
1
[PATCH 4/5] drm/nv50: let applications hanging on vm flush to be killed
...u/drm/nouveau/nv50_graph.c | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/drivers/gpu/drm/nouveau/nv50_graph.c b/drivers/gpu/drm/nouveau/nv50_graph.c
index 6899547..a61853f 100644
--- a/drivers/gpu/drm/nouveau/nv50_graph.c
+++ b/drivers/gpu/drm/nouveau/nv50_graph.c
@@ -435,6 +435,11 @@ nv84_graph_tlb_flush(struct drm_device *dev, int engine)
if ((tmp & 7) == 1)
idle = false;
}
+
+ if (fatal_signal_pending(current)) {
+ ret = -ERESTARTSYS;
+ break;
+ }
} while (!idle && !(timeout = ptimer->read(dev) - start > 2000000000));
if...
2004 Aug 05
1
LocalForward and RemoteForward bind patch
...uf2, sfwd_port, buf, sfwd_host_port) != 4 &&
+ sscanf(optarg, "%255[^/]/%5[0123456789]/%255[^/]/%5[0123456789]",
+ buf2, sfwd_port, buf, sfwd_host_port) != 4) {
fprintf(stderr,
"Bad forwarding specification '%s'\n",
optarg);
@@ -435,11 +441,11 @@
exit(1);
}
if (opt == 'L')
- add_local_forward(&options, fwd_port, buf,
- fwd_host_port);
+ add_local_forward(&options, localbind ? buf2 : NULL,
+ fwd_port, buf, fwd_host_port);
else if (opt == 'R')
- add_remote_forward(&...
2019 Aug 03
1
[PATCH libnbd] generator: Generate typedefs automatically for Closure arguments.
...gs)
{
- struct command_cb cb = { .callback = callback, .user_data = user_data, };
+ struct command_cb cb = { .completion = completion, .user_data = user_data, };
if (nbd_unlocked_read_only (h) == 1) {
set_error (EINVAL, "server does not support write operations");
@@ -428,10 +435,11 @@ nbd_unlocked_aio_cache (struct nbd_handle *h,
int64_t
nbd_unlocked_aio_cache_callback (struct nbd_handle *h,
uint64_t count, uint64_t offset,
- callback_fn callback, void *user_data,
+ nbd_comp...
2005 Aug 30
4
Re: [Xen-changelog] New console transport and update xenconsoled.
...le (xc_domain_getinfo(xc, domid, 1, &dominfo) == 1) {
>- lookup_domain(dominfo.domid);
>+ dom = lookup_domain(dominfo.domid);
>+ if (dominfo.dying || dominfo.crashed || dominfo.shutdown)
>+ dom->is_dead = true;
> domid = dominfo.domid + 1;
> }
> }
>@@ -302,12 +435,11 @@
> {
> fd_set readfds, writefds;
> int ret;
>- int max_fd = -1;
>- int num_of_writes = 0;
>
> do {
> struct domain *d;
> struct timeval tv = { 1, 0 };
>+ int max_fd = -1;
>
> FD_ZERO(&readfds);
> FD_ZERO(&writefds);
>@@ -319,42 +4...
2015 Aug 06
0
[PATCH v4 01/17] tests: Introduce test harness for running tests.
...--section 1 \
+ --man $@-t \
+ --license GPLv2+ \
+ $<
+ mv $@-t $@
+
# Make clean.
CLEANFILES = \
@@ -414,6 +425,7 @@ CLEANFILES = \
podwrapper.1 \
qemu-wrapper.sh \
stamp-guestfs-release-notes.pod \
+ test-harness.1 \
tmp/disk* \
tmp/run-* \
tmp/valgrind-*.log
@@ -423,6 +435,11 @@ clean-local:
-rm -rf tmp/guestfs.*
-rm -rf tmp/.guestfs-*
+# Tests.
+
+localtestsdir = $(alltestsdir)
+localtests_DATA = bindtests
+
# If you don't want to run all of the tests ('make check') then this
# will just run libguestfs-test-tool for a quick check. Note this
# i...
2020 Sep 21
18
[nbdkit PATCH v3 00/14] exportname filter
It's been several weeks since I posted v2 (I got distracted by
improving libnbd to better test things, which in turn surfaced some
major memory leak problems in nbdsh that are now fixed). Many of the
patches are minor rebases from v2, with the biggest changes being
fallout from:
- patch 2: rename nbdkit_add_default_export to nbdkit_use_default_export
- overall: this missed 1.22, so update
2015 Aug 06
20
[PATCH v4 00/17] tests: Introduce test harness for running tests.
Since v3:
- A large number of fixes, especially for running the tests on
installed libguestfs.
- Fixed EXTRA_DIST rules throughout.
- Extra patch 17/17 which is a tidy-up of the generated XML
listing guests.
Rich.