<div>Hi all,</div>
<div>I want to create a sysfs file and associate it with several file opeations like open,close and mmap.</div>
<div>But when coming across sysfs file creation I saw that I can create a file using </div>
<div>device_create_file(struct device*,struct device_attributes*);</div>
<div>The device attributes were initialized using following </div>
<div>DEVICE_ATTR(_name,_permission,_show,_store);</div>
<div>But I want to associate my file with following operations</div>
<div>struct file_operations my_fops </div>
<div>{</div>
<div>      .open = my_open,</div>
<div>      .close = my_close,</div>
<div>      .mmap = my_mmap,</div>
<div>};</div>
<div> </div>
<div>I was able to do this using </div>
<div>debugfs_create_file(...,&amp;my_fops);</div>
<div>But is there anyway if I want to put this file in sec_class. <br></div>
<div>Thanking you in advance.</div>
<div> </div>
<div>Thanks and Regards,</div>
<div>Niroj Pokhrel</div>
<div> </div>