search for: magicnum

Displaying 6 results from an estimated 6 matches for "magicnum".

2003 Jun 30
1
Fw: VPN setup problem - proxy arp I think
...UP event in state OPENING [pptp1] device is now in state UP [pptp1] link: UP event [pptp1] link: origination is remote [pptp1] LCP: Up event [pptp1] LCP: state change Starting --> Req-Sent [pptp1] LCP: phase shift DEAD --> ESTABLISH [pptp1] LCP: SendConfigReq #1 ACFCOMP PROTOCOMP MRU 1500 MAGICNUM 5611757b AUTHPROTO CHAP MSOFTv2 MP MRRU 1600 MP SHORTSEQ ENDPOINTDISC [802.1] 00 07 e9 87 ca 4f pptp0-0: ignoring SetLinkInfo [pptp1] LCP: rec'd Configure Request #0 link 0 (Req-Sent) MRU 1400 MAGICNUM 4d905023 PROTOCOMP ACFCOMP CALLBACK Not supported [pptp1] LCP: SendConfigRej #0...
2015 Oct 23
1
[PATCH v2] perl: Switch to using Module::Build.
version 2: - Fixed handling of clean & distclean. - Use 'all-local' instead of 'all'. - Don't use abs_* paths in Build.PL.in. Rich.
2015 Jul 18
1
[PATCH 1/2] xfs: rename xfs_is_valid_magicnum to xfs_is_valid_sb
xfs_is_valid_magicnum is not actually a generic function that checks for magic numbers, instead it checks only for superblock's one. Signed-off-by: Paulo Alcantara <pcacjr at zytor.com> --- core/fs/xfs/xfs.c | 13 +++++-------- core/fs/xfs/xfs.h | 19 ++++++++++--------- 2 files changed, 15 insertions(+), 17...
2015 Oct 23
1
[PATCH v3] perl: Switch to using Module::Build.
version 3: - Split requires into configure_requires/etc. - Use lists for extra_compiler_flags, extra_linker_flags. - Suppress .packlist file. - Set the release_status field. Rich.
2013 Sep 12
10
[PATCH] xen/build: Remove hacked up version of figlet
...nt)strlen(x)) /* Eliminate ANSI problem */ - -#define DIRSEP ''/'' -#define DIRSEP2 ''\\'' -/* Leave alone for Unix and MS-DOS/Windows! -Note: ''/'' also used in filename in get_columns(). */ - -#define FONTFILESUFFIX ".flf" -#define FONTFILEMAGICNUMBER "flf2" -#define FSUFFIXLEN MYSTRLEN(FONTFILESUFFIX) -#define CONTROLFILESUFFIX ".flc" -#define CONTROLFILEMAGICNUMBER "flc2" /* no longer used in 2.2 */ -#define CSUFFIXLEN MYSTRLEN(CONTROLFILESUFFIX) -#define DEFAULTCOLUMNS 80 - - -/******************************...
2012 Sep 03
1
[GIT-PULL] XFS filesystem driver
...fs_fs_info *info; + + xfs_debug("fs %p", fs); + + SECTOR_SHIFT(fs) = disk->sector_shift; + SECTOR_SIZE(fs) = 1 << SECTOR_SHIFT(fs); + + if (xfs_read_superblock(fs, &sb)) { + xfs_error("Superblock read failed"); + goto out; + } + + if (!xfs_is_valid_magicnum(&sb)) { + xfs_error("Invalid superblock"); + goto out; + } + + xfs_debug("magicnum 0x%lX", be32_to_cpu(sb.sb_magicnum)); + + info = xfs_new_sb_info(&sb); + if (!info) { + xfs_error("Failed to fill in filesystem-specific info structure"); + goto out;...