/srv/irclogs.ubuntu.com/2011/02/08/#ubuntu-kernel.txt

ohsixtheres room for the usb end of things to be clever as well; like only sending drawing operations or doing delta coding in the driver00:20
ohsixif it were pushing new pixels for every displayed frame it'd be pretty gimped00:21
ohsixbuffalo has a wireless usb one too00:23
RAOF-ECHAN? :)00:28
=== lucent_ is now known as lucent
=== _LibertyZero is now known as LibertyZero
=== smb` is now known as smb
* smb yawns08:28
* apw knows how smb feels08:28
* smb checks the clock and decides apw must be an imagination at this time of day08:29
psurbhismb, ping10:04
smbpsurbhi, Yup, whats up?10:04
psurbhismb, hie10:05
psurbhiwaned to discuss the nfs bug10:05
psurbhiin case of Lucid, does not commit_inode() call WRITE rather than COMMIT?10:06
smbSure. Well from my tests it does do a WRITE with UNSTABLE and then a COMMIT10:06
smbWhich is valid nfs v3 behavior10:06
psurbhiis this what you see for Lucid?10:07
smbThe issue seems to be that the description for what O_SYNC does for a nfs filesystem does sound like it shout switch back to the nfs v2 mode10:08
smbWhich is to send every write with the FILE_SYNC flag set10:08
smbforcing the server to write out every packet before replying10:08
psurbhii thought that in Lucid, instead of a COMMIT a WRITE occurs10:08
smbwhile nfs v3 uses the commit packet to force a write out10:08
psurbhiin the upstream code, nfs_file_fsync() eventually calls COMMIT procedure (at the client side)10:09
smbNot according to my log. And even from what I read from the bug report10:09
psurbhithe bug report is for lucid10:09
psurbhifor lucid i thought that a WRITE is called10:09
smbThe ibug report is about the fact that they use O_SYNC for the file open and still get the write/commit sequnec10:09
psurbhiok..10:10
psurbhiin case of upstream instead of the WRITE, COMMIT is called10:10
smbWRITE gets called in both cases but for the old mode it sets FILE_SYNC and for the new one it uses UNSTABLE10:10
smband additionally in the new case the WRITE is followed by a commit10:10
psurbhimy understanding is that in the new mode (in the upstream kernel) it calls only COMMIT if the sync flag is used10:10
smbNo10:11
psurbhiand since the data does get to the backing storage this should suffice10:11
smbYou see a write, write reply and commit, commit reply when you look at the screenshot10:11
psurbhifor upstream code or lucid?10:11
smbboth10:11
psurbhifor lucid, i cannot seem to see the commit10:11
psurbhiand by tracing the upstream code i thought that nfs_file_fsync only calls COMMIT procedure10:12
psurbhino?10:12
smbno10:12
psurbhibut the same nfs_file_fsync in lucid calls WRITE10:12
psurbhilet me check again10:13
smbThe writes use unstable (you cannot just call commit)10:13
smbcommit does nothing but to indicate a writeout/sync to the server10:13
smblook at comment #10 in the private bug10:13
smbpsurbhi, And that is exactly the same as I saw in my wireshark logs10:14
psurbhiin the upstream code, i can see that nfs_file_fsync() -> nfs_commit() -> nfs_commit_list() -> nfs_commit_rpcsetup()10:14
psurbhiwhich ultimately calls COMMIT procedure10:14
smbThis is the function called for a sync10:15
smbAnd only does a sync10:15
psurbhicorrect10:15
smbThe bug is about the fact that the write request(s) use UNSTABLE and not NFS_FILE_SYNC as flags to the write requests10:15
psurbhibut this is the same function called for O_SYNC too10:15
psurbhiso what i am saying is this10:16
psurbhithat the semantics of O_SYNC say that the data needs to be backed on stable storage10:16
psurbhinfs specification does not say how to do that10:16
psurbhiso a  client is free to do it with a COMMIT10:16
psurbhior with a WRITE10:16
psurbhiwhere argument stable is FILE_SYNC10:16
psurbhiin case of upstream code this is done with COMMIT10:17
psurbhiin case of Lucid10:17
psurbhinfs_do_fsync() ultimately calls WRITE10:17
psurbhiand does not mark the stable arg as "FILE_SYNC"10:17
psurbhiso i think the code works well in upstream code10:17
psurbhibut not for lucid10:17
smbWell first. The wireshark logs look exactly the same for upstream and lucid. So I do not see where you get the wrong behavior for Lucid10:19
psurbhidoes the  COMMIT arise because of writeback behavior in Lucid?10:19
psurbhirather than a synchronous behavior?10:19
smbSecond the new mode is nfs v3 behavior and documentation about O_SYNC says it is supposed to switch back the way things are done to the mode nfs v2 used10:19
smbwhich is to mark every wreite with sync10:20
psurbhibut the nfs specification does not say anything about it10:20
psurbhior no?10:20
psurbhii mean the rfc 181310:21
smbThe nfs spec says that a v3 client can use the new mode and the server responds in the new way. Or the old mode and the server responds in the old way. The spec does not directly say anything about O_SYNC there. That I found in some description about the file flags in Linux10:21
psurbhicorrect10:22
smbhttp://www.faqs.org/docs/Linux-HOWTO/NFS-HOWTO.html#MOUNTOPTIONS10:22
smbIn addition to the above definition of synchronous behavior, the client may explicitly insist on total synchronous behavior, regardless of the protocol, by opening all files with the O_SYNC option. In this case, all replies to client requests will wait until the data has hit the server's disk, regardless of the protocol used (meaning that, in NFS version 3, all requests will be NFS_FILE_SYNC requests, and will require that the Server returns t10:22
smbhis status). In that case, the performance of NFS Version 2 and NFS Version 3 will be virtually identical.10:22
psurbhii agree on the part of hitting the stable storage10:24
psurbhibut that could be done with COMMMIT too10:24
psurbhiso i dont see why this should be a bug?10:24
smbmeaning that, in NFS version 3, all requests will be NFS_FILE_SYNC requests10:24
smbwhich is not the case10:25
psurbhii think that NFS_FILE_SYNC is the return value?10:25
smbno, its in the request as well10:25
psurbhiand the description is when the whole filesystem is mounted with sync option10:25
psurbhisomehow semantically its the same10:25
psurbhias the data needs to be written to the backing storage10:25
psurbhiwhen the file is opened with a sync10:26
psurbhiO_SYNC flag10:26
psurbhiand about the O_DIRECT10:26
psurbhinfs_file_direct_write() is called in this case10:26
psurbhithe comment for this code says the following10:26
psurbhiWe avoid unnecessary page cache invalidations for normal cached10:26
psurbhireaders of this file10:26
psurbhiI am not sure this is a good thing10:27
psurbhialso, the rpcs are often optimised depending on if data is found in the client cache10:27
psurbhiin this case, since we bypass the client cache totally10:27
psurbhithere is no oportunity to do this10:27
smbThe sentence above talks about opening *files* (regardless of the mount option used)10:27
psurbhibut the bug is not about the mount option10:27
psurbhiits about opening a file10:27
psurbhiwith O_SYNC10:27
psurbhiso the filesystem might nt have been mounted with sync flag10:28
smbAnd that using O_DIRECT changes it is rather lucky as the testcase only uses a short data size10:28
psurbhii think the test case was just to show us10:28
psurbhithat the bug exists10:28
psurbhiin generic terms10:28
psurbhiits not correct to use O_DIRECT10:28
psurbhiwhen u need O_SYNC10:28
psurbhithere could be multiple apps opening the same file at the client side10:29
psurbhior one app opening the file multiple times as well10:29
psurbhiin such cases O_DIRECT for getting FILE_SYNC would not be the same10:29
smbAnd I just said that using O_DIRECT I can see that the client can use the other mode. Not necessarily that this always will result in the right behavior10:30
psurbhicorrect10:30
psurbhii agree on that10:30
smbThe bug is about the fact that O_SYNC is described as changing the behavior10:30
psurbhibut there was a comment about using this as a workaround10:30
smbregardless whetehr the mount option sync was used10:30
psurbhiand i dont see this being a work around10:30
psurbhismb, exactly10:30
psurbhiso i am saying O_DIRECT cannot be a work around10:30
psurbhiand I feel that in upstream code nfs_file_fsync() is used for O_SYNC10:31
psurbhiand this uses COMMIT to gurantee data sync on stable storage at server side10:31
psurbhiso i think this cannot be an upstream bug10:31
psurbhibut ofcourse these are my thoughts10:31
psurbhiif they help, then great..10:31
psurbhi:)10:31
smbWell this might be a shortcomming of the testcase10:32
psurbhioko10:32
smbI can see a commit but this may result from the file getting closed10:32
psurbhiexactly10:32
psurbhiin case of lucid10:32
psurbhithis is what i feel10:32
psurbhi:)10:32
psurbhiwhere as in upstream, irrespective of close, if O_SYNC is used, then COMMIT will happen10:33
smbOk, I see your point now10:34
psurbhiok, great :) thanks !!10:34
smbpsurbhi, Though I think that leads us to two issues10:35
smbFirst, in lucid there might be a general problem of having not all the writes followed by a commit10:35
psurbhiyessss10:35
psurbhi:)10:35
psurbhiin lucid fsync() too would never gurantee a COMMIT10:36
psurbhiunless wbc->reclaim is set to 110:36
smbBut secondly and this would be an upstream problem still, is that O_SYNC should give nfs2 behavior, which means all the writes should use writes with NFS_FILE__SYNC as a flg10:36
psurbhiok, on this one i differ10:36
psurbhibecause of what happens eventually to the data10:37
psurbhiand by nfs rfc10:37
psurbhiso that the client should be free to send whatever it wants to get the data to the disk10:37
psurbhicould be through WRITE with stable=FILE_SYNC or with COMMIT10:37
smbThis is not about the data it is just : "ll requests will be NFS_FILE_SYNC requests"10:37
smball10:37
psurbhiwhich will be the data+meta data10:37
psurbhiwhich will happen with the COMMIT10:37
psurbhismb, correct10:38
psurbhiand this is what i felt at first too10:38
psurbhibut then decided against it because of the end result10:38
smbIF all requests (including the write) are flagged with sync, you do not need the commit10:38
psurbhionly write needs to flagged with SYNC10:39
psurbhiO_SYNC gurantees that data is backed to the stable storage10:39
psurbhihow the client achieves it 10:39
psurbhishould not matter10:39
psurbhibut i could be wrong here... maybe the semantics of the client matter 10:40
psurbhii am not sure10:40
psurbhibut to me really since the data gets backed up10:40
psurbhiO_SYNC from the applications perspective is achieved10:40
apwpsurbhi, yeah but that ignores the specific paragraph in the manual page which modified the behaviour ... right or wrong people should be able to assume the documented behaviour10:41
psurbhior it could be a documentation bug10:42
psurbhiapw, which man page is this?10:43
apwpsurbhi, yeah it could, but advertised behaviour is often hard to change, even if it was a stupid thing to say originally :)10:43
psurbhiagreed10:43
psurbhiwhich man page is this really?10:43
* apw loses it, hang on10:43
psurbhialso, i wonder why an application should look at the rpc flags? rather than the behavior?10:44
smbapw, I found that on http://www.faqs.org/docs/Linux-HOWTO/NFS-HOWTO.html#MOUNTOPTIONS10:46
psurbhismb, ok10:46
smbNot sure how official that is, but it may be a place the bug reporters looked at10:46
psurbhiapw, smb, see you around then! 10:52
psurbhio/10:52
apwpsurbhi, sorry chatting about the issue on mumble10:53
psurbhiok10:53
apwyou are of course welcome10:58
_rubenhowdy, is there an "easy" way to capture kernel panics, as they tend to scroll off screen 11:32
herton_ruben: there are some ways to capture crashes, a classic way is using serial console if you have a serial port on the machine11:44
hertonfor serial console, on the machine you want to capture the crash, you enable serial console with:11:45
_rubenits a vm (vmware esxi), so a virtual serial cable might be an option11:45
hertonconsole=tty console=ttyS011:45
hertonah ok, so you can try this way, enable serial console on the guest, and then attach a minicom etc. on capture machine/host11:46
hertonprobably for vmware the setup is similar as 'Serial Console in VirtualBox' listed here: https://wiki.ubuntu.com/Kernel/KernelDebuggingTricks11:48
hertonyou may want to check that out11:48
_rubenseems i can bind a serial port to a ip:port in esxi11:50
_rubenif only it'd work11:51
* apw wanders to find a monitor ...12:05
_rubenah nice .. got it to work and caught the oops12:12
_rubenwonder if this a bird or kernel issue : http://pastebin.ubuntu.com/564390/12:13
_rubeni'd be inclined to think kernel, since quagga causes similar crashes12:15
_rubenhm, this one doesn't even mention bird: http://pastebin.ubuntu.com/564402/12:30
_rubenand then there's http://pastebin.ubuntu.com/564405/ .. everything's ipv6 related, but i dont see much (other) common factors12:41
herton_ruben: not much ideas on this, the kernel shouldn't oops, I'm downloading the debugging symbols from this kernel to check more13:01
herton(the ddeb package)13:02
_rubenherton: the oopses happen within a minute after i enable ospf in bird6 .. since ipv6 support is fairly new in bird, it could very well be problem with bird(6) .. but even then, the kernel should be robust enough i'd say to handle userland "misbehaviour"13:08
herton_ruben: meanwhile, you can try boot with slub_debug kernel parameter and test again, see if you get a report/different trace from slub, just to check if isn't some sort of memory corruption (double kfree, use after free, etc.) which makes code crash later, and different stack traces13:09
_rubenherton: let me try that13:13
=== artir is now known as afk|artir
_rubenherton: wow .. adding that option made it crash before i had a change to log in13:15
_rubenhm, that was an ipsec related one13:16
herton_ruben: did you got the oops/trace of this crash? probably is what is causing the corruption/bug13:17
_rubenah, that's quite likely actually .. part my ipv6 stuff runs over an ipsec tunnel with ipv4 on the outside and ipv6 on the inside .. and using the klips stack at that, let's try it with netkey .. and yeah, i got the oops, will pastebin it in a sec13:19
_rubenhttp://pastebin.ubuntu.com/564425/13:20
herton_ruben: most likely ipsec module is broken, it isn't stock in the kernel, do you know where you got it from?13:32
=== afk|artir is now known as artir
hertonI went to check but ipsec isn't on debug package/kernel, so should be a external built module13:33
_rubenherton: it's part of openswan .. and there ipv6 is quite "new" as well .. i'll take it up with them .. currently running with netkey stack and so far no problems (but also no full functionality yet, config issues)13:37
_rubenherton: thanks for helping so far tho13:37
herton_ruben: no problem. and indeed then should likely to be a bug in openswan13:40
_rubennow to figure out why this isn't working with the netkey stack .. grr13:59
=== diwic is now known as diwic_afk
nigelbapw: poke? :)14:44
=== sconklin-gone is now known as sconklin
nigelbI'm looking for volunteers for a ubuntu developer week session :D14:45
=== herton is now known as herton_lunch
=== diwic_afk is now known as diwic
=== bjf[afk] is now known as bjf
bjf##15:27
bjf## Ubuntu Kernel Team Meeting - Today @ 17:00 UTC - #ubuntu-meeting15:27
bjf##      agenda: https://wiki.ubuntu.com/KernelTeam/Meeting15:27
bjf##15:27
=== herton_lunch is now known as herton
=== diwic is now known as diwic_afk
=== artir is now known as afk|artir
Gartralhello, I see a fix was posted for Gobi2k 3g radios in Kernel, (https://bugs.launchpad.net/ubuntu/+source/linux/+bug/554099?comments=all) but I can't use that Kernel due to a TPM-locked Kernel architecture.. and I was hoping the needed driver was available as a Module.. my other problem is I can't compile the module myself as until i fix 3g in ubuntu, my computer won't have internet.16:46
ubot2Launchpad bug 554099 in linux "Qualcomm Gobi 2000 3G (gobi_loader/qcserial) broken" [High,Fix released]16:46
bjf##16:59
bjf## Meeting starting now16:59
bjf##16:59
smbbjf, not yet17:00
JFobjf, I am here btw :)17:00
smbbjf, You may rush the server team out17:00
Gartralhello, I see a fix was posted for Gobi2k 3g radios in Kernel, (https://bugs.launchpad.net/ubuntu/+source/linux/+bug/554099?comments=all) but I can't use that Kernel due to a TPM-locked Kernel architecture.. and I was hoping the needed driver was available as a Module.. my other problem is I can't compile the module myself as until i fix 3g in ubuntu, my computer won't have internet.17:02
ubot2Launchpad bug 554099 in linux "Qualcomm Gobi 2000 3G (gobi_loader/qcserial) broken" [High,Fix released]17:02
=== ogra is now known as Guest60731
Gartralhello, I see a fix was posted for Gobi2k 3g radios in Kernel, (https://bugs.launchpad.net/ubuntu/+source/linux/+bug/554099?comments=all) but I can't use that Kernel due to a TPM-locked Kernel architecture.. and I was hoping the needed driver was available as a Module.. my other problem is I can't compile the module myself as until i fix 3g in ubuntu, my computer won't have internet.17:38
ubot2Launchpad bug 554099 in linux "Qualcomm Gobi 2000 3G (gobi_loader/qcserial) broken" [High,Fix released]17:38
=== ogra_ is now known as ogra__
=== ogra__ is now known as ogra_
smbGartral, This bug was there to track that there was a) no gobi_loader (program to load the firmware) and for Lucid the driver itself did not have support for those newer modems. So fix here means that for Lucid this was added to a backports-modules-wwan package and Maverick got a gobi_loader package. So first question would be on which release you are running?17:42
smbActually the last status updates in that bug were caused by the upstream bug being closed as fixed in 2.6.35-rc117:45
apwJFo, hey ... about ?17:46
JFoapw, yeah mostly17:46
JFostill suffering a bit of a headache17:47
apwwe haven't talked for a while, probabally about time we did17:47
JFonot as bad as it was last night17:47
apwnasty17:47
JFok, let me get my headset... one sec.17:47
Gartralsmb: 10.10 I stopped keeping track of the names17:53
Gartraland I have Gobi_loader but the card won't connect, it Sees Verizon Wireless, but the logs keep saying there's no carrier17:54
smbGartral, Ok, that was Maverick. So in that the kernel driver should be ok17:54
smbah ok17:54
Gartralsmb: i'm not on the Ubuntu Kernel either, I'm on a chrome kernel.. as that's the only thing this hardware boots17:54
Gartralwhich, should work, as it does in ChromeOS17:55
smbCannot speak from first hand experinece but it felt like firmware issues were quite a source of trouble17:55
=== bjf changed the topic of #ubuntu-kernel to: Home: https://wiki.ubuntu.com/Kernel/ || Natty Kernel Version: 2.6.38 || Ubuntu Kernel Team Meeting - February-15 - 17:00 UTC || If you have a question just ask, and do wait around for an answer!
niemeyerkees: About the issue we explored the other day: https://groups.google.com/forum/?pli=1#!topic/linux.kernel/MDIzfQMT3zU17:57
smbI believe to have it available as a modem would be a sign that the kernel driver is supporting it. But then every provider seemed to have slightly different firmware files. Which one needs to get from the right provider.17:57
smbI am afraid I would not know more to help. But the bug report definitely was not concerned with more than to make the modem detected by the kernel driver, not specific connection issues,18:00
keesniemeyer: cool18:01
=== artir is now known as afk|artir
=== sforshee is now known as sforshee-lunch
JFo<- food. hopefully that will help the head a bit. biab18:15
=== afk|artir is now known as artir
=== artir is now known as afk|artir
=== sforshee-lunch is now known as sforshee
=== afk|artir is now known as artir
=== ogra_ is now known as ogra
=== niemeyer_ is now known as niemeyer
=== Edgan_ is now known as Edgan
=== Quintasan_ is now known as Quintasan
* jjohansen -> lunch20:41
=== diwic_afk is now known as diwic
seidosi'm trying to install an older kernel through the kernel-ppa but not sure what package to install after adding the ppa.  any ideas?21:16
GrueMasterSo I see an updated kernel for dove in lucid and maverick, but no notification (saw it on the kernel-meeting mintutes).  It appears to be a security update, but I'm not sure.  Does it need verification?  There are no tags, and no one on my team was subscribed.21:32
apwsconklin, ^^21:36
bjfGrueMaster, we'll try to send out email when the pocket-copy to -proposed happens, at least after we know it's happened21:37
brycehJFo, bug #714719 looks to be another kernel drm bug.  There's a kernel patch that needs tested.21:37
sconklinGrueMaster, apw: I don't know, Tim produced that kernel, and he's out today.21:37
ubot2Launchpad bug 714719 in xserver-xorg-video-intel "[i915gm] GPU lockup (ESR: 0x00000001 IPEHR: 0x02000004)" [High,Confirmed] https://launchpad.net/bugs/71471921:37
JFobryceh, thanks :)21:37
sconklinI meant I don;t know whether verification is required. and what bjf said21:38
brycehJFo, next action for that bug is probably to roll a kernel .deb with that patch for the user to test, but I'll leave it in your capable hands here out21:38
GrueMasterbjf: It sat in proposed since 2/4.21:38
JFok21:38
bjfGrueMaster, you are correct21:39
GrueMasterAll I ask is for more timely notification.  For some reason it never made the maverick-changes or lucid-changes mailing lists.21:40
bjfGrueMaster, we are not expecting you to do anything with it at this point, though I suppose a boot test would be nice21:41
bjfGrueMaster, because these are happening as a pocket copy from a PPA to -proposed, i'm assuming this is bypassing the process that sends email to *-changes21:41
GrueMasterI guess I need to know what to look for when I do run across these to know I can ignore them.21:42
GrueMasterOtherwise I get blindsided, which is very disruptive.21:43
bjfGrueMaster, we'll work on it21:43
GrueMaster:)21:43
keesGrueMaster: stuff in -proposed isn't announced to -changes because it isn't considered "published" yet.21:44
GrueMasterThis confuses me then, as I get updates for omap/omap4 via that mailing list.21:45
apwJFo, bryceh got that one will do something tommorrow21:53
brycehJFo, apw, the good news is as I'm grinding through all these gpu lockup bugs, I'm having decent luck identifying dupes.  I think among these scores of bug reports there's only maybe 4-6 'real' bugs21:55
brycehapw, still finding tons for that vesafb issue; bunch filed against maverick too21:55
JFobryceh, that is a bit of good news :)21:56
apwbryceh, sound good, sub me to them all and get jfo to put them on the list22:04
apwand i'll spin them all tommorrow22:05
JFoyep yep22:07
brycehapw, will do22:08
keesGrueMaster: do you run the q-r-t tests when doing kernel testing? You might want to compare notes with hggdh22:11
GrueMasterkees: QRT?  give me a hint (or a link).22:19
keesGrueMaster: one sec22:21
keesGrueMaster: I find https://wiki.ubuntu.com/KernelTeam/StableKernelMaintenance that mentions it. though there are more scripts.22:21
GrueMasterI did find lp:qa-regression-testing.  Is that the same?22:26
keesGrueMaster: yup.22:29
GrueMasterOk.  Pulling.  Thanks.22:30
GrueMasterWe'll see how much of these work on armel.22:30
keesGrueMaster: it should work; I designed them to work. :) usually test-kernel*.py gets run, excepting -hardening, since that's for future work. and the aslr may take forever on arm, so you might want to skip that too.22:34
GrueMasterThese platforms sit idle, so they can churn until they die.22:35
GrueMasterCurrent platforms can run overnight or on the weekend if needed.22:35
GrueMasterMy goal is to have as much automated tests running as possible during down time (i.e. nights & weekends).22:38
keesGrueMaster: cool22:42
GrueMasterOnly problem so far is my lack of time to learn python.  I'm also frustrated that my son snagged my only python book.22:42
GrueMaster(kids - sheesh).22:43
ikepanhcbjf: sconklin: hi, do you recall the email I send ago about hardy netbook-lpia branch? anything suggested?22:44
ikepanhcs/ago//22:44
bjfikepanhc, did you send it to the mailing list or direct to us ?22:44
sconklinikepanhc: no, when did you send it?22:45
ikepanhcbjf: direct to you22:45
ikepanhcbjf: about two weeks ago22:45
ikepanhcsconklin: ^^22:45
sconklinI'm looking for it - I don't see it in my inbox22:46
ikepanhcsconklin: ok, I will resend it :)22:46
bjfikepanhc, i see one from 10/15 of last year22:46
ikepanhcweird....22:47
ikepanhcok, resent22:47
sconklinI got it22:49
bjfikepanhc, i got it as well22:49
ikepanhc:)22:49
ikepanhcsounds like smtp blocks me :(22:50
bjfikepanhc, i'm cloning it now22:53
ikepanhcbjf: thanks22:54
sconklinikepanhc: I'm about to leave for the day - I'll look tomorrow unless Brad has it covered22:56
ikepanhcsconklin: ok, thanks22:56
bjfikepanhc, i should be able to get it reviewed today22:56
ikepanhc:)22:57
=== sconklin is now known as sconklin-gone
brycehJFo, btw here's a list of the GPU lockup bugs on my radar - http://tinyurl.com/4t7gtyz23:09
brycehJFo, in case you want to pre-emptively sub apw to any of them23:09
brycehJFo, all the ESR: 0x00000001 ones I'm betting to be dupes but don't have evidence of that yet23:10
JFook23:12
JFoI'll have a look at them :)23:12

Generated by irclog2html.py 2.7 by Marius Gedminas - find it at mg.pov.lt!