* [PATCH] xfsprogs: allow xfs_freeze to work on non-xfs filesystems
@ 2009-01-14 23:05 Eric Sandeen
2009-01-15 10:48 ` Bill O'Donnell
2009-01-18 17:58 ` Christoph Hellwig
0 siblings, 2 replies; 4+ messages in thread
From: Eric Sandeen @ 2009-01-14 23:05 UTC (permalink / raw)
To: xfs mailing list
allow xfs_freeze to freeze "foreign" filesystems
Now that the freeze ioctl has been elevated to the VFS,
let's let xfs_io and xfs_freeze freeze other filesystems
as well - add the CMD_FOREIGN_OK flag to freeze & thaw.
I think the worst that will happen on older kernels is that
the command will fail with ENOSYS or EINVAL....
Signed-off-by: Eric Sandeen <sandeen@sandeen.net>
---
diff --git a/io/freeze.c b/io/freeze.c
index 334b0cf..08f4d47 100644
--- a/io/freeze.c
+++ b/io/freeze.c
@@ -66,14 +66,14 @@ freeze_init(void)
freeze_cmd.cfunc = freeze_f;
freeze_cmd.argmin = 0;
freeze_cmd.argmax = 0;
- freeze_cmd.flags = CMD_NOMAP_OK;
+ freeze_cmd.flags = CMD_NOMAP_OK | CMD_FOREIGN_OK;
freeze_cmd.oneline = _("freeze filesystem of current file");
thaw_cmd.name = _("thaw");
thaw_cmd.cfunc = thaw_f;
thaw_cmd.argmin = 0;
thaw_cmd.argmax = 0;
- thaw_cmd.flags = CMD_NOMAP_OK;
+ thaw_cmd.flags = CMD_NOMAP_OK | CMD_FOREIGN_OK;
thaw_cmd.oneline = _("unfreeze filesystem of current file");
if (expert) {
diff --git a/io/xfs_freeze.sh b/io/xfs_freeze.sh
index 0aeeae6..45e20d2 100644
--- a/io/xfs_freeze.sh
+++ b/io/xfs_freeze.sh
@@ -33,11 +33,11 @@ if [ "$1" = "" ]; then
fi
if $FREEZE ; then
- $DIRNAME/xfs_io -r -p xfs_freeze -x -c "freeze" "$1"
+ $DIRNAME/xfs_io -F -r -p xfs_freeze -x -c "freeze" "$1"
status=$?
[ $status -ne 0 ] && exit $status
elif $THAW ; then
- $DIRNAME/xfs_io -r -p xfs_freeze -x -c "thaw" "$1"
+ $DIRNAME/xfs_io -F -r -p xfs_freeze -x -c "thaw" "$1"
status=$?
[ $status -ne 0 ] && exit $status
else
_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] xfsprogs: allow xfs_freeze to work on non-xfs filesystems
2009-01-14 23:05 [PATCH] xfsprogs: allow xfs_freeze to work on non-xfs filesystems Eric Sandeen
@ 2009-01-15 10:48 ` Bill O'Donnell
2009-01-18 17:58 ` Christoph Hellwig
1 sibling, 0 replies; 4+ messages in thread
From: Bill O'Donnell @ 2009-01-15 10:48 UTC (permalink / raw)
To: Eric Sandeen; +Cc: xfs mailing list
On Wed, Jan 14, 2009 at 05:05:24PM -0600, Eric Sandeen wrote:
| allow xfs_freeze to freeze "foreign" filesystems
|
| Now that the freeze ioctl has been elevated to the VFS,
| let's let xfs_io and xfs_freeze freeze other filesystems
| as well - add the CMD_FOREIGN_OK flag to freeze & thaw.
|
| I think the worst that will happen on older kernels is that
| the command will fail with ENOSYS or EINVAL....
|
| Signed-off-by: Eric Sandeen <sandeen@sandeen.net>
| ---
Reviewed-by: Bill O'Donnell <billodo@sgi.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: [PATCH] xfsprogs: allow xfs_freeze to work on non-xfs filesystems
2009-01-14 23:05 [PATCH] xfsprogs: allow xfs_freeze to work on non-xfs filesystems Eric Sandeen
2009-01-15 10:48 ` Bill O'Donnell
@ 2009-01-18 17:58 ` Christoph Hellwig
2009-01-18 19:28 ` Eric Sandeen
1 sibling, 1 reply; 4+ messages in thread
From: Christoph Hellwig @ 2009-01-18 17:58 UTC (permalink / raw)
To: Eric Sandeen; +Cc: xfs mailing list
On Wed, Jan 14, 2009 at 05:05:24PM -0600, Eric Sandeen wrote:
> allow xfs_freeze to freeze "foreign" filesystems
>
> Now that the freeze ioctl has been elevated to the VFS,
> let's let xfs_io and xfs_freeze freeze other filesystems
> as well - add the CMD_FOREIGN_OK flag to freeze & thaw.
>
> I think the worst that will happen on older kernels is that
> the command will fail with ENOSYS or EINVAL....
Looks good to me, but I thikn you should also update the
xfs_freeze manpage to mention that it works for non-XFS filesystems
on 2.6.29 or newer kernels.
_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] xfsprogs: allow xfs_freeze to work on non-xfs filesystems
2009-01-18 17:58 ` Christoph Hellwig
@ 2009-01-18 19:28 ` Eric Sandeen
0 siblings, 0 replies; 4+ messages in thread
From: Eric Sandeen @ 2009-01-18 19:28 UTC (permalink / raw)
To: Christoph Hellwig; +Cc: xfs mailing list
Christoph Hellwig wrote:
> On Wed, Jan 14, 2009 at 05:05:24PM -0600, Eric Sandeen wrote:
>> allow xfs_freeze to freeze "foreign" filesystems
>>
>> Now that the freeze ioctl has been elevated to the VFS,
>> let's let xfs_io and xfs_freeze freeze other filesystems
>> as well - add the CMD_FOREIGN_OK flag to freeze & thaw.
>>
>> I think the worst that will happen on older kernels is that
>> the command will fail with ENOSYS or EINVAL....
>
> Looks good to me, but I thikn you should also update the
> xfs_freeze manpage to mention that it works for non-XFS filesystems
> on 2.6.29 or newer kernels.
Ok, will do - thanks.
-Eric
_______________________________________________
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:[~2009-01-18 19:28 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-14 23:05 [PATCH] xfsprogs: allow xfs_freeze to work on non-xfs filesystems Eric Sandeen
2009-01-15 10:48 ` Bill O'Donnell
2009-01-18 17:58 ` Christoph Hellwig
2009-01-18 19:28 ` Eric Sandeen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox