Displaying 20 results from an estimated 204 matches for "312,7".
Did you mean:
31,7
2018 Feb 07
1
[PATCH] drm/nouveau: Make clock gate support conditional
...(struct nvkm_therm *therm,
void
nvkm_therm_clkgate_enable(struct nvkm_therm *therm)
{
- if (!therm->func->clkgate_enable || !therm->clkgating_enabled)
+ if (!therm || !therm->func->clkgate_enable || !therm->clkgating_enabled)
return;
nvkm_debug(&therm->subdev,
@@ -312,7 +312,7 @@ nvkm_therm_clkgate_enable(struct nvkm_therm *therm)
void
nvkm_therm_clkgate_fini(struct nvkm_therm *therm, bool suspend)
{
- if (!therm->func->clkgate_fini || !therm->clkgating_enabled)
+ if (!therm || !therm->func->clkgate_fini || !therm->clkgating_enabled)
retu...
2015 Apr 01
2
mge-shut driver fails almost after every reboot
Hello all,
OS name: FreeNAS 9.3
NUT version: 2.7.2
NUT installed method: Bundled with FreenNAS 9.3
Device: EATON 5SC 1000
(http://powerquality.eaton.com/Products-services/Backup-Power-UPS/5SC.aspx?cx=5&wtredirect=www.eaton.com/5SC&GUID=B81251A4-F34E-4373-94B3-B4FB3D0CBCA8)
Problem description:
This was originally reported as bug to FreeNAS
2010 Mar 17
1
Suggestion: Not having to export .conflicts.OK in name spaces
...e that those methods should look for
'.conflicts.OK' even if it is not exported. If so, a patch for
library() is:
>svn diff library.R
Index: library.R
===================================================================
--- library.R (revision 51296)
+++ library.R (working copy)
@@ -312,7 +312,7 @@
nogenerics <-
!.isMethodsDispatchOn() || checkNoGenerics(env, package
)
if(warn.conflicts &&
- !exists(".conflicts.OK", envir = env, inherits = FALSE))
+...
2006 Jul 09
0
[PATCH] klibc/kbuild: fix warning: target '' given more than once
...ding static and shared binary which uses subdirs caused a warning
due to duplicated targets.
Signed-off-by: Sam Ravnborg <sam at ravnborg.org>
---
diff --git a/scripts/Kbuild.klibc b/scripts/Kbuild.klibc
index 1741fa8..f2ef939 100644
--- a/scripts/Kbuild.klibc
+++ b/scripts/Kbuild.klibc
@@ -312,7 +312,7 @@ # Descending
# ---------------------------------------------------------------------------
.PHONY: $(subdir-y) $(klibc-dirs)
-$(subdir-y) $(klibc-dirs):
+$(sort $(subdir-y) $(klibc-dirs)):
$(Q)$(MAKE) $(klibc)=$@
# Add FORCE to the prequisites of a target to force it to be alwa...
2020 Feb 06
5
[PATCH 4/4] drm/nouveau: Remove struct nouveau_framebuffer
...truct nouveau_display {
> void *priv;
> diff --git a/drivers/gpu/drm/nouveau/nouveau_fbcon.c b/drivers/gpu/drm/nouveau/nouveau_fbcon.c
> index 02b36b44409c..d78bc03ad3b8 100644
> --- a/drivers/gpu/drm/nouveau/nouveau_fbcon.c
> +++ b/drivers/gpu/drm/nouveau/nouveau_fbcon.c
> @@ -312,7 +312,7 @@ nouveau_fbcon_create(struct drm_fb_helper *helper,
> struct nouveau_drm *drm = nouveau_drm(dev);
> struct nvif_device *device = &drm->client.device;
> struct fb_info *info;
> - struct nouveau_framebuffer *fb;
> + struct drm_framebuffer *fb;
> struct...
2003 Dec 30
1
sambaSamAccount versus SambaSAMAccount
...ba when joigning the domain (for samba3)
+ # Objectclass sambaSamAccount is now added directly by samba when joigning the domain (for samba3)
#if (!add_samba_machine_mkntpwd($userName, $userUidNumber)) {
# die "$0: error while adding samba account\n";
#}
@@ -312,7 +312,7 @@
my $modify = $ldap_master->modify ( "uid=$userName,$usersdn",
changes => [
- add...
2015 Apr 02
0
mge-shut driver fails almost after every reboot
...r ()
> 16.197949 No matching HID UPS found
>
> Thank you in advance!
>
The only diff I see between shut in 2.7.1 and 2.7.2 is the following:
--- ../nut-2.7.1/drivers/libshut.c 2013-10-02 14:16:42.000000000 +0200
+++ drivers/libshut.c 2014-02-25 16:39:34.000000000 +0100
@@ -312,7 +312,7 @@
/* FIXME: add variable baudrate detection */
*upsfd = ser_open(device_path);
ser_set_speed(*upsfd, device_path, B2400);
- setline(*upsfd, 0);
+ setline(*upsfd, 1);
/* initialise communication */
if (!shut_synchronise(*upsfd))
This is tied to the PnP fea...
2002 Aug 09
0
patch to ssh.c for KerberosTgtPassing and readability patches for config files and manpages
...e SSH1 Kerberos V4/5 ticket
and AFS token forwarding.\n");
#endif /* AFS */
fprintf(stderr, " -X Enable X11 connection
forwarding.\n");
fprintf(stderr, " -x Disable X11 connection forwarding
(default).\n");
@@ -312,7 +312,7 @@
case 'A':
options.forward_agent = 1;
break;
-#ifdef AFS
+#if defined (AFS) || defined (KRB5)
case 'k':
options.kerberos_tgt_passing = 0;
option...
2008 Sep 19
8
[PATCH] x86: add hypercall to query current underlying pCPU''s frequency
...quot;cpu/mtrr/mtrr.h"
@@ -55,6 +55,7 @@ static long cpu_frequency_change_helper(
ret_t do_platform_op(XEN_GUEST_HANDLE(xen_platform_op_t) u_xenpf_op)
{
ret_t ret = 0;
+ struct vcpu *v;
struct xen_platform_op curop, *op = &curop;
if ( !IS_PRIV(current->domain) )
@@ -312,7 +313,6 @@ ret_t do_platform_op(XEN_GUEST_HANDLE(xe
{
uint32_t cpu;
uint64_t idletime, now = NOW();
- struct vcpu *v;
struct xenctl_cpumap ctlmap;
cpumask_t cpumap;
XEN_GUEST_HANDLE(uint8) cpumap_bitmap;
@@ -482,6 +482,20 @@ ret_t do_platfor...
2013 Oct 10
3
[PATCH net-next v3 5/5] xen-netback: enable IPv6 TCP GSO to the guest
...ROUND_UP(vif->dev->mtu, PAGE_SIZE);
/* XXX FIXME: RX path dependent on MAX_SKB_FRAGS */
- if (vif->can_sg || vif->gso || vif->gso_prefix)
+ if (vif->can_sg || vif->gso_mask || vif->gso_prefix_mask)
max += MAX_SKB_FRAGS + 1; /* extra_info + frags */
return max;
@@ -312,6 +312,7 @@ static struct xenvif_rx_meta *get_next_rx_buffer(struct xenvif *vif,
req = RING_GET_REQUEST(&vif->rx, vif->rx.req_cons++);
meta = npo->meta + npo->meta_prod++;
+ meta->gso_type = 0;
meta->gso_size = 0;
meta->size = 0;
meta->id = req->id;
@@ -33...
2020 Feb 06
2
[PATCH 4/4] drm/nouveau: Remove struct nouveau_framebuffer
...gt; diff --git a/drivers/gpu/drm/nouveau/nouveau_fbcon.c
>>> b/drivers/gpu/drm/nouveau/nouveau_fbcon.c
>>> index 02b36b44409c..d78bc03ad3b8 100644
>>> --- a/drivers/gpu/drm/nouveau/nouveau_fbcon.c
>>> +++ b/drivers/gpu/drm/nouveau/nouveau_fbcon.c
>>> @@ -312,7 +312,7 @@ nouveau_fbcon_create(struct drm_fb_helper *helper,
>>> ????? struct nouveau_drm *drm = nouveau_drm(dev);
>>> ????? struct nvif_device *device = &drm->client.device;
>>> ????? struct fb_info *info;
>>> -??? struct nouveau_framebuffer *fb;
>...
2020 Feb 06
2
[PATCH 4/4] drm/nouveau: Remove struct nouveau_framebuffer
...t; diff --git a/drivers/gpu/drm/nouveau/nouveau_fbcon.c
>>> b/drivers/gpu/drm/nouveau/nouveau_fbcon.c
>>> index 02b36b44409c..d78bc03ad3b8 100644
>>> --- a/drivers/gpu/drm/nouveau/nouveau_fbcon.c
>>> +++ b/drivers/gpu/drm/nouveau/nouveau_fbcon.c
>>> @@ -312,7 +312,7 @@ nouveau_fbcon_create(struct drm_fb_helper *helper,
>>> ????? struct nouveau_drm *drm = nouveau_drm(dev);
>>> ????? struct nvif_device *device = &drm->client.device;
>>> ????? struct fb_info *info;
>>> -??? struct nouveau_framebuffer *fb;
>&g...
2020 Feb 10
2
[PATCH 4/4] drm/nouveau: Remove struct nouveau_framebuffer
...eau_fbcon.c
> >>>> b/drivers/gpu/drm/nouveau/nouveau_fbcon.c
> >>>> index 02b36b44409c..d78bc03ad3b8 100644
> >>>> --- a/drivers/gpu/drm/nouveau/nouveau_fbcon.c
> >>>> +++ b/drivers/gpu/drm/nouveau/nouveau_fbcon.c
> >>>> @@ -312,7 +312,7 @@ nouveau_fbcon_create(struct drm_fb_helper *helper,
> >>>> struct nouveau_drm *drm = nouveau_drm(dev);
> >>>> struct nvif_device *device = &drm->client.device;
> >>>> struct fb_info *info;
> >>>> -...
2018 May 11
2
[PATCH v2 2/4] drm/vc4: Take underscan setup into account when updating planes
...plictly?
> +
> + if (!vc4_pstate->crtc_w || !vc4_pstate->crtc_h)
> + return -EINVAL;
> +
> + return 0;
> +}
> +
> static int vc4_plane_setup_clipping_and_scaling(struct drm_plane_state *state)
> {
> struct drm_plane *plane = state->plane;
> @@ -269,7 +312,7 @@ static int vc4_plane_setup_clipping_and_scaling(struct drm_plane_state *state)
> int num_planes = fb->format->num_planes;
> u32 h_subsample = 1;
> u32 v_subsample = 1;
> - int i;
> + int i, ret;
>
> for (i = 0; i < num_planes; i++)
> vc4_state->...
2015 Apr 02
2
mge-shut driver fails almost after every reboot
...ching HID UPS found
>
> Thank you in advance!
>
>
> The only diff I see between shut in 2.7.1 and 2.7.2 is the following:
>
> --- ../nut-2.7.1/drivers/libshut.c 2013-10-02 14:16:42.000000000 +0200
> +++ drivers/libshut.c 2014-02-25 16:39:34.000000000 +0100
> @@ -312,7 +312,7 @@
> /* FIXME: add variable baudrate detection */
> *upsfd = ser_open(device_path);
> ser_set_speed(*upsfd, device_path, B2400);
> - setline(*upsfd, 0);
> + setline(*upsfd, 1);
>
> /* initialise communication */
> if (!shut_synchronise...
2020 Feb 10
2
[PATCH 4/4] drm/nouveau: Remove struct nouveau_framebuffer
...;> b/drivers/gpu/drm/nouveau/nouveau_fbcon.c
>>>>>>> index 02b36b44409c..d78bc03ad3b8 100644
>>>>>>> --- a/drivers/gpu/drm/nouveau/nouveau_fbcon.c
>>>>>>> +++ b/drivers/gpu/drm/nouveau/nouveau_fbcon.c
>>>>>>> @@ -312,7 +312,7 @@ nouveau_fbcon_create(struct drm_fb_helper *helper,
>>>>>>> struct nouveau_drm *drm = nouveau_drm(dev);
>>>>>>> struct nvif_device *device = &drm->client.device;
>>>>>>> struct fb_info *info;
&g...
2020 Feb 06
0
[PATCH 4/4] drm/nouveau: Remove struct nouveau_framebuffer
...ct drm_framebuffer **pfb);
struct nouveau_display {
void *priv;
diff --git a/drivers/gpu/drm/nouveau/nouveau_fbcon.c b/drivers/gpu/drm/nouveau/nouveau_fbcon.c
index 02b36b44409c..d78bc03ad3b8 100644
--- a/drivers/gpu/drm/nouveau/nouveau_fbcon.c
+++ b/drivers/gpu/drm/nouveau/nouveau_fbcon.c
@@ -312,7 +312,7 @@ nouveau_fbcon_create(struct drm_fb_helper *helper,
struct nouveau_drm *drm = nouveau_drm(dev);
struct nvif_device *device = &drm->client.device;
struct fb_info *info;
- struct nouveau_framebuffer *fb;
+ struct drm_framebuffer *fb;
struct nouveau_channel *chan;
struct no...
2018 Apr 09
2
[PATCH] Fix out-of-tree builds of OCaml components
...-o mlxml
# Dependencies.
-.depend: *.mli *.ml
+.depend: $(srcdir)/*.mli $(srcdir)/*.ml
$(top_builddir)/ocaml-dep.sh $^
-include .depend
diff --git a/customize/Makefile.am b/customize/Makefile.am
index 7f18b2fc34..efdd272275 100644
--- a/customize/Makefile.am
+++ b/customize/Makefile.am
@@ -312,7 +312,7 @@ CLEANFILES += \
settings-*.img
# OCaml dependencies.
-.depend: *.mli *.ml
+.depend: $(srcdir)/*.mli $(srcdir)/*.ml
$(top_builddir)/ocaml-dep.sh $^
-include .depend
diff --git a/daemon/Makefile.am b/daemon/Makefile.am
index 9dbd375f5d..506c880297 100644
--- a/daemon/Makefile.am...
2020 Feb 06
0
[PATCH 4/4] drm/nouveau: Remove struct nouveau_framebuffer
...? void *priv;
>> diff --git a/drivers/gpu/drm/nouveau/nouveau_fbcon.c
>> b/drivers/gpu/drm/nouveau/nouveau_fbcon.c
>> index 02b36b44409c..d78bc03ad3b8 100644
>> --- a/drivers/gpu/drm/nouveau/nouveau_fbcon.c
>> +++ b/drivers/gpu/drm/nouveau/nouveau_fbcon.c
>> @@ -312,7 +312,7 @@ nouveau_fbcon_create(struct drm_fb_helper *helper,
>> ????? struct nouveau_drm *drm = nouveau_drm(dev);
>> ????? struct nvif_device *device = &drm->client.device;
>> ????? struct fb_info *info;
>> -??? struct nouveau_framebuffer *fb;
>> +??? struct d...
2005 Aug 01
5
allocate_empty_lowmem_region hypervisor function
Hi,
Is there a reason that the allocate_empty_lowmem_region() function in hypervisor.c is only available in Domain 0. It is only included if CONFIG_XEN_PHYSDEV_ACCESS is defined, however, when I remove this it seems to work fine in DomUs.
Thanks,
Ross
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel