Sponsored Content
Top Forums UNIX for Advanced & Expert Users j2_maxPageReadAhead & j2_nBufferPerPagerDevice and CIO Post 302231859 by zaxxon on Wednesday 3rd of September 2008 09:51:06 AM
Old 09-03-2008
There is an AIX subforum here - post AIX problems there next time please^^

How did you notice it is locked up? Can you please post a vmstat -vs? An iostat of the disk(s) on which the problematic filesystems is placed on could help too.

Edit: Are you using AIO? If yes, "lsattr -El aio0" and "ps aux| grep aioserver" and iostat with -AQ to check aio queues maybe, please, ty Smilie What kind of application is causing that traffic?

Last edited by zaxxon; 09-03-2008 at 11:11 AM.. Reason: one more idea
 

4 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

turning CIO on and how to monitor

Hi Guys, I have a database server where we run AIX 5.3 on a power5 box and we just turned on CIO (concurrent I/O) for the database filesystems. Now my assumption is that enabling CIO the database basically will bypass the filesystem cache releasing some extra memory that can be allocated... (1 Reply)
Discussion started by: hariza
1 Replies

2. AIX

turning CIO on and how to monitor

Hi Guys, I have a database server where we run AIX 5.3 on a power5 box and we just turned on CIO (concurrent I/O) for the database filesystems. Now my assumption is that enabling CIO the database basically will bypass the filesystem cache releasing some extra memory that can be allocated... (1 Reply)
Discussion started by: hariza
1 Replies

3. Linux

Is Concurrent I/O (CIO) available on Linux?

Hi Guys, I just wondering if any of the AIX gurus with some exposure to Linux Redhat can tell me whether in Linux ( Red Hat or OpenSuse ) we have a similar option/capability like the CIO (Concurrent I/O) which is currently available on AIX. The reason I'm asking is because in the past we... (2 Replies)
Discussion started by: arizah
2 Replies

4. UNIX for Advanced & Expert Users

CIO in AIX

Hi, I'm reading AIX documentation : Examples 1.To list the mounted file systems, enter: mountThis command produces output similar to the following: node mounted mounted over vfs date options ---- ------- ------------ --- ------------ ... (2 Replies)
Discussion started by: big123456
2 Replies
VINVALBUF(9)						   BSD Kernel Developer's Manual					      VINVALBUF(9)

NAME
vinvalbuf -- flushes and invalidates all buffers associated with a vnode SYNOPSIS
#include <sys/param.h> #include <sys/vnode.h> int vinvalbuf(struct vnode *vp, int flags, struct ucred *cred, int slpflag, int slptimeo); DESCRIPTION
The vinvalbuf() function invalidates all of the buffers associated with the given vnode. This includes buffers on the clean list and the dirty list. If the V_SAVE flag is specified then the buffers on the dirty list are synced prior to being released. If there is a VM Object associated with the vnode, it is removed. Its arguments are: vp A pointer to the vnode whose buffers will be invalidated. flags The only supported flag is V_SAVE and it indicates that dirty buffers should be synced with the disk. cred The user credentials that are used to VOP_FSYNC(9) buffers if V_SAVE is set. slpflag The slp flag that will be used in the priority of any sleeps in the function. slptimeo The timeout for any sleeps in the function. LOCKS
The vnode is assumed to be locked prior to the call and remains locked upon return. Giant must be held by prior to the call and remains locked upon return. RETURN VALUES
A 0 value is returned on success. PSEUDOCODE
vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY); error = vinvalbuf(devvp, V_SAVE, cred, 0, 0); VOP_UNLOCK(devvp, 0); if (error) return (error); ERRORS
[ENOSPC] The file system is full. (With V_SAVE) [EDQUOT] Disc quota exceeded. (With V_SAVE) [EWOULDBLOCK] Sleep operation timed out. (See slptimeo) [ERESTART] A signal needs to be delivered and the system call should be restarted. (With PCATCH set in slpflag) [EINTR] The system has been interrupted by a signal. (With PCATCH set in slpflag) SEE ALSO
tsleep(9), VOP_FSYNC(9) AUTHORS
This manual page was written by Chad David <davidc@acns.ab.ca>. BSD
October 20, 2008 BSD
All times are GMT -4. The time now is 08:52 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy