public inbox for linux-xfs@vger.kernel.org
 help / color / mirror / Atom feed
* Cyclic Code?
@ 2012-01-09  6:52 Adil Mujeeb
  2012-01-09 17:40 ` Amit Sahrawat
  0 siblings, 1 reply; 4+ messages in thread
From: Adil Mujeeb @ 2012-01-09  6:52 UTC (permalink / raw)
  To: xfs


[-- Attachment #1.1: Type: text/plain, Size: 784 bytes --]

Hi list,

i am new to XFS.

I was going through XFS code (2.4 based) for study purpose. Its old but
assuming its bit simple as compare to latest one. Moreover the XFS code /
design structure documents available on the internet is 2.4 based.

The following code snippet is not clear to me (seems cyclic):

---------
...
...
#define XFS_IFORK_NEXTENTS(ip,w)        xfs_ifork_nextents(ip,w)
...
xfs_ifork_nextents(xfs_inode_t *ip, int w)
{
        return XFS_IFORK_NEXTENTS(ip, w);
}
...
...
#define XFS_IFORK_NEXTENTS(ip,w)        XFS_CFORK_NEXTENTS(&ip->i_d, w)
...
#define XFS_CFORK_NEXTENTS(dcp,w)            xfs_cfork_nextents(dcp,w)
...
int
xfs_cfork_nextents(xfs_dinode_core_t *dcp, int w)
{
        return XFS_CFORK_NEXTENTS(dcp, w);
}
----

Am i missing something?
Thanks,
Adil

[-- Attachment #1.2: Type: text/html, Size: 1153 bytes --]

[-- Attachment #2: Type: text/plain, Size: 121 bytes --]

_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Cyclic Code?
  2012-01-09  6:52 Cyclic Code? Adil Mujeeb
@ 2012-01-09 17:40 ` Amit Sahrawat
  2012-01-09 21:39   ` Dave Chinner
  0 siblings, 1 reply; 4+ messages in thread
From: Amit Sahrawat @ 2012-01-09 17:40 UTC (permalink / raw)
  To: Adil Mujeeb; +Cc: xfs

On Mon, Jan 9, 2012 at 12:22 PM, Adil Mujeeb <mujeeb.adil@gmail.com> wrote:
> Hi list,
>
> i am new to XFS.
>
> I was going through XFS code (2.4 based) for study purpose. Its old but
> assuming its bit simple as compare to latest one. Moreover the XFS code /
> design structure documents available on the internet is 2.4 based.
May be if you switch to a version around 2.6.20 nearabout - it will
make it easier to understand the code. Prior to that the complete XFS
source code seemed like traversing through a lot of macros... I
started with 2.6.18 and it was really hard to understand from that
version...
>
> The following code snippet is not clear to me (seems cyclic):
>
> ---------
> ...
> ...
> #define XFS_IFORK_NEXTENTS(ip,w)        xfs_ifork_nextents(ip,w)
> ...
> xfs_ifork_nextents(xfs_inode_t *ip, int w)
> {
>         return XFS_IFORK_NEXTENTS(ip, w);
> }
I guess you missed something while reading the code.... I tried to
look at the repositry.. this is how the code looks...
#if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_IFORK_NEXTENTS)	
 int xfs_ifork_nextents(xfs_inode_t *ip, int w);	
 #define XFS_IFORK_NEXTENTS(ip,w)        xfs_ifork_nextents(ip,w)	
 #else	
 #define XFS_IFORK_NEXTENTS(ip,w)        XFS_CFORK_NEXTENTS(&ip->i_d, w)	
 #endif
....
#define XFS_CFORK_NEXTENTS(dcp,w) \
	((w) == XFS_DATA_FORK ? (dcp)->di_nextents : (dcp)->di_anextents)

Regards,
Amit Sahrawat
> ...
> ...
> #define XFS_IFORK_NEXTENTS(ip,w)        XFS_CFORK_NEXTENTS(&ip->i_d, w)
> ...
> #define XFS_CFORK_NEXTENTS(dcp,w)            xfs_cfork_nextents(dcp,w)
> ...
> int
> xfs_cfork_nextents(xfs_dinode_core_t *dcp, int w)
> {
>         return XFS_CFORK_NEXTENTS(dcp, w);
> }
> ----
>
> Am i missing something?
> Thanks,
> Adil
>
> _______________________________________________
> xfs mailing list
> xfs@oss.sgi.com
> http://oss.sgi.com/mailman/listinfo/xfs
>

_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Cyclic Code?
  2012-01-09 17:40 ` Amit Sahrawat
@ 2012-01-09 21:39   ` Dave Chinner
  2012-01-10  6:55     ` Adil Mujeeb
  0 siblings, 1 reply; 4+ messages in thread
From: Dave Chinner @ 2012-01-09 21:39 UTC (permalink / raw)
  To: Amit Sahrawat; +Cc: Adil Mujeeb, xfs

On Mon, Jan 09, 2012 at 11:10:30PM +0530, Amit Sahrawat wrote:
> On Mon, Jan 9, 2012 at 12:22 PM, Adil Mujeeb <mujeeb.adil@gmail.com> wrote:
> > Hi list,
> >
> > i am new to XFS.
> >
> > I was going through XFS code (2.4 based) for study purpose. Its old but
> > assuming its bit simple as compare to latest one. Moreover the XFS code /
> > design structure documents available on the internet is 2.4 based.
> May be if you switch to a version around 2.6.20 nearabout - it will
> make it easier to understand the code. Prior to that the complete XFS
> source code seemed like traversing through a lot of macros... I
> started with 2.6.18 and it was really hard to understand from that
> version...

I'd recommend starting with the current top of tree code - it is
much, much cleaner that the code base even from 2.6.20. Remember, 2.6.20
was released almost 5 years ago (Feb 4 2007), and there's been a
*lot* of cleanup work done since then....

> > The following code snippet is not clear to me (seems cyclic):
> >
> > ---------
> > ...
> > ...
> > #define XFS_IFORK_NEXTENTS(ip,w)        xfs_ifork_nextents(ip,w)
> > ...
> > xfs_ifork_nextents(xfs_inode_t *ip, int w)
> > {
> >         return XFS_IFORK_NEXTENTS(ip, w);
> > }
> I guess you missed something while reading the code.... I tried to
> look at the repositry.. this is how the code looks...
> #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_IFORK_NEXTENTS)	
>  int xfs_ifork_nextents(xfs_inode_t *ip, int w);	
>  #define XFS_IFORK_NEXTENTS(ip,w)        xfs_ifork_nextents(ip,w)	
>  #else	
>  #define XFS_IFORK_NEXTENTS(ip,w)        XFS_CFORK_NEXTENTS(&ip->i_d, w)	
>  #endif
> ....
> #define XFS_CFORK_NEXTENTS(dcp,w) \
> 	((w) == XFS_DATA_FORK ? (dcp)->di_nextents : (dcp)->di_anextents)

Yup, that XFS_WANT_FUNCS crap was for debugging the macros because
they were too complex to debug in line. That went long ago.

FYI, macros were very popular in Irix code - desite SGI having an
awesome compiler, the SGI kernel engineers believed that function
calls were just too expensive to call and so macros that expanded
out to 300 lines of code were common. Hence the need to have some
way of debugging them.

Hell, I know one engineer used to compile the code and then
disassemble in the debugger on the running machine because that was
the *simplest way* to work out what code the macros actually
compiled in. :-O

I'm glad we've got rid of most of the macro-instead-of-function
usage now...

Cheers,

Dave.
-- 
Dave Chinner
david@fromorbit.com

_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Cyclic Code?
  2012-01-09 21:39   ` Dave Chinner
@ 2012-01-10  6:55     ` Adil Mujeeb
  0 siblings, 0 replies; 4+ messages in thread
From: Adil Mujeeb @ 2012-01-10  6:55 UTC (permalink / raw)
  To: Dave Chinner; +Cc: Amit Sahrawat, xfs

Hi Dave, Amit,

Thank you for your inputs.

On Tue, Jan 10, 2012 at 3:09 AM, Dave Chinner <david@fromorbit.com> wrote:
>
> On Mon, Jan 09, 2012 at 11:10:30PM +0530, Amit Sahrawat wrote:
> > On Mon, Jan 9, 2012 at 12:22 PM, Adil Mujeeb <mujeeb.adil@gmail.com> wrote:
> > > Hi list,
> > >
> > > i am new to XFS.
> > >
> > > I was going through XFS code (2.4 based) for study purpose. Its old but
> > > assuming its bit simple as compare to latest one. Moreover the XFS code /
> > > design structure documents available on the internet is 2.4 based.
> > May be if you switch to a version around 2.6.20 nearabout - it will
> > make it easier to understand the code. Prior to that the complete XFS
> > source code seemed like traversing through a lot of macros... I
> > started with 2.6.18 and it was really hard to understand from that
> > version...
>
> I'd recommend starting with the current top of tree code - it is
> much, much cleaner that the code base even from 2.6.20. Remember, 2.6.20
> was released almost 5 years ago (Feb 4 2007), and there's been a
> *lot* of cleanup work done since then....
>
> > > The following code snippet is not clear to me (seems cyclic):
> > >
> > > ---------
> > > ...
> > > ...
> > > #define XFS_IFORK_NEXTENTS(ip,w)        xfs_ifork_nextents(ip,w)
> > > ...
> > > xfs_ifork_nextents(xfs_inode_t *ip, int w)
> > > {
> > >         return XFS_IFORK_NEXTENTS(ip, w);
> > > }
> > I guess you missed something while reading the code.... I tried to
> > look at the repositry.. this is how the code looks...
> > #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_IFORK_NEXTENTS)
> >  int xfs_ifork_nextents(xfs_inode_t *ip, int w);
> >  #define XFS_IFORK_NEXTENTS(ip,w)        xfs_ifork_nextents(ip,w)
> >  #else
> >  #define XFS_IFORK_NEXTENTS(ip,w)        XFS_CFORK_NEXTENTS(&ip->i_d, w)
> >  #endif
> > ....
> > #define XFS_CFORK_NEXTENTS(dcp,w) \
> >       ((w) == XFS_DATA_FORK ? (dcp)->di_nextents : (dcp)->di_anextents)

Amit, what i understood is XFS_IFORK_NEXTENTS is replaced by
xfs_ifork_nextents(ip,w) call which actually has this macro in the
function body.

> Yup, that XFS_WANT_FUNCS crap was for debugging the macros because
> they were too complex to debug in line. That went long ago.
>
> FYI, macros were very popular in Irix code - desite SGI having an
> awesome compiler, the SGI kernel engineers believed that function
> calls were just too expensive to call and so macros that expanded
> out to 300 lines of code were common. Hence the need to have some
> way of debugging them.
>
> Hell, I know one engineer used to compile the code and then
> disassemble in the debugger on the running machine because that was
> the *simplest way* to work out what code the macros actually
> compiled in. :-O
>
> I'm glad we've got rid of most of the macro-instead-of-function
> usage now...

Thanks for the information.
Is there any code / design document similar to XFS filesystem
structure document available for older versions.

Thanks,
Adil

>
> Cheers,
>
> Dave.
> --
> Dave Chinner
> david@fromorbit.com

_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-01-10  6:56 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-09  6:52 Cyclic Code? Adil Mujeeb
2012-01-09 17:40 ` Amit Sahrawat
2012-01-09 21:39   ` Dave Chinner
2012-01-10  6:55     ` Adil Mujeeb

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox