Displaying 20 results from an estimated 37 matches for "89,13".
Did you mean:
89,11
2016 Jan 06
0
[klibc:master] mount: Implement -o defaults
Commit-ID: 76e7a4a89826c76b9ebbe9d6015ab16aadbe3dcd
Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=76e7a4a89826c76b9ebbe9d6015ab16aadbe3dcd
Author: Ben Hutchings <ben at decadent.org.uk>
AuthorDate: Wed, 6 Jan 2016 01:09:36 +0000
Committer: H. Peter Anvin <hpa at linux.intel.com>...
2017 Nov 17
0
[nbdkit PATCH 1/4] errors: Avoid interleaved errors from parallel threads
...ITIALIZER;
+
+static void
+lock (void)
+{
+ int r = pthread_mutex_lock(&errors_lock);
+ assert(!r);
+}
+
+static void
+unlock (void)
+{
+ int r = pthread_mutex_unlock(&errors_lock);
+ assert(!r);
+}
+
+/* Called with lock taken. */
static void
prologue (const char *type)
{
@@ -69,11 +89,13 @@ nbdkit_vdebug (const char *fs, va_list args)
if (!verbose)
return;
+ lock ();
prologue ("debug");
vfprintf (stderr, fs, args);
fprintf (stderr, "\n");
+ unlock ();
errno = err;
}
@@ -88,6 +110,7 @@ nbdkit_debug (const char *fs, ...)
if (!verbo...
2015 Nov 14
0
[PATCH v3] pmu: fix queued messages while getting no IRQ
...ata0, u32 data1)
@@ -50,6 +78,7 @@ nvkm_pmu_send(struct nvkm_pmu *pmu, u32 reply[2],
struct nvkm_subdev *subdev = &pmu->subdev;
struct nvkm_device *device = subdev->device;
u32 addr;
+ int ret = 0;
/* wait for a free slot in the fifo */
addr = nvkm_rd32(device, 0x10a4a0);
@@ -89,13 +118,15 @@ nvkm_pmu_send(struct nvkm_pmu *pmu, u32 reply[2],
/* wait for reply, if requested */
if (reply) {
- wait_event(pmu->recv.wait, (pmu->recv.process == 0));
- reply[0] = pmu->recv.data[0];
- reply[1] = pmu->recv.data[1];
+ ret = wait_for_pmu_reply(pmu, reply);
+ if...
2019 Jul 19
0
[PATCH AUTOSEL 5.2 005/171] drm/virtio: set seqno for dma-fence
...his only partially initializes the fence because the seqno is
+ * unknown yet. The fence must not be used outside of the driver
+ * until virtio_gpu_fence_emit is called.
+ */
dma_fence_init(&fence->f, &virtio_fence_ops, &drv->lock, drv->context, 0);
return fence;
@@ -89,13 +92,13 @@ int virtio_gpu_fence_emit(struct virtio_gpu_device *vgdev,
unsigned long irq_flags;
spin_lock_irqsave(&drv->lock, irq_flags);
- fence->seq = ++drv->sync_seq;
+ fence->f.seqno = ++drv->sync_seq;
dma_fence_get(&fence->f);
list_add_tail(&fence->n...
2019 Jul 19
0
[PATCH AUTOSEL 5.1 004/141] drm/virtio: set seqno for dma-fence
...his only partially initializes the fence because the seqno is
+ * unknown yet. The fence must not be used outside of the driver
+ * until virtio_gpu_fence_emit is called.
+ */
dma_fence_init(&fence->f, &virtio_fence_ops, &drv->lock, drv->context, 0);
return fence;
@@ -89,13 +92,13 @@ int virtio_gpu_fence_emit(struct virtio_gpu_device *vgdev,
unsigned long irq_flags;
spin_lock_irqsave(&drv->lock, irq_flags);
- fence->seq = ++drv->sync_seq;
+ fence->f.seqno = ++drv->sync_seq;
dma_fence_get(&fence->f);
list_add_tail(&fence->n...
2016 Jan 06
3
[PATCH klibc 0/3] Changes to support initramfs-tools 0.117
initramfs-tools version 0.117 requires 'readlink -f' and
'mount -o defaults' to work.
The first two patches were previously submitted but not applied.
Ben.
Ben Hutchings (3):
Implement realpath()
readlink: Add -f option
mount: Implement -o defaults
usr/include/stdlib.h | 2 ++
usr/klibc/Kbuild | 2 +-
usr/klibc/realpath.c | 49
2015 Jan 29
2
[RFC PATCH v1 2/2] armv7(float): Optimize encode usecase using NE10 library
..._free((opus_int16*)cfg->bitrev);
Wrong indentation.
> @@ -59,6 +60,7 @@ extern "C" {
> # define kiss_twiddle_scalar float
> # define KF_SUFFIX _celt_single
> # endif
> +
> #endif
>
> typedef struct {
Irrelevant whitespace change.
> @@ -87,8 +89,13 @@ typedef struct kiss_fft_state{
> opus_int16 factors[2*MAXFACTORS];
> const opus_int16 *bitrev;
> const kiss_twiddle_cpx *twiddles;
> + void *priv; /* Used by arch specfic optimizations */
Wrong indentation.
> } kiss_fft_state;
Can I get a copy of the
/...
2015 Jan 29
0
[RFC PATCH v1 2/2] armv7(float): Optimize encode usecase using NE10 library
...t;
>> @@ -59,6 +60,7 @@ extern "C" {
>> # define kiss_twiddle_scalar float
>> # define KF_SUFFIX _celt_single
>> # endif
>> +
>> #endif
>>
>> typedef struct {
>
>
> Irrelevant whitespace change.
>
>> @@ -87,8 +89,13 @@ typedef struct kiss_fft_state{
>> opus_int16 factors[2*MAXFACTORS];
>> const opus_int16 *bitrev;
>> const kiss_twiddle_cpx *twiddles;
>> + void *priv; /* Used by arch specfic optimizations */
>
>
> Wrong indentation.
>
>> } kiss...
2017 Nov 17
7
[nbdkit PATCH 0/4] thread-safety issues prior to parallel handling
These patches should be ready to go in now; I will also post my
work-in-progress for enabling full parallel handling that depends
on these, but with that series, I was still getting crashes or
hangs with test-socket-activation (I think I've nailed all the
crashes I've seen, but the hang is rather insidious; see my other
email
2017 Apr 26
0
[PATCH v2] drm/nouveau: Add support for clockgating on Fermi+
...eau/nvkm/subdev/therm/gf100.c
diff --git a/drivers/gpu/drm/nouveau/include/nvkm/subdev/therm.h b/drivers/gpu/drm/nouveau/include/nvkm/subdev/therm.h
index b268b96..0e2574d 100644
--- a/drivers/gpu/drm/nouveau/include/nvkm/subdev/therm.h
+++ b/drivers/gpu/drm/nouveau/include/nvkm/subdev/therm.h
@@ -89,11 +89,13 @@ struct nvkm_therm {
int nvkm_therm_temp_get(struct nvkm_therm *);
int nvkm_therm_fan_sense(struct nvkm_therm *);
int nvkm_therm_cstate(struct nvkm_therm *, int, int);
+void nvkm_therm_clkgate_engine(struct nvkm_therm *, enum nvkm_devidx, bool);
int nv40_therm_new(struct nvkm_devi...
2020 Jul 29
3
[libnbd PATCH 0/2] Expose export description
An incremental improvement on top of listing exports. I still think
it's worth experimenting with revisiting how our API for list mode
should actually work [1] (so that we can reuse a single connection for
both grabbing the list and finally using NBD_OPT_GO), but this change
was easier to whip together while still thinking about that.
[1]
2024 Oct 15
5
[PATCH v1 0/4] GPU Direct RDMA (P2P DMA) for Device Private Pages
From: Yonatan Maman <Ymaman at Nvidia.com>
This patch series aims to enable Peer-to-Peer (P2P) DMA access in
GPU-centric applications that utilize RDMA and private device pages. This
enhancement is crucial for minimizing data transfer overhead by allowing
the GPU to directly expose device private page data to devices such as
NICs, eliminating the need to traverse system RAM, which is the
2009 May 15
1
[PATCH server] First round of (largely) cosmetic changes to flexchart.
...xg.moveTo(yScale.width,0);
+ xg.lineTo(Constants.width,0);
+ xg.endFill();
+ }
+
private function timeRangeAdjusted(event:Event):void {
var t1:Number = startDateField.selectedDate.getTime()
+ (parseHour(startTimeField.text) * 3600 * 1000)
@@ -73,6 +89,13 @@ package org.ovirt.charts {
load();
}
+ private function selectClickedBar(event:MouseEvent):void {
+ if (selectedBar) {
+ selectedBar.deselect();
+ }
+ selectedBar = event.target as SingleBar;
+ selectedBar.select();
+ }
private function up...
2020 May 19
1
[PATCH nbdkit] common/include: Add locale-safe ascii_strcasecmp and ascii_strncasecmp.
...||
- strcasecmp (value, "base64-export-name") == 0) {
+ else if (ascii_strcasecmp (value, "base64exportname") == 0 ||
+ ascii_strcasecmp (value, "base64-export-name") == 0) {
#ifdef HAVE_BASE64
mode = MODE_BASE64EXPORTNAME;
#else
@@ -89,13 +90,13 @@ info_config (const char *key, const char *value)
return -1;
#endif
}
- else if (strcasecmp (value, "address") == 0)
+ else if (ascii_strcasecmp (value, "address") == 0)
mode = MODE_ADDRESS;
- else if (strcasecmp (value, "time")...
2020 May 22
6
[PATCH nbdkit 0/4] Add fuamode=pass and fuamode=discard
Two hopefully useful additions to the fua filter. The second one is
kind of like cache=unsafe in qemu, in that it exchanges correctness
for speed. Useful for data which is easily recreated in the event of
a crash or for people who like living on the edge and have good
backups.
Rich.
2007 Aug 14
0
Branch 'vivi' - 11 commits - libswfdec-gtk/swfdec_gtk_widget.c libswfdec/Makefile.am libswfdec/swfdec.h libswfdec/swfdec_player.c libswfdec/swfdec_player_internal.h vivified/core
...vivified/core/vivi_debugger.h | 55 +++++++++++++++
vivified/core/vivi_function.c | 9 ++
vivified/core/vivi_initialize.as | 5 +
15 files changed, 452 insertions(+), 10 deletions(-)
New commits:
diff-tree adc7c2987283fe1ec7df8aa442d6d11b6d8d762a (from c1e028a0e58fb2821ce1d10898aca11fbc3c19a0)
Author: Benjamin Otte <otte at gnome.org>
Date: Tue Aug 14 20:29:22 2007 +0200
remove debugging g_print's
diff --git a/vivified/core/vivi_application.c b/vivified/core/vivi_application.c
index d822642..585d295 100644
--- a/vivified/core/vivi_application.c
+++ b/viv...
2015 Jan 20
6
[RFC PATCH v1 0/2] Encode optimize using libNE10
...timizations that can be done.. but I wanted to
first post what I have so far and receive feedback before I spend
any more time so as to not head in the wrong direction.
Thanks in advance for your review.
Regards,
Vish
[1]: https://docs.google.com/a/linaro.org/document/d/1avz20b3DOnD3IwxiKTmUfyUK89hUwL9K2PYMh7dlkNg/edit#
[2]: https://bugs.linaro.org/show_bug.cgi?id=1044
[3]: http://people.linaro.org/~viswanath.puttagunta/opus/NE10_root/NE10_root.tar.gz
Viswanath Puttagunta (2):
Optimize repeated calls to opus_select_arch
armv7(float): Optimize encode usecase using NE10 library
Makefile...
2017 Mar 29
15
[PATCH 00/15] Support for GP10B chipset
GP10B is the chip used in Tegra X2 SoCs. This patchset adds support for
its base engines after reworking secboot a bit to accomodate its calling
convention better.
This patchset has been tested rendering simple off-screen buffers using Mesa
and yielded the expected result.
Alexandre Courbot (15):
secboot: allow to boot multiple falcons
secboot: pass instance to LS firmware loaders
secboot:
2015 Aug 25
4
[PATCH 0/4] Various p2v fixes and features
A mixed bag, but all the patches make sense together!
Patch 1: Fix a bug that Tingting found:
https://bugzilla.redhat.com/show_bug.cgi?id=1256222
Patch 2: Revert a patch that makes no sense now that we've added
virt-v2v into base RHEL. This is just included because it's a cleanup
needed before applying patch 3.
Patch 3: Add the ability to use SSH identities (private keys) for
virt-p2v
2007 Dec 03
0
12 commits - libswfdec/Makefile.am libswfdec/swfdec_as_strings.c libswfdec/swfdec_as_types.c libswfdec/swfdec_as_types.h libswfdec/swfdec_gradient_pattern.c libswfdec/swfdec_gradient_pattern.h libswfdec/swfdec_movie_as_drawing.c libswfdec/swfdec_pattern.c
...ient-beginGradientFill-7.swf.png
new file mode 100644
index 0000000..338d94a
Binary files /dev/null and b/test/image/gradient-beginGradientFill-7.swf.png differ
diff --git a/test/image/gradient-beginGradientFill-8.swf b/test/image/gradient-beginGradientFill-8.swf
new file mode 100644
index 0000000..89d4623
Binary files /dev/null and b/test/image/gradient-beginGradientFill-8.swf differ
diff --git a/test/image/gradient-beginGradientFill-8.swf.org.png b/test/image/gradient-beginGradientFill-8.swf.org.png
new file mode 100644
index 0000000..427323e
Binary files /dev/null and b/test/image/gradient-be...