lkml.org 
[lkml]   [2006]   [Jan]   [30]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    /
    Date
    From
    SubjectRe: CD writing in future Linux try #2 [ was: Re: CD writing in future Linux (stirring up a hornets' nest) ]
    On 1/30/06, Joerg Schilling <schilling@fokus.fraunhofer.de> wrote:
    > Albert Cahalan <acahalan@gmail.com> wrote:
    >
    > > Let's address the second bug first. Linux provides full
    > > bus number and LUN info for all block devices. You get it
    > > like this:
    > >
    > > struct stat sbuf;
    > > stat("/dev/hdc", &sbuf);
    > > int bus = sbuf.st_mode>>12;
    > > int target = major(sbuf.st_rdev);
    > > int lun = minor(sbuf.st_rdev);
    >
    > Now tell me how to match this with information from /dev/sg*

    You do the obvious, scanning /dev to find the device file.

    You can map from names to numbers (like DNS does for IP) and
    back from numbers to names (like reverse DNS does).

    If you need to map from /dev/hd* to /dev/sg*, then you have
    found a bug. Explain what must be added to /dev/hd* so that
    you don't need to go messing with /dev/sg* anymore.

    The name /dev/hd* is not the high-level interface. It's the device
    name, used by both high-level and low-level interfaces. It alone
    is the non-kernel way to refer to the device. (inside the kernel
    you just get a pointer, and the dev_t assists in translation)
    -
    To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
    the body of a message to majordomo@vger.kernel.org
    More majordomo info at http://vger.kernel.org/majordomo-info.html
    Please read the FAQ at http://www.tux.org/lkml/

    \
     
     \ /
      Last update: 2006-01-30 17:33    [W:3.684 / U:0.112 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site