<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>/net in Linux: project log</title>
	<atom:link href="http://slashnet.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://slashnet.wordpress.com</link>
	<description>A Glendix project</description>
	<lastBuildDate>Sun, 01 Nov 2009 18:12:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='slashnet.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>/net in Linux: project log</title>
		<link>http://slashnet.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://slashnet.wordpress.com/osd.xml" title="/net in Linux: project log" />
	<atom:link rel='hub' href='http://slashnet.wordpress.com/?pushpress=hub'/>
		<item>
		<title>A test script to fetch over HTTP on command-line</title>
		<link>http://slashnet.wordpress.com/2009/04/20/a-test-script-to-fetch-over-http-on-command-line/</link>
		<comments>http://slashnet.wordpress.com/2009/04/20/a-test-script-to-fetch-over-http-on-command-line/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 16:21:01 +0000</pubDate>
		<dc:creator>Rahul Murmuria</dc:creator>
				<category><![CDATA[Glendix]]></category>
		<category><![CDATA[libfs]]></category>
		<category><![CDATA[Linux kernel]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Plan 9 from Bell Labs]]></category>

		<guid isPermaLink="false">http://slashnet.wordpress.com/?p=75</guid>
		<description><![CDATA[I decided to use HTTP Get request as a good test of the /net filesystem&#8217;s first deliverable (once I complete it). I plan to get connect, sendmsg and recvmsg working in order to have this work in Linux. The script just reads and writes to files, and achieves fetching a page over HTTP on Plan [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=slashnet.wordpress.com&amp;blog=7073299&amp;post=75&amp;subd=slashnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I decided to use HTTP Get request as a good test of the /net filesystem&#8217;s first deliverable (once I complete it). I plan to get connect, sendmsg and recvmsg working in order to have this work in Linux. The script just reads and writes to files, and achieves fetching a page over HTTP on Plan 9&#8242;s shell. Even so, simple cat and echo commands sent to the netfs in shell do not work, because when we echo connect &lt;ip&gt;!&lt;port&gt; to the ctl file, and exit to terminal again for next command, the file and the connection get closed. Here&#8217;s the script, that works on Plan 9:</p>
<blockquote><p>#!/bin/rc<br />
server=$1<br />
port=80<br />
clonefile=/net/tcp/clone<br />
netdir=()</p>
<p>fn showme {<br />
while (~ `{cat $netdir/status} Established*) {<br />
line=`{read}<br />
if (! ~ $#line 0)<br />
echo $line<br />
}<br />
exit<br />
}</p>
<p>&lt;[5] $clonefile {<br />
netdir=`{basename -d $clonefile} ^ / ^  `{cat /fd/5}<br />
echo connect $server!$port &gt;$netdir/ctl || exit &#8216;Cannot Connect&#8217;<br />
echo connected to tcp!$server!$port on $netdir<br />
cat $netdir/data | tr -d &#8216;<br />
&#8216; | showme &amp;</p>
<p>while (cmd=`{read}) {<br />
echo $cmd &gt; $netdir/data<br />
}<br />
}</p></blockquote>
<p>To use this script, run it with the server ip as an argument. While using the url will work on Plan 9, I have not implemented DNS for /net on Linux yet, so even after I complete the first deliverable, only IPs will work. After you run the command, enter the request as :<br />
GET / HTTP/1.0<br />
Host: &lt;hostname&gt;</p>
<p>You will see the requested page fetched and displayed on your shell. It will be best to use rc from plan9ports though.</p>
<p>Thank you <a href="http://www.kix.in/" target="_blank">Anant</a> for helping in finishing the above script!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/slashnet.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/slashnet.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/slashnet.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/slashnet.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/slashnet.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/slashnet.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/slashnet.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/slashnet.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/slashnet.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/slashnet.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/slashnet.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/slashnet.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/slashnet.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/slashnet.wordpress.com/75/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=slashnet.wordpress.com&amp;blog=7073299&amp;post=75&amp;subd=slashnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://slashnet.wordpress.com/2009/04/20/a-test-script-to-fetch-over-http-on-command-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a47d45ac82997b49f32a7217d6705ca4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">murmuria</media:title>
		</media:content>
	</item>
		<item>
		<title>Where to hook onto the tcp stack?</title>
		<link>http://slashnet.wordpress.com/2009/04/20/where-to-hook-onto-the-tcp-stack/</link>
		<comments>http://slashnet.wordpress.com/2009/04/20/where-to-hook-onto-the-tcp-stack/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 13:57:57 +0000</pubDate>
		<dc:creator>Rahul Murmuria</dc:creator>
				<category><![CDATA[Glendix]]></category>
		<category><![CDATA[libfs]]></category>
		<category><![CDATA[Linux kernel]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[TCP/IP]]></category>
		<category><![CDATA[vfs]]></category>

		<guid isPermaLink="false">http://slashnet.wordpress.com/?p=71</guid>
		<description><![CDATA[I recently discussed with a diagram, exactly where I plan to hook onto the existing structure in Linux. My plan is to bypass the Socket ioctl and the Socket structure, and plug in directly to the sk structure, which is a common interface to the various transport layer protocols. I plan to write my own [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=slashnet.wordpress.com&amp;blog=7073299&amp;post=71&amp;subd=slashnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I recently discussed <a href="http://slashnet.wordpress.com/2009/03/25/fsnet_create-a-good-plan/">with a diagram</a>, exactly where I plan to hook onto the existing structure in Linux. My plan is to bypass the Socket ioctl and the Socket structure, and plug in directly to the sk structure, which is a common interface to the various transport layer protocols. I plan to write my own connection create and sendpkt functions, which work with the sk structure. Initially I had planned to plug these functions into the .connect , .sendmsg etc. of proto_ops structure, but it seems unnecessary to do that. I now think I&#8217;ll call those functions directly in my FS code, when relevant commands are written to the ctl and data files.</p>
<p>I was recommended to look at <a href="http://ksocket.sourceforge.net/" target="_blank">ksocket</a> by a friend. While the package is looking to provide BSD-style network programming in kernel I cannot hook onto the functions they are hooking on to. ksocket is simply a wrapper on top of the socket structure, and does not help me gain insight on what&#8217;s underneath. My plan currently is to work at a much lower layer than they are doing, even though we are both in kernel-space. I just find it useless overhead to maintain a socket structure, for what I am working to achieve. Doing it my way might be much harder though!</p>
<p>Current issue that needs solving: If I dont have sock-&gt;sk element, because I dont use a socket to represent a connection, but use a folder /net/tcp/n , then how to I associate the sk structure with it? struct file has no sk element like struct socket does&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/slashnet.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/slashnet.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/slashnet.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/slashnet.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/slashnet.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/slashnet.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/slashnet.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/slashnet.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/slashnet.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/slashnet.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/slashnet.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/slashnet.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/slashnet.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/slashnet.wordpress.com/71/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=slashnet.wordpress.com&amp;blog=7073299&amp;post=71&amp;subd=slashnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://slashnet.wordpress.com/2009/04/20/where-to-hook-onto-the-tcp-stack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a47d45ac82997b49f32a7217d6705ca4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">murmuria</media:title>
		</media:content>
	</item>
		<item>
		<title>Basic framework ready!</title>
		<link>http://slashnet.wordpress.com/2009/04/05/basic-framework-ready/</link>
		<comments>http://slashnet.wordpress.com/2009/04/05/basic-framework-ready/#comments</comments>
		<pubDate>Sun, 05 Apr 2009 20:02:37 +0000</pubDate>
		<dc:creator>Rahul Murmuria</dc:creator>
				<category><![CDATA[Glendix]]></category>
		<category><![CDATA[libfs]]></category>
		<category><![CDATA[Linux kernel]]></category>

		<guid isPermaLink="false">http://slashnet.wordpress.com/?p=69</guid>
		<description><![CDATA[Week 9 :- With this revision I have figured out a way to use tcp.c, cs.c, ether.c etc. to do the file-specific processing, while passing only the file structure *filp from a common &#8220;write_file&#8221; function in net.c. The filesystem however now occupies some memory &#8211; TMPSIZE * no_of_files to be precise. I would say this [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=slashnet.wordpress.com&amp;blog=7073299&amp;post=69&amp;subd=slashnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Week 9 :-</p>
<p>With <a href="http://hg.glendix.org/glendix/rev/6fdffc287daf" target="_blank">this revision</a> I have figured out a way to use tcp.c, cs.c, ether.c etc. to do the file-specific processing, while passing only the file structure *filp from a common &#8220;write_file&#8221; function in net.c. The filesystem however now occupies some memory &#8211; TMPSIZE * no_of_files to be precise. I would say this is desirable. I dont know with respect to code, but Plan 9 also seems to behave in the same fashion as far as usability is concerned.</p>
<p>Next, what needs to be done is implement the functions of /net/tcp/clone and the /net/tcp/n/ctl files. Doing these will be enough to test out a simple connection from command-line. Predicted forthcoming issue &#8211;&gt; Plan 9 uses &#8220;connect 192.168.1.8!80&#8243; as the command. ! is a symbol not allowed in bash. I dont know if it will work if I used other shells (or use rc from plan9ports?).</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/slashnet.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/slashnet.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/slashnet.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/slashnet.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/slashnet.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/slashnet.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/slashnet.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/slashnet.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/slashnet.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/slashnet.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/slashnet.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/slashnet.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/slashnet.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/slashnet.wordpress.com/69/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=slashnet.wordpress.com&amp;blog=7073299&amp;post=69&amp;subd=slashnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://slashnet.wordpress.com/2009/04/05/basic-framework-ready/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a47d45ac82997b49f32a7217d6705ca4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">murmuria</media:title>
		</media:content>
	</item>
		<item>
		<title>&#8220;fsnet_create&#8221; a good plan?</title>
		<link>http://slashnet.wordpress.com/2009/03/25/fsnet_create-a-good-plan/</link>
		<comments>http://slashnet.wordpress.com/2009/03/25/fsnet_create-a-good-plan/#comments</comments>
		<pubDate>Thu, 26 Mar 2009 00:08:05 +0000</pubDate>
		<dc:creator>Rahul Murmuria</dc:creator>
				<category><![CDATA[Glendix]]></category>
		<category><![CDATA[libfs]]></category>
		<category><![CDATA[Linux kernel]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[TCP/IP]]></category>
		<category><![CDATA[vfs]]></category>

		<guid isPermaLink="false">http://slashnet.wordpress.com/?p=59</guid>
		<description><![CDATA[Week 8 :- I think I have found my footing. Here is a design diagram. I am considering creating a fsnet which is more or less equivalent to inet &#8211; and perhaps even borrows / wraps some code -  except that it provides functions to the libfs based netfs implementation program. The inet function in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=slashnet.wordpress.com&amp;blog=7073299&amp;post=59&amp;subd=slashnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Week 8 :-</p>
<p>I think I have found my footing. Here is a design diagram. I am considering creating a fsnet which is more or less equivalent to inet &#8211; and perhaps even borrows / wraps some code -  except that it provides functions to the libfs based netfs implementation program.</p>
<p><img class="aligncenter size-full wp-image-58" title="Slashnet Design" src="http://slashnet.files.wordpress.com/2009/03/slashnet.png" alt="Slashnet Design" width="292" height="403" /></p>
<p>The inet function in question can be found at <a href="http://fxr.watson.org/fxr/source/net/ipv4/af_inet.c?v=linux-2.6#L264" target="_blank">net/ipv4/af_inet.c</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/slashnet.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/slashnet.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/slashnet.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/slashnet.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/slashnet.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/slashnet.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/slashnet.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/slashnet.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/slashnet.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/slashnet.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/slashnet.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/slashnet.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/slashnet.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/slashnet.wordpress.com/59/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=slashnet.wordpress.com&amp;blog=7073299&amp;post=59&amp;subd=slashnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://slashnet.wordpress.com/2009/03/25/fsnet_create-a-good-plan/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a47d45ac82997b49f32a7217d6705ca4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">murmuria</media:title>
		</media:content>

		<media:content url="http://slashnet.files.wordpress.com/2009/03/slashnet.png" medium="image">
			<media:title type="html">Slashnet Design</media:title>
		</media:content>
	</item>
		<item>
		<title>Glendix on Routers?</title>
		<link>http://slashnet.wordpress.com/2009/03/19/glendix-on-routers/</link>
		<comments>http://slashnet.wordpress.com/2009/03/19/glendix-on-routers/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 16:07:15 +0000</pubDate>
		<dc:creator>Rahul Murmuria</dc:creator>
				<category><![CDATA[glen-concept]]></category>
		<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://slashnet.wordpress.com/?p=55</guid>
		<description><![CDATA[Glen-concept #1 Glendix for routers? I was poking around for what it would take to get there. I found this. I am basically looking to have a way to do routing using Glendix. You can already do that on any standard Linux using Quagga (see http://www.quagga.net/docs/quagga.html#SEC3 ). They use a traditional dynamic library approach with architecture [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=slashnet.wordpress.com&amp;blog=7073299&amp;post=55&amp;subd=slashnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="text-decoration:underline;">Glen-concept #1<br />
</span></p>
<p>Glendix for routers? I was poking around for what it would take to get there. I found <a href="http://searchenterpriselinux.techtarget.com/tip/1,289483,sid39_gci1102834,00.html" target="_blank">this</a>. I am basically looking to have a way to do routing using Glendix. You can already do that on any standard Linux using Quagga (see <a href="http://www.quagga.net/docs/quagga.html#SEC3" target="_blank">http://www.quagga.net/docs/quagga.html#SEC3</a> ). They use a traditional dynamic library approach with architecture specific code.</p>
<p>I plan to expose the UNIX Kernel Routing Table as a filesystem instead. Then do the routing protocols, and other actions like updating the table from information from other routers, and load-balancing etc from userspace scripts. The advantage is that, we will not need any daemons working directly on top of the kernel. Our simple userspace scripts that do the routing can hack on the, say /net/ether0/route  file.</p>
<p>One of the factors that will excite people will obviously be a awesome infrastructure to test new routing protocols in real networks, without writing complex architecture-specific daemons for GNU Zebra. Plus, I wonder what network mounts of such directories might lead us to achieve?!</p>
<p>UPDATE (May 03, 2009): Further discussion of this idea led to me applying to GSoC 2009 with <a href="http://docs.google.com/Doc?id=dkh4pmc_58hndpt7hd" target="_blank">this proposal</a>. Although the idea was not selected, I got some valuable feedback and the project is still on (probably with a more relaxed timeline, and aligned towards Glendix rather than Plan 9 from Bell Labs).</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/slashnet.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/slashnet.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/slashnet.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/slashnet.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/slashnet.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/slashnet.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/slashnet.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/slashnet.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/slashnet.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/slashnet.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/slashnet.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/slashnet.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/slashnet.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/slashnet.wordpress.com/55/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=slashnet.wordpress.com&amp;blog=7073299&amp;post=55&amp;subd=slashnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://slashnet.wordpress.com/2009/03/19/glendix-on-routers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a47d45ac82997b49f32a7217d6705ca4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">murmuria</media:title>
		</media:content>
	</item>
		<item>
		<title>DNS: A hard to crack nut!</title>
		<link>http://slashnet.wordpress.com/2009/03/05/dns-a-hard-to-crack-nut/</link>
		<comments>http://slashnet.wordpress.com/2009/03/05/dns-a-hard-to-crack-nut/#comments</comments>
		<pubDate>Fri, 06 Mar 2009 04:16:35 +0000</pubDate>
		<dc:creator>Rahul Murmuria</dc:creator>
				<category><![CDATA[Glendix]]></category>
		<category><![CDATA[Linux kernel]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[TCP/IP]]></category>

		<guid isPermaLink="false">http://slashnet.wordpress.com/?p=53</guid>
		<description><![CDATA[Week 6 :- Apparently, Linux kernel does not seem to have a DNS resolver! The fundtion gethostbyname() first checks /etc/hosts and if no entries are found, it makes a direct socket connection with the ip address given in resolv.conf and fetches the DNS resolved ip address! I would do a in-kernel DNS implementation from scratch, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=slashnet.wordpress.com&amp;blog=7073299&amp;post=53&amp;subd=slashnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Week 6 :-</p>
<p>Apparently, Linux kernel does not seem to have a DNS resolver! The fundtion gethostbyname() first checks /etc/hosts and if no entries are found, it makes a direct socket connection with the ip address given in resolv.conf and fetches the DNS resolved ip address!</p>
<p>I would do a in-kernel DNS implementation from scratch, but apparently, there are many issues with it. Its not so easy as it originally seemed! Read <a href="http://lists.apple.com/archives/darwin-kernel/2006/Nov/msg00041.html" target="_blank">this response</a> by a certain Josh Graessley in the MAC OS X community who understands Darwin probably. So did the Linux Kernel Hackers actually chose not to have DNS in-kernel for some real-world reasons?</p>
<p>More information we need, but a change of track in the project is apparent. We have decided to move on to the /net/tcp implementation and work with IPs for now.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/slashnet.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/slashnet.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/slashnet.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/slashnet.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/slashnet.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/slashnet.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/slashnet.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/slashnet.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/slashnet.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/slashnet.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/slashnet.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/slashnet.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/slashnet.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/slashnet.wordpress.com/53/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=slashnet.wordpress.com&amp;blog=7073299&amp;post=53&amp;subd=slashnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://slashnet.wordpress.com/2009/03/05/dns-a-hard-to-crack-nut/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a47d45ac82997b49f32a7217d6705ca4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">murmuria</media:title>
		</media:content>
	</item>
		<item>
		<title>My first /net code commited!</title>
		<link>http://slashnet.wordpress.com/2009/02/23/my-first-net-code-commited/</link>
		<comments>http://slashnet.wordpress.com/2009/02/23/my-first-net-code-commited/#comments</comments>
		<pubDate>Tue, 24 Feb 2009 01:14:02 +0000</pubDate>
		<dc:creator>Rahul Murmuria</dc:creator>
				<category><![CDATA[Glendix]]></category>
		<category><![CDATA[libfs]]></category>
		<category><![CDATA[Linux kernel]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Plan 9 from Bell Labs]]></category>
		<category><![CDATA[vfs]]></category>

		<guid isPermaLink="false">http://slashnet.wordpress.com/?p=45</guid>
		<description><![CDATA[Week 5 :- My first commit into Glendix (and incidentally and surprisingly, the first non-Anant Narayanan commit to the project!). The design for the inode and file creation is much the same as lwnfs. I added the mechanism for read and write of files created in the /net. One of the issues I ran into [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=slashnet.wordpress.com&amp;blog=7073299&amp;post=45&amp;subd=slashnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Week 5 :-</p>
<p>My <a href="http://hg.glendix.org/glendix/rev/92dc24ff2dce" target="_blank">first commit</a> into Glendix (and incidentally and surprisingly, the first non-Anant Narayanan commit to the project!).</p>
<p>The design for the inode and file creation is much the same as lwnfs. I added the mechanism for read and write of files created in the /net. One of the issues I ran into was using the i_private field of the inode to point to the buffer created to store the input content in slashnet_write_file(). See comment at the bottom of this function to know more about this issue.</p>
<p>UPDATE:- Some memory leaks. I forgot to use kfree() after kmalloc(). Gamers will call that n00b error?! lol!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/slashnet.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/slashnet.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/slashnet.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/slashnet.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/slashnet.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/slashnet.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/slashnet.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/slashnet.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/slashnet.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/slashnet.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/slashnet.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/slashnet.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/slashnet.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/slashnet.wordpress.com/45/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=slashnet.wordpress.com&amp;blog=7073299&amp;post=45&amp;subd=slashnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://slashnet.wordpress.com/2009/02/23/my-first-net-code-commited/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a47d45ac82997b49f32a7217d6705ca4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">murmuria</media:title>
		</media:content>
	</item>
		<item>
		<title>Learning to write a Systhetic Filesystem on Linux</title>
		<link>http://slashnet.wordpress.com/2009/02/19/learning-to-write-a-systhetic-filesystem-on-linux/</link>
		<comments>http://slashnet.wordpress.com/2009/02/19/learning-to-write-a-systhetic-filesystem-on-linux/#comments</comments>
		<pubDate>Fri, 20 Feb 2009 01:45:00 +0000</pubDate>
		<dc:creator>Rahul Murmuria</dc:creator>
				<category><![CDATA[Glendix]]></category>
		<category><![CDATA[libfs]]></category>
		<category><![CDATA[Linux kernel]]></category>
		<category><![CDATA[vfs]]></category>

		<guid isPermaLink="false">http://slashnet.wordpress.com/?p=35</guid>
		<description><![CDATA[Week 4:- Before I start with /net, I wanted to try implementing a sample FS. I thank lwn.net for providing that piece of documentation. I implemented the lwnfs.c in my home folder like they mentioned. NOTE:- A patch is needed on newer kernel versions. My Makefile looks something like: ifneq ($(KERNELRELEASE),) obj-m   := lwnfs.o else [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=slashnet.wordpress.com&amp;blog=7073299&amp;post=35&amp;subd=slashnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Week 4:-</p>
<p>Before I start with /net, I wanted to try implementing a sample FS. I thank <a href="http://lwn.net" target="_blank">lwn.net</a> for providing <a href="http://lwn.net/Articles/57369/" target="_blank">that piece of documentation</a>. I implemented the lwnfs.c in my home folder like they mentioned. NOTE:- A <a href="http://lwn.net/Articles/318581/" target="_blank">patch</a> is needed on newer kernel versions.</p>
<p>My Makefile looks something like:</p>
<blockquote><p>ifneq ($(KERNELRELEASE),)<br />
obj-m   := lwnfs.o<br />
else<br />
KDIR    := /lib/modules/$(shell uname -r)/build<br />
PWD     := $(shell pwd)<br />
default:<br />
$(MAKE) -C $(KDIR) SUBDIRS=$(PWD) modules<br />
endif</p></blockquote>
<p>Remember, once the filesystem compiles, you need to mount the fs.<br />
i.e. rahul@Glendix$ mount -t lwnfs none /lwnfs</p>
<p>Cant wait for the day when &#8220;mount -t net none /net&#8221; works!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/slashnet.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/slashnet.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/slashnet.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/slashnet.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/slashnet.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/slashnet.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/slashnet.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/slashnet.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/slashnet.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/slashnet.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/slashnet.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/slashnet.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/slashnet.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/slashnet.wordpress.com/35/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=slashnet.wordpress.com&amp;blog=7073299&amp;post=35&amp;subd=slashnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://slashnet.wordpress.com/2009/02/19/learning-to-write-a-systhetic-filesystem-on-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a47d45ac82997b49f32a7217d6705ca4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">murmuria</media:title>
		</media:content>
	</item>
		<item>
		<title>Discussion on 9Fans</title>
		<link>http://slashnet.wordpress.com/2009/02/13/discussion-on-9fans/</link>
		<comments>http://slashnet.wordpress.com/2009/02/13/discussion-on-9fans/#comments</comments>
		<pubDate>Sat, 14 Feb 2009 01:12:03 +0000</pubDate>
		<dc:creator>Rahul Murmuria</dc:creator>
				<category><![CDATA[Glendix]]></category>
		<category><![CDATA[Plan 9 from Bell Labs]]></category>

		<guid isPermaLink="false">http://slashnet.wordpress.com/?p=19</guid>
		<description><![CDATA[9Fans is the official Plan 9 mailing list. Most of Glendix&#8217;s discussions are done on that channel and it is our contact with the relatively small Plan 9 community. Here&#8217;s link to my Feb 06, 2009 email announcing my /net project among other things: http://9fans.net/archive/2009/02/168 No real comment so far on the idea itself, although [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=slashnet.wordpress.com&amp;blog=7073299&amp;post=19&amp;subd=slashnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>9Fans is the official Plan 9 mailing list. Most of Glendix&#8217;s discussions are done on that channel and it is our contact with the relatively small Plan 9 community.</p>
<p>Here&#8217;s link to my Feb 06, 2009 email announcing my /net project among other things:</p>
<p>http://9fans.net/archive/2009/02/168</p>
<p>No real comment so far on the idea itself, although project Glendix gained another member: J.R. Mauro (a.k.a. thedoctor).</p>
<p>NOTE:- Catch us at #glendix channel on Freenode. We at Glendix like IRC more than mailing lists.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/slashnet.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/slashnet.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/slashnet.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/slashnet.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/slashnet.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/slashnet.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/slashnet.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/slashnet.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/slashnet.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/slashnet.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/slashnet.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/slashnet.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/slashnet.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/slashnet.wordpress.com/19/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=slashnet.wordpress.com&amp;blog=7073299&amp;post=19&amp;subd=slashnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://slashnet.wordpress.com/2009/02/13/discussion-on-9fans/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a47d45ac82997b49f32a7217d6705ca4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">murmuria</media:title>
		</media:content>
	</item>
		<item>
		<title>Plan 9 Cheat Sheet</title>
		<link>http://slashnet.wordpress.com/2009/02/10/plan-9-cheat-sheet/</link>
		<comments>http://slashnet.wordpress.com/2009/02/10/plan-9-cheat-sheet/#comments</comments>
		<pubDate>Wed, 11 Feb 2009 00:50:30 +0000</pubDate>
		<dc:creator>Rahul Murmuria</dc:creator>
				<category><![CDATA[Cheat Sheet]]></category>
		<category><![CDATA[Plan 9 from Bell Labs]]></category>

		<guid isPermaLink="false">http://slashnet.wordpress.com/?p=13</guid>
		<description><![CDATA[This post is a cheat sheet of Plan 9 shell commands, different from Linux. Linux Command  &#8212;-&#62;  Plan 9 equivalent 1) rahul@linux$ find . -name &#8216;cs.c&#8217; -print  &#8212;-&#62;  term% du -a . &#124; grep cs.c Comments: Notice the Plan 9&#8242;s philosophy of using one program for one action? Also, try running &#8220;du -a .&#8221; on [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=slashnet.wordpress.com&amp;blog=7073299&amp;post=13&amp;subd=slashnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This post is a cheat sheet of Plan 9 shell commands, different from Linux.</p>
<p>Linux Command  &#8212;-&gt;  Plan 9 equivalent</p>
<p>1) <strong>rahul@linux$ find . -name &#8216;cs.c&#8217; -print  &#8212;-&gt;  term% du -a . | grep cs.c</strong><br />
Comments: Notice the Plan 9&#8242;s philosophy of using one program for one action?<br />
Also, try running &#8220;du -a .&#8221; on Plan 9, it is so much faster than even &#8220;slocate&#8221; on Linux, let alone &#8220;find . -name&#8221; !!</p>
<p>2) <strong>Ctrl+C exit signal for running scripts  &#8212;-&gt;  &#8220;Delete&#8221; key on the keyboard</strong>.<br />
Comments: Another example of how old UNIX is. They probably had no &#8220;Delete&#8221; key when UNIX was designed, so they used &#8220;Ctrl+C&#8221; which, logically speaking, makes absolutely no sense!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/slashnet.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/slashnet.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/slashnet.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/slashnet.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/slashnet.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/slashnet.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/slashnet.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/slashnet.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/slashnet.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/slashnet.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/slashnet.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/slashnet.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/slashnet.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/slashnet.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=slashnet.wordpress.com&amp;blog=7073299&amp;post=13&amp;subd=slashnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://slashnet.wordpress.com/2009/02/10/plan-9-cheat-sheet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a47d45ac82997b49f32a7217d6705ca4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">murmuria</media:title>
		</media:content>
	</item>
	</channel>
</rss>
