http://oss.sgi.com/bugzilla/show_bug.cgi?id=302
misiek@xxxxxxxxxxxx changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |REOPENED
Resolution|INVALID |
------- Additional Comments From misiek@xxxxxxxxxxxx 2004-02-01 07:24 PDT
-------
I'm talking about linux-2.6-xfs tree at sgi.com
[misiek@arm ~/.CVS-OTHER/linux-2.6-xfs/linux/fs/xfs]$ grep -r xfs_dmcore_xfs .
./xfs_mount.h:extern struct xfs_dmops xfs_dmcore_xfs;
./xfs_vfsops.c: mp->m_dm_ops = p ? *(xfs_dmops_t *) vfs_bhv_custom(p) :
xfs_dmcore_xfs;
./dmapi/dmapi_xfs.c:xfs_dmops_t xfs_dmcore_xfs = {
./dmapi/dmapi_xfs.c: vfs_bhv_set_custom(&xfs_dmops, &xfs_dmcore_xfs);
./xfs_dmops.c:xfs_dmops_t xfs_dmcore_xfs = {
[misiek@arm ~/.CVS-OTHER/linux-2.6-xfs/linux/fs/xfs]$ cat CVS/Root
:pserver:cvs@xxxxxxxxxxx:/cvs
xfs_vfsopts.c has:
/*
* Setup xfs_mount function vectors from available behaviors
*/
p = vfs_bhv_lookup(vfsp, VFS_POSITION_DM);
mp->m_dm_ops = p ? *(xfs_dmops_t *) vfs_bhv_custom(p) : xfs_dmcore_xfs;
p = vfs_bhv_lookup(vfsp, VFS_POSITION_QM);
mp->m_qm_ops = p ? *(xfs_qmops_t *) vfs_bhv_custom(p) : xfs_qmcore_xfs;
p = vfs_bhv_lookup(vfsp, VFS_POSITION_IO);
mp->m_io_ops = p ? *(xfs_ioops_t *) vfs_bhv_custom(p) : xfs_iocore_xfs;
(xfs in vanilla 2.6.1rc1 doesn't have security xattr support so anyone who
want's use xfs with SELinux needs SGI CVS version + small security xattr patch).
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
|