%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /proc/self/root/usr/share/systemtap/examples/io/
Upload File :
Create Path :
Current File : //proc/self/root/usr/share/systemtap/examples/io/inodewatch.stp

#!/usr/bin/stap

probe vfs.{write,read}
{
  # dev and ino are defined by vfs.write and vfs.read
  if (dev == MKDEV($1,$2) # major/minor device
      && ino == $3)
    printf ("%s(%d) %s 0x%x/%u\n",
      execname(), pid(), ppfunc(), dev, ino)
}

Zerion Mini Shell 1.0