Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

new_inode(9) [centos man page]

NEW_INODE(9)							   The Linux VFS						      NEW_INODE(9)

NAME
new_inode - obtain an inode SYNOPSIS
struct inode * new_inode(struct super_block * sb); ARGUMENTS
sb superblock DESCRIPTION
Allocates a new inode for given superblock. The default gfp_mask for allocations related to inode->i_mapping is GFP_HIGHUSER_MOVABLE. If HIGHMEM pages are unsuitable or it is known that pages allocated for the page cache are not reclaimable or migratable, mapping_set_gfp_mask must be called with suitable flags on the newly created inode's mapping COPYRIGHT
Kernel Hackers Manual 3.10 June 2014 NEW_INODE(9)

Check Out this Related Man Page

VFS_VGET(9)						   BSD Kernel Developer's Manual					       VFS_VGET(9)

NAME
VFS_VGET -- convert an inode number to a vnode SYNOPSIS
#include <sys/param.h> #include <sys/mount.h> #include <sys/vnode.h> int VFS_VGET(struct mount *mp, ino_t ino, int flags, struct vnode **vpp); DESCRIPTION
The VFS_VGET() looks up or creates a vnode from a (mount, inode#) tuple. Its arguments are: mp The mount point. ino The inode representing the file. This is a unique number assigned by the file system when vnodes are first created. flags Additional locking flags to pass through to vget(9). vpp Return parameter for the vnode. This is an optional file system entry-point for file systems mainly intended for NFS server use, but many file systems use it internally in VOP_LOOKUP(9) and similar. If the file system does not support this call, then it should return EOPNOTSUPP. Please see ffs_vget() in sys/ufs/ffs/ffs_vfsops.c for the canonical example. SEE ALSO
VFS(9), vget(9), vnode(9) AUTHORS
This manual page was written by Doug Rabson. BSD
January 7, 2005 BSD
Man Page

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

need help for cp with -p switch

Guys, I need to copy files from source to destination with datetime preserved I did it with cp -p <source>/file <destinaltion>/file But when I do stat command on copied file , it seems the copied file has "change time" modified. Please guide me in understanding (2 Replies)
Discussion started by: mohan_xunil
2 Replies

2. Shell Programming and Scripting

How to tail real time file Generated every hour?

Hi Guys, I am developing a script to monitor log file Generated every hour. When creating a new file scripts not working. My Code . I want to monitor GatewayTransaction.yyyymmdd-hh.log while true; do newdate=$(date '+%Y%m%d') ; nowdate=$(date '+%Y%m%d-%H.log'); tail -f... (7 Replies)
Discussion started by: ooilinlove
7 Replies

3. UNIX for Advanced & Expert Users

Delete first 100 lines from a BIG File

Hi, I need a unix command to delete first n (say 100) lines from a log file. I need to delete some lines from the file without using any temporary file. I found sed -i is an useful command for this but its not supported in my environment( AIX 6.1 ). File size is approx 100MB. Thanks in... (18 Replies)
Discussion started by: unohu
18 Replies

4. AIX

Not able to read redo log file on AIX box

I have a oracle 10 G database installed on AIX6.1) server. The database user creates online redo log files with permissions 640 i.e. read access to group oinstall I am not able to read the files with another user part of the group oinstall. even tried to copy the files to another location,... (5 Replies)
Discussion started by: amitnm1106
5 Replies

5. UNIX for Dummies Questions & Answers

Knowing when a different program modifies a file

so i was testing something on a test box running linux. i manually vi'ed the /var/log/messages file. and i noticed, the file immediately stopped being updated. it wasn't until i restarted the syslog process that events started being recorded in it again. so that tells me, the syslog process... (20 Replies)
Discussion started by: SkySmart
20 Replies

6. Shell Programming and Scripting

Renaming directories stops resumption of write process

so lets say I have a process in cron that writes to a particular directory /var/tmp/EXAMPLEA so, from time to time, say every couple of months, an upgrade is made. and here's how the upgrade works: 1. move the existing directory /var/tmp/EXAMPLEA somewhere else and name it differently...i.e.... (6 Replies)
Discussion started by: SkySmart
6 Replies

7. Shell Programming and Scripting

Replace String without using sed

Hi Team, I have a file and need to replace string. Out of 20 rows, there is one row given below $Paramsoqlfilter=Systemmodstamp > 1900-01-01T00:00:00.000Z in a Shell Script, I have a variable HIST_DATE="1900-01-01T00:00:00.000Z" INC_DATE="2018-10-04T09:18:43.000Z" Now I need to... (14 Replies)
Discussion started by: ace_friends22
14 Replies

8. Shell Programming and Scripting

Using sed to edit multiple files

Created a shell script to invoke sed to edit multiple files, but am missing something. Here's the shell script: oracle:$ cat edit_scripts.sh #!/bin/sh #------------------------------------------------------------------------------ # edit_scripts.sh # # This script executes sed to make global... (4 Replies)
Discussion started by: edstevens
4 Replies

9. UNIX for Beginners Questions & Answers

Substitute a character with sed

hi all, i'd like to modify a file with sed , i want to substuite a char "-" with "/" how can i do this? Thanks for all regards Francesco (16 Replies)
Discussion started by: Francesco_IT
16 Replies