1
vote
0answers
15 views

Why simple_rename() does nothing in ramfs?

Linux ramfs uses simple_rename(), but why in such function the new_dentry and old_inode are not linked to each other? Here is the source code of simple_rename() for your reference: int ...
1
vote
1answer
17 views

EXT3 file operations

I am trying to follow how Linux deals with EXT3 files. I am looking at fs/ext3/file.c where there are file operations that deal with the files are present: const struct file_operations ...
0
votes
0answers
25 views

Does inotify group IN_MOVED_FROM and IN_MOVED_TO?

I'm using a single inotify file descriptor to monitor many busy directories for several events, including IN_MOVED_TO and IN_MOVED_FROM. I have a loop that calls read on it (which blocks until there ...
2
votes
3answers
173 views

Hook functions for Linux filesystem

I want to do something before writing data into hard disk. I don't known any solutions. To avoid editing kernel source code, is there any locations that I can use hook function as a loadable module? ...
0
votes
1answer
74 views

Identifying that a file is being copied outside the computer in LKM

Assuming that i have Loadable-Kernel-Module inserted in linux-kernel and have hooked read, write, open and close functions. So now i can stop access to any file but i want to stop files from being ...
1
vote
1answer
84 views

current directory of a process in linux-kernel

Is it possible to get the process current directory via struct task_struct? I can see that struct fs_struct has pwd pointer, but I'm not able get the exact variable where this info is stored. Also, ...
-1
votes
2answers
169 views

What is proc and sysfs entries

I'd like to learn about proc and sysfs entries. So far, what I have understood is that, proc entries are the values which is set to proc file system. I'm not sure whether I'm correct. Could anyone ...
1
vote
0answers
125 views

O_DIRECT in ext4 with data=journaled mount option enabled

As far as I know in ext4 the O_DIRECT flag support with journalling on was added only in some recent kernel versions. I know it wasn't there with 3.0.0 kernel but it already works fine with 3.4, so ...
2
votes
1answer
295 views

how does open works for normal file and device drivers

Currently, I am learning Linux device drivers. And got stuck over how opening a device file works ? What I got until now... Consider the a simple code that opens a normal file.. ...
2
votes
2answers
86 views

When does write() to a file return EWOULDBLOCK?

I want to append data often to a file on the local filesystem. I want to do this without blocking for too long, and without making any worker threads. On Linux kernel 2.6.18. It seems that the POSIX ...
0
votes
2answers
65 views

dd command file_operations involved?

When we are executing dd command, which write function gets called. As per my understanding, dd command is not filesystem specific, so no file system's file_operations is involved. Please correct If ...
0
votes
0answers
62 views

How is garbage collection done in YAFFS?

I would like to know how garbage collection is done in yaffs in general and by yaffs_CheckGarbageCollection (yaffs_guts.c) in particular. When it prefers doing Aggressive GC (Garbage Collection) ...
1
vote
1answer
119 views

struct super_block and ext2_super_block

Can anyone explain me the relation between struct ext2_super_block ( in fs/ext2/ext2.h) and struct super_block ( in include/linux/fs.h). I am asking this because, in LKP ( by Robert Love ) it says ...
1
vote
0answers
103 views

Stripe and chunk in btrfs filesystem

I am do a heavyly study on the source code of Btrfs filesystem. Now, I am blocked at the function btrfs_alloc_chunk(). It is really beyond my ability to understand it. Can any one give me some ...
-1
votes
1answer
129 views

/proc/filesystem read is called thrice [closed]

This is my first kernel and in my sample program below, I have created a simple proc/filesystem. I see READ is called 3 times whenever I cat the kernel. Wondering why it is doing this. Out and the ...
3
votes
1answer
146 views

how to debug YAFFS?

I would like to turn on any debugging facility available in YAFFS. I'm hoping it will help me debug the issue that is occuring when using Flash memory. Are there any configs in the linux kernel that ...
1
vote
1answer
70 views

How does Linux kernel handle the concurrent file lookup

Assuming there are two processes looking up a file at the same time, and this file does not existed in the dcache yet. These two lookups will return NULL (dentry) to the process. My question is that ...
2
votes
2answers
96 views

Burn to specific sectors of flash memory

Is there any utility where I can exactly specify to which sector area the images are going to be burned ? I need to burn an SD card according to a specific sector map, e.g. bootloader should reside ...
0
votes
0answers
714 views

Difference between reading from /dev/block/mmcblk0 and /dev/block/mmcblk0p1

Reading from /dev/block/mmcblk0 returned old data while reading from /dev/block/mmcblk0p1 gave latest data. My question is does linux maintain a back up if data is written to /dev/block/mmcblk0? This ...
1
vote
0answers
85 views

Who wakes the kthreadd daemon during SD card read?

I would like to know who wakes the kthread daemon up, when a read from the SD card is done using vfs_read. According to the code flow the kthreadd will wake up the mmcqd (mmc_queue_thread) which will ...
1
vote
0answers
90 views

Wear and tear on server hard drive from filesystem polling by PHP script

So I'm working on a discussion platform, and various clients will visit http://host/thread.php, which will render the discussion thread to date in addition to a form to submit a new post. When a new ...
0
votes
1answer
457 views

What are inode generation numbers?

I'm plannnig to implement a FUSE filesystem using low-level API and currently trying to understand fuse_entry_param structure. I wonder what unsigned long fuse_entry_param::generation actually means. ...
3
votes
1answer
103 views

Algorithm used in JFFS2

I'm newbie to JFFS2 file systems. I'm looking for a reference/article/paper on garbage collection algorithm used in JFFS2. It would be great if anyone steer me to that. Thanks. -Sam
0
votes
1answer
195 views

Poor IO performance under heavy load

It seems that I have a problem with Linux IO performance. Working with a project I need to clear whole the file from the kernel space. I use the following code pattern: for_each_mapping_page(mapping, ...
1
vote
1answer
43 views

What's a good thing to start with for developing a simple filtering filesystem?

I want to write a simple filtering pass-through filesystem for linux. It's supposed to handle permissions and owners correctly, so FUSE is out of the question. What's a good thing to start with? ...
1
vote
1answer
178 views

File creation at the file system level

I am working on the FAT file system code in Linux Kernel 3.3. For a project, I need to create a file at mount time, in the root directory of the mounted filesystem. I've figured out where to write the ...
1
vote
2answers
739 views

error inserting a module in Linux — 1 Cannot allocate memory

eCryptfs is a POSIX-compliant encrypted filesystem that has been part of the mainline Linux Kernel since version 2.6.19. When I try to insert the module (ecryptfs.ko), I get the following error: ...
7
votes
2answers
2k views

Where can I find system call source code?

In linux where can I find the source code for all system calls given that I have the source tree? Also if I were to want to look up the source code and assembly for a particular system call is there ...
1
vote
0answers
209 views

Kernel goes in infinite loop after intercepting write() system call in linux kernel [closed]

I intercepted write() system call in a kernel module. Due to this, the kernel is getting into infinite loop because of the printk's present in my module i.e: int my_sys_write( fd, ... ) { ...
1
vote
0answers
79 views

How to get more information about the buffer cache

I am using kvm, and I want to benchmark nested page tables with 2MB (huge page) hyervisor page size. It can be done in linux with hugetlbfs, where 2MB pages belong to a filesystem, and the application ...
0
votes
1answer
212 views

How to bypass Linux VFS inode cache? Is it safe not to add inode to its super_block list?

Since our file system implementation stores inode just in memory, so we do not want to waste more for inode cache. Under VFS, we plan not to add new inode to the inode cache hash talbe, and not to ...
4
votes
1answer
210 views

Why Linux kernel 3.0+ cancels super_operations.read_inode? Request for new references~

Before Linux kernel 2.6, super_operations (include/linux/fs.h) have both read_inode and write_inode functions. But newer kernel does not have read_inode any more, then when and how does the VFS read ...
3
votes
2answers
131 views

Why does Linux boot with a few dentries initialized for root directory “/”

I am playing around Linux kernel code, especially the file system part. I've found that when the kernel boots, a few of dentry objects are allocated for root directory "/". Why dose it need to ...
5
votes
2answers
262 views

store some data in the struct inode

Hello I am a newbie to kernel programming. I am writing a small kernel module that is based on wrapfs template to implement a backup mechanism. This is purely for learning basis. I am extending ...
2
votes
2answers
823 views

How does Linux kernel find dirty page to flush?

Since the pages are stored in address_space within each inode, how does the background page cache flush thread know all dirty pages?
2
votes
1answer
217 views

lookup a directory in kernel module

I am writing a stackable file system which would rename unlinked files to a particular folder say abc by default. So as any file /xyz is unlinked its renamed to /abc/xyz. I want to do this by ...
1
vote
2answers
530 views

get filesystem mount point in kernel module

I want to get the filesystem mount point for a file system in my kernel module, which is a stackable filesystem. Eg. if /home/ab/abc is a file and /home is mounted on a different filesystem I want to ...
0
votes
0answers
67 views

what is file usr/lib/opkg/info/initscripts.list

What is the purpose of usr/lib/opkg/info/initscripts.list file in file system. And from where it's being called ?
3
votes
2answers
398 views

How do I open a directory at kernel level using the file descriptor for that directory?

I'm working on a project where I must open a directory and read the files/directories inside at kernel level. I'm basically trying to find out how ls is implemented at kernel level. Right now I've ...
6
votes
2answers
425 views

Writing kernel memory to ext2 block

Warning: Total kernel noob! For a university assignment, we have to modify the ext2 file system to store files in the inode's block pointers if it's smaller than 60 bytes, and move to regular block ...
0
votes
0answers
168 views

A FUSE like file system

I need to develop my own file-system. The thing is that I only need a specific behavior in a few callbacks (such as read, write, open etc.) and I don't want to wast time on dealing with Inodes and ...
4
votes
1answer
678 views

Get a nanosecond-precise atime, mtime, ctime fields for file (stat?)

Some filesystems (e.g. ext4 and JFS) offer nanosecond resolution of atime/mtime fields. How can I read ns-resolution fields? The stat syscall returns time_t which is a second-resolution.
1
vote
1answer
248 views

Using NFS filesystem on embedded board

I am using NFS to mount filesystem on my embedded board. Filesystem is mounted via eth0 port on my board. But after filesystem is mounted, if i unplug network cable from eth0 and plug into eth1, NFS ...
2
votes
1answer
408 views

Linux buffer cache for DVD/FUSE?

I want to know whether the buffer cache in Linux kernel is present for file systems like UDF for DVD and FUSE? I tried to search for this but unfortunately found little information. Thanks.
1
vote
1answer
388 views

O_DIRECT support on a jffs2 Linux filesystem

Im trying to use O_DIRECT to open a file and we're using jffs2 fd = open(filename, O_RDONLY|O_DIRECT|O_SYNC); But i only get an "invalid argument" error. I have also tried the solutions in this SO ...
6
votes
3answers
2k views

Linux filesystem detection

I am trying to follow this book to gain a bit of understanding on how the linux kernel works. What I can't really wrap my head around is that I can't understand how Linux detects a filesystem type, ...
0
votes
1answer
1k views

Check for write caching enabled or not on Linux

I want to check if the write-caching is enabled or not for my IDE drive on Linux... How do I do it ?
0
votes
2answers
144 views

File system inodes after hibernation on Linux

I am interested to know how the file system data structures are handled when suspending to disk. I am wondering if it is possible to hibernate and then switch a disk (physically) and then resume. My ...
1
vote
2answers
598 views

Mounting ISO image from USB at boot time

Is it possible to mount a ISO image from USB disk and to use it as a filesystem at boot time(with grub)? I ask it because I would like to put the kernel linux image and an ISO to be used as a ...
0
votes
1answer
162 views

mkfs for a new file system

Hi I have created a new file system say with name"ntr". After initializing the module (insmod) filesystem name is getting displayed in /proc/filesystems. Now I want this file system to be mounted on ...

1 2