From mboxrd@z Thu Jan 1 00:00:00 1970 From: navych@126.com (Navy Cheng) Date: Sun, 2 Aug 2015 13:01:05 +0800 Subject: How can I locate a struct's defination? Message-ID: <20150802050105.GA3736@debian> To: kernelnewbies@lists.kernelnewbies.org List-Id: kernelnewbies.lists.kernelnewbies.org Hi, I use emacs and tags to read kernel source. The tags is create by make tags in the kernel source tree. When I want to find a struct's defination, something goes wrong. For example: when I find *dentry* , the first result is: struct rchan_buf { ... struct dentry *dentry; /* channel file dentry */ ... } There are so many items like this before I find struct dentry { .... } How can I find the struct's defination directly? Thanks.