Windows error 0x00001004, 4100

Detailed Error Information

DHCP_ADDRESS_CONFLICT[1]

MessageThe DHCP client has obtained an IP address that is already in use on the network. The local interface will be disabled until the DHCP client can obtain a new address.
Declared inwinerror.h

This appears to be a raw Win32 error. More information may be available in error 0x80071004.

HRESULT analysis[2]

This is probably not the correct interpretation of this error. The Win32 error above is more likely to indicate the actual problem.
FlagsSeveritySuccess

This code indicates success, rather than an error. This may not be the correct interpretation of this code, or possibly the program is handling errors incorrectly.

Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode0 (0x000)
NameFACILITY_NULL[2][1]
DescriptionThe default facility code.[2][1]
Error Code4100 (0x1004)

Questions

2votes
0answers

Log file bloat due to nouveau

Both my kern.log and syslog files have grown to >50Gb and contain a few hundred million lines of: Feb 23 23:32:43 Yawning-Angel kernel: [396111.179453] nouveau E[ PFIFO][0000:05:00.0] PBDMA0: ch 2 [Xorg[1074]] subc 0 mthd 0x001c data 0x00001004 Feb 23 23:32:43 Yawning-Angel kernel: [396111.179469] nouveau E[ PFIFO][0000:05:00.0] PBDMA0: ACQUIRE Feb 23 [...] read more
log-files
kernel
syslog
2votes
2answers

C malloc offsets relative to struct definition locations (and padding)

C question: Does malloc'ing a struct always result in linear placement from top to bottom of the data inside? As a second minor question: is there a standard on the padding size, or does it vary between 32 and 64 bit machines? Using this test code: #include <stdio.h> #include <stdlib.h> [...] read more
c
pointers
struct
malloc
padding
0votes
0answers

PWM Missing interrupts on 5121 GPT peripherical

I am trying to operate a custom Linux driver for the MCP5121 GPT peripherical unit working as a PWM. The driver settles an interrupt service with the intention to reload a new duty cycle with every hit. I have checked that the GPT interrupt vector is properly installed and serviced [...] read more
linux
powerpc
pwm
0votes
1answer

GCC Posistion independent code: Variables are not loaded correctly

The Program works fine as a stand alone on CC2650 (M3). But it shall be used also as a firmware which is loaded over the radio channel. For this purpose the position independent code is needed. The problem is, all of the variables defined as described below are not set. [...] read more
c
gcc
position-independent-code
0votes
1answer

STM32F103 SPI Master Slave Receive problem

I try to make master and slave stm32f103 (bluepills) communicate. But I am having trouble with receiving. When I connect my master to logic analyser I can see MOSI as in the picture Logic Analyser In the picture, MOSI is sending "Y" letter. But not all clock pulses same.(I don't [...] read more
stm32
spi
0votes
1answer

Can NSIS DumpLog be used with 64 bit version?

I'm using the 64 bit build of NSIS and everything works except the DumpLog function to write the install log to a file. (NSIS 64 is here: https://bitbucket.org/dgolub/nsis64) DumpLog uses Windows messages to get the text value and it seems the calls are 32 bit only. Here's an example of [...] read more
nsis
0votes
1answer

convert 32-bit words to big endian

I don't understand this question: Consider a system that has a byte-addressable memory organized in 32-bit words according to the big-endian scheme. A program reads 2 integers into an array and stores them in successive locations, starting at location at address 0x00001000. The 2 integers are 1025 and 287,454,020. Show [...] read more
hex

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0