Sindbad~EG File Manager

Current Path : /proc/1603417/root/usr/share/systemtap/examples/io/
Upload File :
Current File : //proc/1603417/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)
}

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists