Displaying 7 results from an estimated 7 matches for "00170000".
Did you mean:
0017d000
2011 Sep 02
5
Linux kernel crash due to ocfs2
Hello,
we have a pair of IBM P570 servers running RHEL5.2
kernel 2.6.18-92.el5.ppc64
We have Oracle RAC on ocfs2 storage
ocfs2 is 1.4.7-1 for the above kernel (downloaded from oracle oss site)
Recently both servers have been crashing with the following error:
Assertion failure in journal_dirty_metadata() at
fs/jbd/transaction.c:1130: "handle->h_buffer_credits > 0"
kernel BUG in
2005 Jul 20
2
Seg from net ads join
...f000-00151000 rwxp 00001000 fd:00 123245182
/usr/lib/gconv/IBM850.so
00151000-0015a000 r-xp 00000000 fd:00 16875573
/lib/libnss_files-2.3.5.so
0015a000-0015b000 r-xp 00008000 fd:00 16875573
/lib/libnss_files-2.3.5.so
0015b000-0015c000 rwxp 00009000 fd:00 16875573
/lib/libnss_files-2.3.5.so
0015e000-00170000 r-xp 00000000 fd:00 16875557 /lib/libnsl-2.3.5.so
00170000-00171000 r-xp 00011000 fd:00 16875557 /lib/libnsl-2.3.5.so
00171000-00172000 rwxp 00012000 fd:00 16875557 /lib/libnsl-2.3.5.so
00172000-00174000 rwxp 00172000 00:00 0
00174000-00178000 r-xp 00000000 fd:00 16875570
/lib/libnss_dns-2.3...
2009 Jun 29
0
Asterisk ended with exit status 134... Asterisk exited on signal 6.
..._sip.so[0x89382e]
/usr/sbin/asterisk[0x81014fb]
/lib/libpthread.so.0[0xa3e51f]
/lib/libc.so.6(clone+0x5e)[0x1f404e]
======= Memory map: ========
00110000-0027e000 r-xp 00000000 fd:00 309034 /lib/libc-2.9.so
0027e000-00280000 r--p 0016e000 fd:00 309034 /lib/libc-2.9.so
00280000-00281000 rw-p 00170000 fd:00 309034 /lib/libc-2.9.so
00281000-00284000 rw-p 00281000 00:00 0
00284000-0028a000 r-xp 00000000 fd:00
122266 /usr/lib/asterisk/modules/res_adsi.so
0028a000-0028b000 rw-p 00005000 fd:00
122266 /usr/lib/asterisk/modules/res_adsi.so
0028b000-00292000 r-xp 00000000 fd:00
122275 /...
2010 Jan 26
1
Stack smashing in RODBC
...1.so
004a5000-004a6000 r--p 0001d000 fd:00 462 /lib/ld-2.11.1.so
004a6000-004a7000 rw-p 0001e000 fd:00 462 /lib/ld-2.11.1.so
004a9000-00618000 r-xp 00000000 fd:00 463 /lib/libc-2.11.1.so
00618000-0061a000 r--p 0016e000 fd:00 463 /lib/libc-2.11.1.so
0061a000-0061b000 rw-p 00170000 fd:00 463 /lib/libc-2.11.1.so
0061b000-0061e000 rw-p 00000000 00:00 0
0061e000-006f3000 r-xp 00000000 fd:00 46452
/usr/lib/libgfortran.so.3.0.0
006f3000-006f5000 rw-p 000d4000 fd:00 46452
/usr/lib/libgfortran.so.3.0.0
006f5000-0070b000 r-xp 00000000 fd:00 476 /lib/libpthread-2.11.1.so...
2012 Mar 20
13
[PATCH 0 of 3 v2] PV-GRUB: add support for ext4 and btrfs
Hi,
The following patches add support for ext4 and btrfs to
PV-GRUB. These patches are taken nearly verbatim from those provided
by Fedora and Gentoo.
We''ve been using these patches for the PV-GRUB images available in EC2
for some time now with no problems.
Changes from v1:
- Makefile has been changed to check the exit code from patch
- The btrfs patch has been rebased to apply
2015 Dec 15
8
[PATCH] xfs: Add support for v3 directories
...+ b/core/fs/xfs/xfs.h
@@ -116,6 +116,9 @@ struct xfs_fs_info;
#define XFS_DIR2_NULL_DATAPTR ((uint32_t)0)
+#define XFS_DIR3_BLOCK_MAGIC 0x58444233 /* XDB3: single block dirs */
+#define XFS_DIR3_DATA_MAGIC 0x58444433 /* XDD3: multiblock dirs */
+
/* File types and modes */
#define S_IFMT 00170000
#define S_IFSOCK 0140000
@@ -346,8 +349,19 @@ typedef struct xfs_dinode {
/* di_next_unlinked is the only non-core field in the old dinode */
uint32_t di_next_unlinked;/* agi unlinked list ptr */
- uint8_t di_literal_area[1];
-} __attribute__((packed)) xfs_dinode_t;
+
+ /* sta...
2012 Sep 03
1
[GIT-PULL] XFS filesystem driver
...58443242U /* XD2B: single block dirs */
+#define XFS_DIR2_DATA_MAGIC 0x58443244U /* XD2D: multiblock dirs */
+#define XFS_DIR2_FREE_MAGIC 0x58443246U /* XD2F: free index blocks */
+
+#define XFS_DIR2_NULL_DATAPTR ((uint32_t)0)
+
+/* File types and modes */
+#define S_IFMT 00170000
+#define S_IFSOCK 0140000
+#define S_IFLNK 0120000
+#define S_IFREG 0100000
+#define S_IFBLK 0060000
+#define S_IFDIR 0040000
+#define S_IFCHR 0020000
+#define S_IFIFO 0010000
+#define S_ISUID 0004000
+#define S_ISGID 0002000
+#define S_ISVTX 0001000
+
+#define MAXPATHLEN 1024
+/*...