Displaying 17 results from an estimated 17 matches for "162000".
Did you mean:
12000
2014 Mar 19
1
[PATCH v2] disp/nvd0-: allow 540MHz data rate for nvd0+ devices
...ine/disp/dport.c
index 1bd4c63..1ea3e65 100644
--- a/nvkm/engine/disp/dport.c
+++ b/nvkm/engine/disp/dport.c
@@ -273,12 +273,15 @@ nouveau_dp_train(struct nouveau_disp *disp, const struct nouveau_dp_func *func,
.outp = outp,
.head = head,
}, *dp = &_dp;
- const u32 bw_list[] = { 270000, 162000, 0 };
+ const u32 bw_list[] = { 540000, 270000, 162000, 0 };
const u32 *link_bw = bw_list;
u8 hdr, cnt, len;
u32 data;
int ret;
+ if (nv_device(disp)->card_type < NV_D0)
+ link_bw++;
+
/* find the bios displayport data relevant to this output */
data = nvbios_dpout_match(bios,...
2013 Jan 29
2
Is this a NFSv4 bug??
HI all,
I have configured a CentOS 6.3 x86_64 as a NFSv4 server and I am
suffering errors like this:
perl[7889]: segfault at a80 ip 00007fb870227ea2 sp 00007fff2fecda30
error 4 in libperl.so[7fb870193000+162000]
The symptoms are the same as described in this thread:
http://serverfault.com/questions/235059/vfs-file-max-limit-1231582-reached
Can anyone confirm that is a bug when NFSv4 is used?
My actual options are:
fs.file-max = 1639200
[root at server01 fs]# lsof |wc -l
3962
[root at server01 fs]#...
2014 Mar 19
0
[PATCH] disp/nvd0-: allow 540MHz data rate for nvd0+ devices
...ine/disp/dport.c
index 1bd4c63..1ea3e65 100644
--- a/nvkm/engine/disp/dport.c
+++ b/nvkm/engine/disp/dport.c
@@ -273,12 +273,15 @@ nouveau_dp_train(struct nouveau_disp *disp, const struct nouveau_dp_func *func,
.outp = outp,
.head = head,
}, *dp = &_dp;
- const u32 bw_list[] = { 270000, 162000, 0 };
+ const u32 bw_list[] = { 540000, 270000, 162000, 0 };
const u32 *link_bw = bw_list;
u8 hdr, cnt, len;
u32 data;
int ret;
+ if (nouveau_device(disp)->card_type < NV_D0)
+ link_bw++;
+
/* find the bios displayport data relevant to this output */
data = nvbios_dpout_match(...
2003 Nov 26
1
lines(lowess()) trouble
...-------- test.R
test <- read.table(file="test.txt", sep="\t", header=T);
plot( test$x, test$y, log="xy");
lines( lowess( test$x, test$y, f=0.5 ) );
-------- test.txt
x y
5584440 5000
2300100 1
37320 3977
92500 1
38440 1
70000 1
161282 151759
963000 7453
200000 5000
162000 1
29100 1200
20000 1
7921000 8112906
100000 1
426500 1
200000 1
450000 1
1900000 1
220001 2000
109901 13463
16300 6965
2014 Mar 18
13
[Bug 76319] New: [NVE6] MMIO FAULT, black screen on K2100M
https://bugs.freedesktop.org/show_bug.cgi?id=76319
Priority: medium
Bug ID: 76319
Assignee: nouveau at lists.freedesktop.org
Summary: [NVE6] MMIO FAULT, black screen on K2100M
QA Contact: xorg-team at lists.x.org
Severity: blocker
Classification: Unclassified
OS: Linux (All)
Reporter: d-bugzilla at moens.cc
2017 Dec 31
0
LUT update skipped on first modeset?
...s
[drm_kms_helper]] [CONNECTOR:44:DVI-I-1] probed modes :
[ 2368.113358] [drm:drm_mode_debug_printmodeline [drm]] Modeline
51:"1920x1200" 60 154000 1920 1968 2000 2080 1200 1203 1209 1235 0x48
0x9
[ 2368.113379] [drm:drm_mode_debug_printmodeline [drm]] Modeline
53:"1600x1200" 60 162000 1600 1664 1856 2160 1200 1201 1204 1250 0x40
0x5
[ 2368.113399] [drm:drm_mode_debug_printmodeline [drm]] Modeline
55:"1680x1050" 60 146250 1680 1784 1960 2240 1050 1053 1059 1089 0x40
0x6
[ 2368.113419] [drm:drm_mode_debug_printmodeline [drm]] Modeline
60:"1280x1024" 75 135000 1...
2007 Oct 03
0
leaps: regsubsets, formula including interactions
...par(mfrow=c(1,4)) ; plot(d) ; plot(d,scale="Cp") ;
plot(d,scale="adjr2") ; plot(d,scale="r2")
My data 'dat' variable looks like this:
> str(dat)
'data.frame': 548 obs. of 9 variables:
$ SumTL: int 13500 67800 158000 299000 486000 712000 56100 162000
310000 471000 ...
$ SumUL: int 13800 69700 163000 308000 497000 726000 58100 168000
319000 481000 ...
$ Ord : int 96 192 288 384 480 576 192 288 384 480 ...
$ Incid: int 0 0 0 0 0 0 0 0 0 0 ...
$ f1 : int 1 1 1 1 1 1 1 1 1 1 ...
$ f2 : int 0 0 0 0 0 0 0 0 0 0 ...
$ f3 : int 0 0 0...
2008 Aug 27
3
array_including()
I found myself having to write this today:
class ArrayMatcher
def initialize(array_to_match)
@array_to_match = array_to_match
end
def ==(other)
ok = true
@array_to_match.each do |item|
ok = ok and other.include?(item)
end
ok
end
end
def array_including(array_to_match)
ArrayMatcher.new(array_to_match)
end
Is there already something in the
2012 Oct 18
13
[PATCH 00/10] extract dp helper functions
Hi all,
I've frustrated myself the last few days yelling at our link training code.
Comparing the i915 code to radeon and nouveau I've noticed the lack of a nice
set of dp helper functions. So I've started to extract a few.
There's lots more that we can do I think (link configuration selection, the i2c
over aux retry stuff which diverges already between i915 and radeon, maybe
2014 May 08
28
[Bug 78439] New: Display corruption when DP connector is reattached
https://bugs.freedesktop.org/show_bug.cgi?id=78439
Priority: medium
Bug ID: 78439
Assignee: nouveau at lists.freedesktop.org
Summary: Display corruption when DP connector is reattached
QA Contact: xorg-team at lists.x.org
Severity: normal
Classification: Unclassified
OS: All
Reporter: andrius at stikonas.eu
2006 Apr 21
2
getent not working (again)
...ad(5, "\24\5\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 1300)
= 1300
select(6, [5], NULL, NULL, {0, 0}) = 0 (Timeout)
write(5, ",\7\0\0\10\0\0\0\336\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 1836)
= 1836
select(6, [5], NULL, NULL, {5, 0}) = 1 (in [5], left {4, 162000})
read(5, "\24\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 1300)
= 1300
close(3) = 0
munmap(0xb7d25000, 4096) = 0
select(6, [5], NULL, NULL, {0, 0}) = 0 (Timeout)
write(5, ",\7\0\0\7\0\0\0\336\n\0\0\0\0\0\0\0\0\0\0\0\0\0...
2013 Aug 01
32
[Bug 67628] New: [BISECTED] Monitor on Display port shows distortions
https://bugs.freedesktop.org/show_bug.cgi?id=67628
Priority: medium
Bug ID: 67628
Assignee: nouveau at lists.freedesktop.org
Summary: [BISECTED] Monitor on Display port shows distortions
QA Contact: xorg-team at lists.x.org
Severity: major
Classification: Unclassified
OS: Linux (All)
Reporter:
2006 Apr 21
1
AW: getent not working (again)
...0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"...,
> 1300) = 1300
> select(6, [5], NULL, NULL, {0, 0}) = 0 (Timeout)
> write(5,
> ",\7\0\0\10\0\0\0\336\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"...,
> 1836) = 1836
> select(6, [5], NULL, NULL, {5, 0}) = 1 (in [5], left {4, 162000})
> read(5,
> "\24\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"...,
> 1300) = 1300
> close(3) = 0
> munmap(0xb7d25000, 4096) = 0
> select(6, [5], NULL, NULL, {0, 0}) = 0 (Timeout)
> write(5,
> ",\7\0\0...
2014 Apr 16
16
[Bug 77529] New: NVS 510 DP-3 output doesn't work
https://bugs.freedesktop.org/show_bug.cgi?id=77529
Priority: medium
Bug ID: 77529
Assignee: nouveau at lists.freedesktop.org
Summary: NVS 510 DP-3 output doesn't work
QA Contact: xorg-team at lists.x.org
Severity: normal
Classification: Unclassified
OS: All
Reporter: tex at sergio.spb.ru
2001 Oct 14
0
DirectX 8 Library error.
...e 15c000
trace:module:do_relocations 28 relocations for page 15e000
trace:module:do_relocations 512 relocations for page 15f000
trace:module:do_relocations 316 relocations for page 160000
trace:module:do_relocations 284 relocations for page 161000
trace:module:do_relocations 48 relocations for page 162000
trace:module:do_relocations 208 relocations for page 165000
trace:module:do_relocations 88 relocations for page 166000
trace:module:do_relocations 236 relocations for page 167000
trace:module:do_relocations 72 relocations for page 168000
trace:module:do_relocations 72 relocations for page 169000
tr...
2013 Jun 14
14
Issues with Intel HD graphics 4000
Hey,
Are there any known issues with the Intel''s integrated HD graphics 4000? I just bought a new laptop and have tried everything I can think of to get Xen to load. After choosing Xen in GRUB, it just boots to a black screen. There is no error message , no dmesg output, nothing. I have no idea what is causing this problem. I''ve gotten Xen to install with no problems on another
2013 Feb 14
12
[PATCH v7 0/5] xen: ARM HDLCD video driver
Hi all,
these are the remaining unapplied patches of the ARM HDLCD patch series.
Changes in v7:
- rebased on b61ed421d2c85b5b106c63f2c14f8aa162b282f0;
- turn more printk and panic into early_printk and early_panic.
Changes in v6:
- rebased on 77d3a1db3196b1b5864469f8d3f41d496800c795;
- remove useless initializations to NULL in lfb_init;
- more compact checks in lfb_init.
Changes in v5:
- move