Displaying 3 results from an estimated 3 matches for "stubmbling".
Did you mean:
stubbing
2007 Oct 08
1
Xen crash
...262fe8>] do_page_fault+0xe48/0x11dc
[<ffffffff80207138>] kmem_cache_free+0x77/0xca
[<ffffffff8025cb6f>] error_exit+0x0/0x6e
We think the whole problem is how the kernel fails to handle resource
cloging (to many interrupts, heavy CPU and memory usage in the defined
zones etc.) from stubmbling on some fuzzy posts on the net, example:
http://article.gmane.org/gmane.comp.emulators.xen.user/26617
Is this problem known to you or new, any ideas on howto resolve it?
Regards,
Nicolas Sahlqvist
CouchSurfing,.com
2007 Oct 08
0
Xen crash
...262fe8>] do_page_fault+0xe48/0x11dc
[<ffffffff80207138>] kmem_cache_free+0x77/0xca
[<ffffffff8025cb6f>] error_exit+0x0/0x6e
We think the whole problem is how the kernel fails to handle resource
cloging (to many interrupts, heavy CPU and memory usage in the defined
zones etc.) from stubmbling on some fuzzy posts on the net, example:
http://article.gmane.org/gmane.comp.emulators.xen.user/26617
Is this problem known to you or new, any ideas on howto resolve it?
Regards,
Nicolas Sahlqvist
CouchSurfing,.com
2009 Jan 14
1
setting header in views?
currently iam using FasterCSV to render csv pages
format.csv do
csv_string = FasterCSV.generate do |csv|
# header row
csv << @query_result[0].keys
@query_result.each do |x|
csv << x.values
end
end
#send it to the browser
send_data csv_string,
:type => ''text/csv;