<feed xmlns='http://www.w3.org/2005/Atom'>
<title>lwn.git/fs/befs/datastream.c, branch docs-4.15</title>
<subtitle>Linux kernel documentation tree maintained by Jonathan Corbet</subtitle>
<id>http://mirrors.hust.edu.cn/git/lwn.git/atom?h=docs-4.15</id>
<link rel='self' href='http://mirrors.hust.edu.cn/git/lwn.git/atom?h=docs-4.15'/>
<link rel='alternate' type='text/html' href='http://mirrors.hust.edu.cn/git/lwn.git/'/>
<updated>2016-12-22T11:25:23+00:00</updated>
<entry>
<title>befs: remove trailing whitespaces</title>
<updated>2016-12-22T11:25:23+00:00</updated>
<author>
<name>Luis de Bethencourt</name>
<email>luisbg@osg.samsung.com</email>
</author>
<published>2016-11-10T11:25:36+00:00</published>
<link rel='alternate' type='text/html' href='http://mirrors.hust.edu.cn/git/lwn.git/commit/?id=e60f749b60979e333764b8e9143aad7a7bdea0fa'/>
<id>urn:sha1:e60f749b60979e333764b8e9143aad7a7bdea0fa</id>
<content type='text'>
Removing all trailing whitespaces in befs.

I was skeptic about tainting the history with this, but whitespace changes
can be ignored by using 'git blame -w' and 'git log -w'.

Signed-off-by: Luis de Bethencourt &lt;luisbg@osg.samsung.com&gt;
</content>
</entry>
<entry>
<title>befs: remove signatures from comments</title>
<updated>2016-12-22T11:25:22+00:00</updated>
<author>
<name>Luis de Bethencourt</name>
<email>luisbg@osg.samsung.com</email>
</author>
<published>2016-08-14T17:41:30+00:00</published>
<link rel='alternate' type='text/html' href='http://mirrors.hust.edu.cn/git/lwn.git/commit/?id=50b00fc468ddf9cb47a00b62c25fcbf86fcce56f'/>
<id>urn:sha1:50b00fc468ddf9cb47a00b62c25fcbf86fcce56f</id>
<content type='text'>
No idea why some comments have signatures. These predate git. Removing them
since they add noise and no information.

Signed-off-by: Luis de Bethencourt &lt;luisbg@osg.samsung.com&gt;
</content>
</entry>
<entry>
<title>befs: befs: fix style issues in datastream.c</title>
<updated>2016-10-08T09:01:36+00:00</updated>
<author>
<name>Luis de Bethencourt</name>
<email>luisbg@osg.samsung.com</email>
</author>
<published>2016-08-13T17:11:21+00:00</published>
<link rel='alternate' type='text/html' href='http://mirrors.hust.edu.cn/git/lwn.git/commit/?id=a17e7d2010b44103e3b8e00d0c8c510606457bc6'/>
<id>urn:sha1:a17e7d2010b44103e3b8e00d0c8c510606457bc6</id>
<content type='text'>
Fixing the following checkpatch.pl errors:

ERROR: "foo * bar" should be "foo *bar"
+                            befs_blocknr_t blockno, befs_block_run * run);

WARNING: Missing a blank line after declarations
+       struct buffer_head *bh;
+       befs_debug(sb, "---&gt; %s length: %llu", __func__, len);

WARNING: Block comments use * on subsequent lines
+       /*
+          Double indir block, plus all the indirect blocks it maps.

(and other instances of these)

Signed-off-by: Luis de Bethencourt &lt;luisbg@osg.samsung.com&gt;
Signed-off-by: Salah Triki &lt;salah.triki@gmail.com&gt;
</content>
</entry>
<entry>
<title>befs: improve documentation in datastream.c</title>
<updated>2016-10-08T09:01:36+00:00</updated>
<author>
<name>Luis de Bethencourt</name>
<email>luisbg@osg.samsung.com</email>
</author>
<published>2016-08-13T17:11:20+00:00</published>
<link rel='alternate' type='text/html' href='http://mirrors.hust.edu.cn/git/lwn.git/commit/?id=a20af5f9eaac083e2865e94f37e47af74d70f187'/>
<id>urn:sha1:a20af5f9eaac083e2865e94f37e47af74d70f187</id>
<content type='text'>
Convert function descriptions to kernel-doc style.

Signed-off-by: Luis de Bethencourt &lt;luisbg@osg.samsung.com&gt;
Signed-off-by: Salah Triki &lt;salah.triki@gmail.com&gt;
</content>
</entry>
<entry>
<title>befs: fix typos in datastream.c</title>
<updated>2016-10-08T09:01:35+00:00</updated>
<author>
<name>Luis de Bethencourt</name>
<email>luisbg@osg.samsung.com</email>
</author>
<published>2016-08-13T17:11:19+00:00</published>
<link rel='alternate' type='text/html' href='http://mirrors.hust.edu.cn/git/lwn.git/commit/?id=d327e612bd1f854f08bc4c419122a41440455cbe'/>
<id>urn:sha1:d327e612bd1f854f08bc4c419122a41440455cbe</id>
<content type='text'>
Signed-off-by: Luis de Bethencourt &lt;luisbg@osg.samsung.com&gt;
Signed-off-by: Salah Triki &lt;salah.triki@gmail.com&gt;
</content>
</entry>
<entry>
<title>fs: befs: remove unnecessary *befs_sb variable</title>
<updated>2016-10-08T09:01:23+00:00</updated>
<author>
<name>Salah Triki</name>
<email>salah.triki@gmail.com</email>
</author>
<published>2016-07-31T20:34:29+00:00</published>
<link rel='alternate' type='text/html' href='http://mirrors.hust.edu.cn/git/lwn.git/commit/?id=f30661035b01910c5da248b6e67fb66182e40f6f'/>
<id>urn:sha1:f30661035b01910c5da248b6e67fb66182e40f6f</id>
<content type='text'>
Remove *befs_sb and just call BEFS_SB(sb) directly, since the returned
value by this function is only used once.

Signed-off-by: Salah Triki &lt;salah.triki@gmail.com&gt;
Acked-by: Luis de Bethencourt &lt;luisbg@osg.samsung.com&gt;
</content>
</entry>
<entry>
<title>fs: befs: Remove useless calls to brelse in befs_find_brun_dblindirect</title>
<updated>2016-10-08T09:01:20+00:00</updated>
<author>
<name>Salah Triki</name>
<email>salah.triki@gmail.com</email>
</author>
<published>2016-07-27T03:11:54+00:00</published>
<link rel='alternate' type='text/html' href='http://mirrors.hust.edu.cn/git/lwn.git/commit/?id=d70ee4f2de3de1f56f7b5d0837ad9d53320cf128'/>
<id>urn:sha1:d70ee4f2de3de1f56f7b5d0837ad9d53320cf128</id>
<content type='text'>
The calls to brelse are useless since dbl_indir_block and indir_block
are NULL.

Signed-off-by: Salah Triki &lt;salah.triki@gmail.com&gt;
Acked-by: Luis de Bethencourt &lt;luisbg@osg.samsung.com&gt;
</content>
</entry>
<entry>
<title>fs: befs: Remove redundant validation from befs_find_brun_direct</title>
<updated>2016-10-08T09:01:19+00:00</updated>
<author>
<name>Salah Triki</name>
<email>salah.triki@gmail.com</email>
</author>
<published>2016-07-27T03:11:52+00:00</published>
<link rel='alternate' type='text/html' href='http://mirrors.hust.edu.cn/git/lwn.git/commit/?id=d84e4a5a09c320e209789d263a26617f6f7324e3'/>
<id>urn:sha1:d84e4a5a09c320e209789d263a26617f6f7324e3</id>
<content type='text'>
The only caller of befs_find_brun_direct is befs_fblock2brun, which
already validates that the block is within the range of direct blocks.
So remove the duplicate validation.

Signed-off-by: Salah Triki &lt;salah.triki@gmail.com&gt;
Acked-by: Luis de Bethencourt &lt;luisbg@osg.samsung.com&gt;
</content>
</entry>
<entry>
<title>befs: make consistent use of befs_error()</title>
<updated>2016-10-08T09:01:16+00:00</updated>
<author>
<name>Luis de Bethencourt</name>
<email>luisbg@osg.samsung.com</email>
</author>
<published>2016-07-03T15:29:44+00:00</published>
<link rel='alternate' type='text/html' href='http://mirrors.hust.edu.cn/git/lwn.git/commit/?id=4c3897cce0774b6196f59f98a44eed7e011db5aa'/>
<id>urn:sha1:4c3897cce0774b6196f59f98a44eed7e011db5aa</id>
<content type='text'>
befs_error() is used in potential errors that could happen in befs to
provide informational log messages. befs_debug() is silent when
CONFIG_BEFS_DEBUG=no, and very verbose when switched on, which is why it is
used for general debugging but not for errors.

Fix a few cases where the befs debug utility usage isn't following the
expected pattern. To make sure we have consistent information in the logs.

Signed-off-by: Luis de Bethencourt &lt;luisbg@osg.samsung.com&gt;
</content>
</entry>
<entry>
<title>fs: befs: replace befs_bread by sb_bread</title>
<updated>2016-10-08T09:01:12+00:00</updated>
<author>
<name>Salah Triki</name>
<email>salah.triki@gmail.com</email>
</author>
<published>2016-07-23T12:36:42+00:00</published>
<link rel='alternate' type='text/html' href='http://mirrors.hust.edu.cn/git/lwn.git/commit/?id=f7f675406be6eb3736a8690217d7b41d60f6a1aa'/>
<id>urn:sha1:f7f675406be6eb3736a8690217d7b41d60f6a1aa</id>
<content type='text'>
Since befs_bread merely calls sb_bread, replace it by sb_bread.

Link: http://lkml.kernel.org/r/1466800258-4542-1-git-send-email-salah.triki@gmail.com
Signed-off-by: Salah Triki &lt;salah.triki@gmail.com&gt;
Acked-by: Luis de Bethencourt &lt;luisbg@osg.samsung.com&gt;
Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;
</content>
</entry>
</feed>
