<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0" xmlns:osnews="http://www.osnews.com/rss2#">
	<channel>
		<title>OSNews: </title>
		<link>http://www.osnews.com/story/26210/Linux_3_5_released</link>
		<description>Exploring the Future of Computing</description>
		<language>en-us</language>
		<copyright>Copyright 2001-2013, David Adams</copyright>
		<webMaster>adam+nospam@osnews.com</webMaster>
		<lastBuildDate>Wed, 19 Jun 2013 15:19:00 GMT</lastBuildDate>
		<image>
			<url>http://www.osnews.com/images/osnews.gif</url>
			<title>OSNews.com</title>
			<link>http://www.osnews.com</link>
		</image>
		<item>
			<title>Wake Locks</title>
			<link>http://www.osnews.com/thread?527753</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?527753</guid>
			<description>Here's a description of the controversial wake locks being merged from android.<br />
<br />
<a href="http://lwn.net/images/pdf/suspend_blockers.pdf" rel="nofollow">http://lwn.net/images/pdf/suspend_blockers.pdf</a><br />
<br />
My somewhat disconnected opinion is that the overall design seems to be a kludge. but the link apparently mentions google's G1 reference hardware had inadequate power management functionality which must have influenced their design.</description>
			<pubDate>Sun, 22 Jul 2012 20:20:00 GMT</pubDate>
			<author>donotreply@osnews.com (Alfman)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>Comment by orestes</title>
			<link>http://www.osnews.com/thread?527761</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?527761</guid>
			<description>Looks like some seriously nice performance boosts for the open source radeon drivers</description>
			<pubDate>Sun, 22 Jul 2012 21:27:00 GMT</pubDate>
			<author>donotreply@osnews.com (orestes)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>uprobes</title>
			<link>http://www.osnews.com/thread?527775</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?527775</guid>
			<description>uprobes look handy for testing application performance.</description>
			<pubDate>Sun, 22 Jul 2012 23:11:00 GMT</pubDate>
			<author>donotreply@osnews.com (ideasman42)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: uprobes</title>
			<link>http://www.osnews.com/thread?527780</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?527780</guid>
			<description>That's what she said!<br />
<br />
(sorry. couldn't help it.)</description>
			<pubDate>Mon, 23 Jul 2012 01:38:00 GMT</pubDate>
			<author>donotreply@osnews.com (MechaShiva)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: Wake Locks</title>
			<link>http://www.osnews.com/thread?527791</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?527791</guid>
			<description><div class="cquote">My somewhat disconnected opinion is that the overall design seems to be a kludge </div><br />
<br />
In other words, a perfect fit for the Linux kernel <img src="/images/emo/tongue.gif" alt=";)" /></description>
			<pubDate>Mon, 23 Jul 2012 03:52:00 GMT</pubDate>
			<author>donotreply@osnews.com (Soulbender)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>Android-style opportunistic suspend</title>
			<link>http://www.osnews.com/thread?527793</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?527793</guid>
			<description>&quot;Android-style opportunistic suspend&quot;<br />
This looks interesting, anyone care to explain it in layman's terms?</description>
			<pubDate>Mon, 23 Jul 2012 04:26:00 GMT</pubDate>
			<author>donotreply@osnews.com (sb56637)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: Android-style opportunistic suspend</title>
			<link>http://www.osnews.com/thread?527795</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?527795</guid>
			<description>Tux can now go to bed more often, saving more energy for eventual world domination?<br />
 <br />
 Is that ok?Edited 2012-07-23 04:31 UTC</description>
			<pubDate>Mon, 23 Jul 2012 04:31:00 GMT</pubDate>
			<author>donotreply@osnews.com (Elv13)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[2]: Wake Locks</title>
			<link>http://www.osnews.com/thread?527796</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?527796</guid>
			<description>Well, we know that there was a lot of pressure to merge google's drivers, which are incompatible without these new wake locks, and I suspect that's the prime reason these are being pushed into mainline.<br />
<br />
I dislike that it's a system wide lock, it's a step back from the fine grained sleep states already supported by linux. It also adds a tight coupling between userspace and kernel. Now ordinary user space apps like gmail and google maps on android are responsible for system-wide power management, which seems silly to me.<br />
<br />
Whatever the PM problems were with google's reference hardware, they should have fixed the hardware instead of adding these crazy wake locks.</description>
			<pubDate>Mon, 23 Jul 2012 04:38:00 GMT</pubDate>
			<author>donotreply@osnews.com (Alfman)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: Android-style opportunistic suspend</title>
			<link>http://www.osnews.com/thread?527797</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?527797</guid>
			<description>sb56637,<br />
<br />
As I understand it, on a very general level they've added a new synchronisation lock in the kernel, which is accessed directly by userspace applications to block sleep states. Once no userspace applications hold a lock, the entire system immediately enters a sleep state. These transitions occur very frequently as one receives input.<br />
<br />
<br />
The thing about the google G1 hardware was that it only supported a system-wide sleep state, not per-device, which is why google built that into android. But most hardware can put individual components to sleep and wake them up individually on demand, and I argue is better than a system wide sleep. Someone please correct me if I'm wrong, but I think if any android application is using one device with a wake lock, then all active yet idle devices on the system remain awake during that interval.</description>
			<pubDate>Mon, 23 Jul 2012 04:59:00 GMT</pubDate>
			<author>donotreply@osnews.com (Alfman)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: Wake Locks</title>
			<link>http://www.osnews.com/thread?527798</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?527798</guid>
			<description>AFAIK the original controversy was that the Linux devs thought Android's suspend mechanism (suspend blockers) was too aggressive and therefore the Linux devs instead created 'autosleep' and 'wake locks' which offers a similar functionality but in a more flexible(?) way and are hoping that the Android devs will use these features instead of suspend blockers, they've also made the API mimic the suspend blocker API so as to make it as easy as possible for the Android devs to pick up.</description>
			<pubDate>Mon, 23 Jul 2012 05:14:00 GMT</pubDate>
			<author>donotreply@osnews.com (Valhalla)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[2]: Wake Locks</title>
			<link>http://www.osnews.com/thread?527799</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?527799</guid>
			<description>I'd like somebody to explain what the differences are between androids mechanisms and what's been accepted into mainline, if anyone here knows...?</description>
			<pubDate>Mon, 23 Jul 2012 05:18:00 GMT</pubDate>
			<author>donotreply@osnews.com (Alfman)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[3]: Wake Locks</title>
			<link>http://www.osnews.com/thread?527804</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?527804</guid>
			<description>Perhaps this article sheds some light on it:<br />
 <br />
 <a href="https://lwn.net/Articles/479841/" rel="nofollow">https://lwn.net/Articles/479841/</a><br />
 <br />
 Also, here is technical background on the 'suspend blocker' controversy: (very technical, kernel dev-style)<br />
 <br />
 <a href="https://lwn.net/images/pdf/suspend_blockers.pdf" rel="nofollow">https://lwn.net/images/pdf/suspend_blockers.pdf</a><br />
<br />
edit: nvm the second one, it's what you linked to in the first postEdited 2012-07-23 06:24 UTC</description>
			<pubDate>Mon, 23 Jul 2012 06:22:00 GMT</pubDate>
			<author>donotreply@osnews.com (Valhalla)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>OT: why sid still on 3.2?</title>
			<link>http://www.osnews.com/thread?527806</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?527806</guid>
			<description>Anyone knows why debian unstable (which I'm running) is still on 3.2?</description>
			<pubDate>Mon, 23 Jul 2012 06:45:00 GMT</pubDate>
			<author>donotreply@osnews.com (r0b0)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: Wake Locks</title>
			<link>http://www.osnews.com/thread?527810</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?527810</guid>
			<description>Not exactly. This is what got merged in: <a href="https://lwn.net/Articles/479841/" rel="nofollow">https://lwn.net/Articles/479841/</a>.<br />
It's main purpose is to mimic wakelocks using existing kernel machinery in quest for running Android userland on stock Linux kernel and keep changes in drivers minimal.</description>
			<pubDate>Mon, 23 Jul 2012 07:11:00 GMT</pubDate>
			<author>donotreply@osnews.com (dsmogor)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[2]: Wake Locks</title>
			<link>http://www.osnews.com/thread?527813</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?527813</guid>
			<description>I know it was meant funny, but this case proves otherwise. Wakelock have not yet found its place in the kernel despite huge pressure.</description>
			<pubDate>Mon, 23 Jul 2012 07:17:00 GMT</pubDate>
			<author>donotreply@osnews.com (dsmogor)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: OT: why sid still on 3.2?</title>
			<link>http://www.osnews.com/thread?527842</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?527842</guid>
			<description>I think because Debian is working on making a release ? They are (almost) in freeze ?</description>
			<pubDate>Mon, 23 Jul 2012 12:56:00 GMT</pubDate>
			<author>donotreply@osnews.com (Lennie)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: OT: why sid still on 3.2?</title>
			<link>http://www.osnews.com/thread?527873</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?527873</guid>
			<description>If you want a newer kernel added to SID, just add the repos from aptosid-kernel. Then you get new kernels more often. And totally compatible with SID.</description>
			<pubDate>Mon, 23 Jul 2012 15:06:00 GMT</pubDate>
			<author>donotreply@osnews.com (judgen)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[2]: Android-style opportunistic suspend</title>
			<link>http://www.osnews.com/thread?527912</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?527912</guid>
			<description>Thanks for the explanation!</description>
			<pubDate>Mon, 23 Jul 2012 19:30:00 GMT</pubDate>
			<author>donotreply@osnews.com (sb56637)</author>
			<category>Comments</category>
		</item>
	</channel>
</rss>
