* [PATCH 6/9] mtd: Add a 'block unused' ioctl call to provide hints to block drivers
@ 2007-03-02 15:54 Richard Purdie
2007-03-05 21:38 ` Pavel Machek
0 siblings, 1 reply; 2+ messages in thread
From: Richard Purdie @ 2007-03-02 15:54 UTC (permalink / raw)
To: Nick Piggin, Hugh Dickins, kernel list, linux-mtd, dwmw2
Knowing that the data in a given block is now unused is a useful
feature that some block drivers can take advantage of, especially
when dealing with devices like flash.
This adds an ioctl which allows such hints to be passed to the
block driver. Its shouldn't provide false positives but doesn't
have to provide the signal in all cases - its intended as a hint.
Support for the ioctl is added to the swap subsystem when the swap
header indicates such notification would be useful though an added
flags bitfield. The swaponflash driver takes advantage of this
functionality.
Signed-off-by: Richard Purdie <rpurdie@openedhand.com>
---
block/ioctl.c | 4 ++++
include/linux/fs.h | 1 +
include/linux/swap.h | 5 ++++-
mm/swapfile.c | 7 ++++++-
4 files changed, 15 insertions(+), 2 deletions(-)
Index: linux/include/linux/fs.h
===================================================================
--- linux.orig/include/linux/fs.h 2007-02-28 18:16:52.000000000 +0000
+++ linux/include/linux/fs.h 2007-03-02 14:46:34.000000000 +0000
@@ -214,6 +214,7 @@ extern int dir_notify_enable;
#define BLKTRACESTART _IO(0x12,116)
#define BLKTRACESTOP _IO(0x12,117)
#define BLKTRACETEARDOWN _IO(0x12,118)
+#define BLKSWAPMARKUNUSED _IOW(0x12, 1197, int)
#define BMAP_IOCTL 1 /* obsolete - kept for compatibility */
#define FIBMAP _IO(0x00,1) /* bmap access */
Index: linux/include/linux/swap.h
===================================================================
--- linux.orig/include/linux/swap.h 2007-03-02 14:35:02.000000000 +0000
+++ linux/include/linux/swap.h 2007-03-02 14:46:34.000000000 +0000
@@ -65,7 +65,9 @@ union swap_header {
__u32 nr_badpages;
unsigned char sws_uuid[16];
unsigned char sws_volume[16];
- __u32 padding[117];
+ __u32 flags;
+#define SWAPFLAG_UNUSED_IOCTL (1 << 0)
+ __u32 padding[113];
__u32 badpages[1];
} info;
};
@@ -119,6 +121,7 @@ enum {
SWP_USED = (1 << 0), /* is slot in swap_info[] used? */
SWP_WRITEOK = (1 << 1), /* ok to write to this swap? */
SWP_ACTIVE = (SWP_USED | SWP_WRITEOK),
+ SWP_UNUSED_IOCTL = (1 << 2),
/* add others here before... */
SWP_SCANNING = (1 << 8), /* refcount in scan_swap_map */
};
Index: linux/mm/swapfile.c
===================================================================
--- linux.orig/mm/swapfile.c 2007-03-02 14:35:04.000000000 +0000
+++ linux/mm/swapfile.c 2007-03-02 14:46:34.000000000 +0000
@@ -284,6 +284,8 @@ static int swap_entry_free(struct swap_i
swap_list.next = p - swap_info;
nr_swap_pages++;
p->inuse_pages--;
+ if (p->flags & SWP_UNUSED_IOCTL)
+ blkdev_ioctl(p->swap_file->f_mapping->host, p->swap_file, BLKSWAPMARKUNUSED, offset);
}
}
return count;
@@ -1649,6 +1651,9 @@ asmlinkage long sys_swapon(const char __
goto bad_swap;
}
+ if (swap_header->info.flags & SWAPFLAG_UNUSED_IOCTL)
+ p->flags |= SWP_UNUSED_IOCTL;
+
error = 0;
memset(p->swap_map, 0, maxpages * sizeof(short));
for (i = 0; i < swap_header->info.nr_badpages; i++) {
@@ -1684,7 +1689,7 @@ asmlinkage long sys_swapon(const char __
mutex_lock(&swapon_mutex);
spin_lock(&swap_lock);
- p->flags = SWP_ACTIVE;
+ p->flags |= SWP_ACTIVE;
nr_swap_pages += nr_good_pages;
total_swap_pages += nr_good_pages;
Index: linux/block/ioctl.c
===================================================================
--- linux.orig/block/ioctl.c 2007-02-28 18:16:52.000000000 +0000
+++ linux/block/ioctl.c 2007-03-02 14:46:34.000000000 +0000
@@ -274,6 +274,10 @@ int blkdev_ioctl(struct inode *inode, st
return -EFAULT;
return 0;
}
+ case BLKSWAPMARKUNUSED:
+ if (!capable(CAP_SYS_ADMIN))
+ return -EACCES;
+ return blkdev_driver_ioctl(inode, file, disk, cmd, arg);
}
lock_kernel();
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH 6/9] mtd: Add a 'block unused' ioctl call to provide hints to block drivers
2007-03-02 15:54 [PATCH 6/9] mtd: Add a 'block unused' ioctl call to provide hints to block drivers Richard Purdie
@ 2007-03-05 21:38 ` Pavel Machek
0 siblings, 0 replies; 2+ messages in thread
From: Pavel Machek @ 2007-03-05 21:38 UTC (permalink / raw)
To: Richard Purdie; +Cc: Nick Piggin, dwmw2, linux-mtd, kernel list, Hugh Dickins
Hi!
> Knowing that the data in a given block is now unused is a useful
> feature that some block drivers can take advantage of, especially
> when dealing with devices like flash.
>
> This adds an ioctl which allows such hints to be passed to the
Maybe Documentation/ piece would be nice if this can be called from
userspace....
--
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2007-03-05 21:38 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-03-02 15:54 [PATCH 6/9] mtd: Add a 'block unused' ioctl call to provide hints to block drivers Richard Purdie
2007-03-05 21:38 ` Pavel Machek
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox