mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Karthik Sarangan <karthiks@cdac.in>
To: linux-kernel@vger.kernel.org
Subject: Using DMA in read/write, setting block size for I/O
Date: Tue, 04 Oct 2005 19:21:37 +0530	[thread overview]
Message-ID: <434288E9.3090108@cdac.in> (raw)

In my application, I have the following code.

int main(void)
{
    char *pcBuffer;

    posix_memalign((void **) pcBuffer, 512, 262144);
    int ifd = open("/dev/sdb", O_DIRECT | O_RDWR);
    long lLen;

    lLen = read(ifd, pcBuffer, 262144);
   
    close(ifd);
    return 0;
}

Will the underlying block device read a single 256KB block from the hdd 
into pcBuffer
or will it read 256KB as a set of smaller blocks?

Since the buffer is memory aligned will it enable DMA?

scsi disk driver is adaptec aic79xx.o
distro is RedHat Enterprise Linux WS 4 (kernel-2.6.9-11)

             reply	other threads:[~2005-10-04 14:26 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-10-04 13:51 Karthik Sarangan [this message]
2005-10-04 14:33 ` Arjan van de Ven
     [not found]   ` <43437163.1020201@cdac.in>
2005-10-05  8:15     ` Arjan van de Ven
2005-10-05  9:43       ` Using DMA in read/write, setting block size for I/O -> max_sectors Karthik Sarangan
2005-10-05 10:26         ` Arjan van de Ven
2005-10-06  4:39           ` Karthik Sarangan
2005-10-04 15:34 ` Using DMA in read/write, setting block size for I/O linux-os (Dick Johnson)

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=434288E9.3090108@cdac.in \
    --to=karthiks@cdac.in \
    --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

Powered by JetHome