<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>change log for rtems (2010-06-17)</title>
</head>
<body text='#000000' bgcolor='#ffffff'>
<a name='cs1'></a>
<table border='0' cellspacing='0' cellpadding='5' width='100%' bgcolor='#eeeeee'>
<tr><td colspan='3' bgcolor='#dddddd'>
 <font color='#bb2222'><strong>ccj</strong></font>
 <font color='#225522'><em>(on branch rtems-4-10-branch)</em></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2010-06-17      Chris Johns <chrisj@rtems.org>

        libfs/src/rfs/rtems-rfs-bitmaps.h,
        libfs/src/rfs/rtems-rfs-block-pos.h,
        libfs/src/rfs/rtems-rfs-block.h: PR 1556. Struct clean up.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/ChangeLog.diff?r1=text&tr1=1.2346.2.35&r2=text&tr2=1.2346.2.36&diff_format=h">M</a></td><td width='1%'>1.2346.2.36</td><td width='100%'>cpukit/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libfs/src/rfs/rtems-rfs-bitmaps.h.diff?r1=text&tr1=1.1.2.1&r2=text&tr2=1.1.2.2&diff_format=h">M</a></td><td width='1%'>1.1.2.2</td><td width='100%'>cpukit/libfs/src/rfs/rtems-rfs-bitmaps.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libfs/src/rfs/rtems-rfs-block-pos.h.diff?r1=text&tr1=1.1.2.2&r2=text&tr2=1.1.2.3&diff_format=h">M</a></td><td width='1%'>1.1.2.3</td><td width='100%'>cpukit/libfs/src/rfs/rtems-rfs-block-pos.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libfs/src/rfs/rtems-rfs-block.h.diff?r1=text&tr1=1.1.2.1&r2=text&tr2=1.1.2.2&diff_format=h">M</a></td><td width='1%'>1.1.2.2</td><td width='100%'>cpukit/libfs/src/rfs/rtems-rfs-block.h</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/cpukit/ChangeLog:1.2346.2.35 rtems/cpukit/ChangeLog:1.2346.2.36
--- rtems/cpukit/ChangeLog:1.2346.2.35  Wed Jun 16 22:57:16 2010
+++ rtems/cpukit/ChangeLog      Wed Jun 16 23:38:28 2010
</font><font color='#997700'>@@ -1,3 +1,9 @@
</font><font color='#000088'>+2010-06-17    Chris Johns <chrisj@rtems.org>
+
+       * libfs/src/rfs/rtems-rfs-bitmaps.h,
+       libfs/src/rfs/rtems-rfs-block-pos.h,
+       libfs/src/rfs/rtems-rfs-block.h: PR 1556. Struct clean up.
+
</font> 2010-06-17        Ralf Corsépius <ralf.corsepius@rtems.org>
 
        * libfs/src/rfs/rtems-rfs-file-system.h: Revert previous change.

<font color='#006600'>diff -u rtems/cpukit/libfs/src/rfs/rtems-rfs-bitmaps.h:1.1.2.1 rtems/cpukit/libfs/src/rfs/rtems-rfs-bitmaps.h:1.1.2.2
--- rtems/cpukit/libfs/src/rfs/rtems-rfs-bitmaps.h:1.1.2.1      Wed Jun 16 09:40:49 2010
+++ rtems/cpukit/libfs/src/rfs/rtems-rfs-bitmaps.h      Wed Jun 16 23:38:29 2010
</font><font color='#997700'>@@ -99,7 +99,7 @@
</font> /**
  * The bitmap control is a simple way to manage the various parts of a bitmap.
  */
<font color='#880000'>-typedef struct _rtems_rfs_bitmap_control
</font><font color='#000088'>+typedef struct rtems_rfs_bitmap_control_s
</font> {
   rtems_rfs_buffer_handle* buffer;      //< Handle the to buffer with the bit
                                         //map.

<font color='#006600'>diff -u rtems/cpukit/libfs/src/rfs/rtems-rfs-block-pos.h:1.1.2.2 rtems/cpukit/libfs/src/rfs/rtems-rfs-block-pos.h:1.1.2.3
--- rtems/cpukit/libfs/src/rfs/rtems-rfs-block-pos.h:1.1.2.2    Wed Jun 16 09:40:50 2010
+++ rtems/cpukit/libfs/src/rfs/rtems-rfs-block-pos.h    Wed Jun 16 23:38:29 2010
</font><font color='#997700'>@@ -47,7 +47,7 @@
</font>  * block field can be used hold a block number for the position as a look up
  * cache.
  */
<font color='#880000'>-typedef struct _rtems_rfs_block_pos
</font><font color='#000088'>+typedef struct rtems_rfs_block_pos_s
</font> {
   /**
    * The block index in the map. Range is from 0 to the maps block count minus
<font color='#997700'>@@ -110,8 +110,8 @@
</font>  * @param bpos Pointer to the block position to fill in.
  * @return rtems_rfs_pos The absolute offset.
  */
<font color='#880000'>-rtems_rfs_pos rtems_rfs_block_get_pos (rtems_rfs_file_system*  fs,
-                                       rtems_rfs_block_pos*    bpos);
</font><font color='#000088'>+rtems_rfs_pos rtems_rfs_block_get_pos (rtems_rfs_file_system* fs,
+                                       rtems_rfs_block_pos*   bpos);
</font> 
 /**
  * Add the relative position to the block position. The relative position is
<font color='#997700'>@@ -136,7 +136,7 @@
</font>  * A block size is the number of blocks less one plus the offset where the
  * offset must be less than the block size.
  */
<font color='#880000'>-typedef struct _rtems_rfs_block_size
</font><font color='#000088'>+typedef struct rtems_rfs_block_size_s
</font> {
   /**
    * The count of blocks in a map. A 0 means no blocks and a zero length and

<font color='#006600'>diff -u rtems/cpukit/libfs/src/rfs/rtems-rfs-block.h:1.1.2.1 rtems/cpukit/libfs/src/rfs/rtems-rfs-block.h:1.1.2.2
--- rtems/cpukit/libfs/src/rfs/rtems-rfs-block.h:1.1.2.1        Sat Jun 12 00:19:11 2010
+++ rtems/cpukit/libfs/src/rfs/rtems-rfs-block.h        Wed Jun 16 23:38:29 2010
</font><font color='#997700'>@@ -86,7 +86,7 @@
</font>  *  @li 2,684,354,560 bytes for a 2048 byte block size, and
  *  @li 21,474,836,480 bytes for a 4096 byte block size.
  */
<font color='#880000'>-typedef struct rtems_rfs_block_map_t
</font><font color='#000088'>+typedef struct rtems_rfs_block_map_s
</font> {
   /**
    * Is the map dirty ?
</pre>
<p> </p>

<p>--<br />
<small>Generated by <a href="http://www.codewiz.org/projects/index.html#loginfo">Deluxe Loginfo</a> 2.122 by Bernardo Innocenti <bernie@develer.com></small></p>
</body>
</html>