public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Douglas Gilbert <dougg@torque.net>
To: linux-kernel@vger.kernel.org
Subject: Re: Flushing buffer and page cache
Date: Sat, 17 Feb 2001 13:24:38 -0500	[thread overview]
Message-ID: <3A8EC1E6.6CC89D15@torque.net> (raw)

James Bottomley wrote:

> > Is it possible to flush all entries in the buffer cache corresponding
> > to a single block device (i.e. simply drop them if they aren't dirty,
> > or write them to disk and drop them after this if they are dirty)?
> 
> Yes, just send the BLKFLSBUF ioctl to the device this syncs the device then 
> removes all the buffers from the cache.  We use it as a tool to move a SAN 
> device around a cluster, which is similar to what you want to do.

Last time this question was raised, someone mentioned
a little utility called flushb . Here is its source:

/*
 * flushb.c --- This routine flushes the disk buffers for a disk
 */

/*
 * modified August 2000 by Juri Haberland
 * juri.haberland@innominate.de
 */

#include <stdio.h>
#include <fcntl.h>
#include <linux/fs.h>

#define NOARGS void

const char *progname;

static void usage(NOARGS)
{
        fprintf(stderr, "Usage: %s disk\n", progname);
        exit(1);
}      

int main(int argc, char **argv)
{
        int     fd;

        progname = argv[0];
        if (argc != 2)
                usage();

        fd = open(argv[1], O_RDONLY, 0);
        if (fd < 0) {
                perror("open");
                exit(1);
        }
        /*
         * Note: to reread the partition table, use the ioctl
         * BLKRRPART instead of BLKFSLBUF.
         */
        if (ioctl(fd, BLKFLSBUF, 0) < 0) {
                perror("ioctl BLKFLSBUF");
                exit(1);
        }
        return 0;
}

             reply	other threads:[~2001-02-17 18:30 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2001-02-17 18:24 Douglas Gilbert [this message]
  -- strict thread matches above, loose matches on Subject: below --
2001-02-17 16:12 Flushing buffer and page cache James Bottomley
2001-02-17 10:39 Florian Weimer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=3A8EC1E6.6CC89D15@torque.net \
    --to=dougg@torque.net \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox