Why is the transfer unit of block devices block not page?

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
-2
down vote

favorite












Operating System Concepts says




A character-stream device transfers bytes one by one, whereas a block device transfers a block of bytes as a unit.




But I heard that the unit of transfer between main memory and disk is page.



Between what and what do the "transfers" in the quote happen?
Why is its transfer unit not page but block or byte?



Thanks.










share|improve this question





















  • Thanks. Why is its transfer unit not page but block or byte?
    – Tim
    Oct 4 at 1:12














up vote
-2
down vote

favorite












Operating System Concepts says




A character-stream device transfers bytes one by one, whereas a block device transfers a block of bytes as a unit.




But I heard that the unit of transfer between main memory and disk is page.



Between what and what do the "transfers" in the quote happen?
Why is its transfer unit not page but block or byte?



Thanks.










share|improve this question





















  • Thanks. Why is its transfer unit not page but block or byte?
    – Tim
    Oct 4 at 1:12












up vote
-2
down vote

favorite









up vote
-2
down vote

favorite











Operating System Concepts says




A character-stream device transfers bytes one by one, whereas a block device transfers a block of bytes as a unit.




But I heard that the unit of transfer between main memory and disk is page.



Between what and what do the "transfers" in the quote happen?
Why is its transfer unit not page but block or byte?



Thanks.










share|improve this question













Operating System Concepts says




A character-stream device transfers bytes one by one, whereas a block device transfers a block of bytes as a unit.




But I heard that the unit of transfer between main memory and disk is page.



Between what and what do the "transfers" in the quote happen?
Why is its transfer unit not page but block or byte?



Thanks.







memory block-device character-device






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Oct 4 at 0:57









Tim

23.9k67232418




23.9k67232418











  • Thanks. Why is its transfer unit not page but block or byte?
    – Tim
    Oct 4 at 1:12
















  • Thanks. Why is its transfer unit not page but block or byte?
    – Tim
    Oct 4 at 1:12















Thanks. Why is its transfer unit not page but block or byte?
– Tim
Oct 4 at 1:12




Thanks. Why is its transfer unit not page but block or byte?
– Tim
Oct 4 at 1:12










1 Answer
1






active

oldest

votes

















up vote
1
down vote



accepted










The transfers typically occur between the storage device and main memory. When you hear about pages when referring to disk, they're probably talking about virtual memory which is in terms of pages since that's the unit of storage the MMU deals with. But block devices relate to all sorts of devices that may or may not be disks so you have this separate concept of a blocks and block size. Disk block size and memory page size used to (generally) be the same, 4096 bytes, which of course was very convenient. But there's nothing that says they must be the same. For example, you might have a multi-terabyte disk used to store images where it makes sense to increase the block size to 32k or more... having no impact on memory page size. Generally, as long as one is a power of two multiple of the other it can be made to work without too much trouble.






share|improve this answer










New contributor




blihp is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

















    Your Answer







    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "106"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    convertImagesToLinks: false,
    noModals: false,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    bindNavPrevention: true,
    postfix: "",
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













     

    draft saved


    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f473118%2fwhy-is-the-transfer-unit-of-block-devices-block-not-page%23new-answer', 'question_page');

    );

    Post as a guest






























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes








    up vote
    1
    down vote



    accepted










    The transfers typically occur between the storage device and main memory. When you hear about pages when referring to disk, they're probably talking about virtual memory which is in terms of pages since that's the unit of storage the MMU deals with. But block devices relate to all sorts of devices that may or may not be disks so you have this separate concept of a blocks and block size. Disk block size and memory page size used to (generally) be the same, 4096 bytes, which of course was very convenient. But there's nothing that says they must be the same. For example, you might have a multi-terabyte disk used to store images where it makes sense to increase the block size to 32k or more... having no impact on memory page size. Generally, as long as one is a power of two multiple of the other it can be made to work without too much trouble.






    share|improve this answer










    New contributor




    blihp is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.





















      up vote
      1
      down vote



      accepted










      The transfers typically occur between the storage device and main memory. When you hear about pages when referring to disk, they're probably talking about virtual memory which is in terms of pages since that's the unit of storage the MMU deals with. But block devices relate to all sorts of devices that may or may not be disks so you have this separate concept of a blocks and block size. Disk block size and memory page size used to (generally) be the same, 4096 bytes, which of course was very convenient. But there's nothing that says they must be the same. For example, you might have a multi-terabyte disk used to store images where it makes sense to increase the block size to 32k or more... having no impact on memory page size. Generally, as long as one is a power of two multiple of the other it can be made to work without too much trouble.






      share|improve this answer










      New contributor




      blihp is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.



















        up vote
        1
        down vote



        accepted







        up vote
        1
        down vote



        accepted






        The transfers typically occur between the storage device and main memory. When you hear about pages when referring to disk, they're probably talking about virtual memory which is in terms of pages since that's the unit of storage the MMU deals with. But block devices relate to all sorts of devices that may or may not be disks so you have this separate concept of a blocks and block size. Disk block size and memory page size used to (generally) be the same, 4096 bytes, which of course was very convenient. But there's nothing that says they must be the same. For example, you might have a multi-terabyte disk used to store images where it makes sense to increase the block size to 32k or more... having no impact on memory page size. Generally, as long as one is a power of two multiple of the other it can be made to work without too much trouble.






        share|improve this answer










        New contributor




        blihp is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.









        The transfers typically occur between the storage device and main memory. When you hear about pages when referring to disk, they're probably talking about virtual memory which is in terms of pages since that's the unit of storage the MMU deals with. But block devices relate to all sorts of devices that may or may not be disks so you have this separate concept of a blocks and block size. Disk block size and memory page size used to (generally) be the same, 4096 bytes, which of course was very convenient. But there's nothing that says they must be the same. For example, you might have a multi-terabyte disk used to store images where it makes sense to increase the block size to 32k or more... having no impact on memory page size. Generally, as long as one is a power of two multiple of the other it can be made to work without too much trouble.







        share|improve this answer










        New contributor




        blihp is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.









        share|improve this answer



        share|improve this answer








        edited Oct 4 at 4:57





















        New contributor




        blihp is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.









        answered Oct 4 at 4:37









        blihp

        2365




        2365




        New contributor




        blihp is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.





        New contributor





        blihp is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.






        blihp is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.



























             

            draft saved


            draft discarded















































             


            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f473118%2fwhy-is-the-transfer-unit-of-block-devices-block-not-page%23new-answer', 'question_page');

            );

            Post as a guest













































































            Popular posts from this blog

            How to check contact read email or not when send email to Individual?

            Bahrain

            Postfix configuration issue with fips on centos 7; mailgun relay