| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
|
|
|
|
|
|
| |
issues.
Requested by: rwatson
Backed by: kris
|
|
|
|
|
|
|
| |
This should cause -w's argument not to be ignored in the usermod case,
so it will affect modification of the user's password instead of using
the pw.conf (or internal default=no '*') password method.
PR: bin/11168
|
|
|
|
|
| |
no default group (and thus fall back to user-based groups instead).
PR: bin/5717
|
|
|
|
|
|
|
|
|
|
| |
kernel config file.
- Add WORLD_FLAGS and KERNEL_FLAGS so you can build world and kernel with
extra make options such as -jX to speed up release builds.
- When building kernels, allow their hints to tag along, and use this to
install hints onto the boot floppy. Since the boot floppy doesn't load
loader.4th, we have to change device.hints to strip comments and change
each line to an explicit set command.
|
|
|
|
|
|
| |
target. These are needed by liloldr.
Found by: make release
|
|
|
|
| |
drive is at, so don't print the 'unknown' value, just say nothing.
|
| |
|
|
|
|
|
|
| |
- Note that we are up to about 3600 ports now rather than about 3000 ports.
Submitted by: kris
|
| |
|
|
|
|
|
|
| |
(http://www.isi.edu/xbone). I expect this to go away in due course.
Submitted by: Lars Eggert <larse@ISI.EDU>
|
|
|
|
|
|
| |
-h - to set no password. But only mark modified if the account is not
already locked (i.e. first char of crypt password field is '*').
PR: bin/19999
|
| |
|
|
|
|
|
|
|
|
|
|
| |
- if the dates didn't match, fetch would append the received file to the
existing file instead of replacing it.
- if the local file was complete and up-to-date, fetch would miscalculate
the expected size and report a failure instead of a success, because it
had no way of knowing that the server was actually resending the entire
file since the requested offset was invalid.
|
|
|
|
|
|
| |
than requested. Instead, inform the caller of the real offset by modifying
the offset field in the original struct url, and let him decide how to handle
the situation.
|
| |
|
|
|
|
| |
Submitted by: Mike Meyer <mwm@mired.org>
|
|
|
|
|
| |
is used by the installation of ld-elf.so when an existing version
exists.
|
|
|
|
|
|
|
|
| |
* add an example of how to switch the console keyboard to a USB keyboard.
PR: 18520
Submitted by: n_hibma
Reviewed by: sheldonh
|
|
|
|
|
| |
Suggested by: dcs
Reviewed by: alex, dcs, sheldonh
|
|
|
|
| |
which no longer exists. Updating the entry accordingly.
|
|
|
|
| |
the one we built anyway.
|
|
|
|
|
|
|
|
| |
otherwise, the ng_ether.ko KLD will never be unloadable after
all Ethernet interfaces are detached, as it should be, because
of the lingering extra reference.
Submitted by: "Yevmenkin, Maksim N, CSCIO" <myevmenkin@att.com>
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
due to a paucity of IRQs. I have some reservations about this, so I'm
not going to MFC this just yet. I'm doing this to see how many
problems it causes so we can do this in 4.2. I've been seeing hangs
on my laptop from time to time, but sometimes it was not in polling
mode, other tmies it was. Don't know if this is one problem or more
than one.
Requested by: Sean O Connell
|
|
|
|
| |
PR: bin/20033
|
| |
|
| |
|
|
|
|
| |
Broken by: me
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
lock up under moderate to heavy load.
The status & command fields share a 32-bit longword. The programming
API of the eepro apparently requires that you update the command field
of a transmit slot that you've already given to the card. This means
the card could be updating the status field of the same longword at
the same time. Since alphas can only operate on 32-bit chunks of
memory, both the status & command fields are loaded from memory &
operated on in registers when the following line of C is executed:
sc->cbl_last->cb_command &= ~FXP_CB_COMMAND_S;
The race is caused by the card DMA'ing up the status at just the wrong
time -- after it has been loaded into a register & before it has been
written back. The old value of the status is written back, clobbering
the status the card just DMA'ed up. The fact that the card has sent
this frame is missed & the transmit engine appears to hang.
Luckily, as numerous people on the freebsd-alpha list pointed out, the
load-locked/store-conditional instructions used by the atomic
functions work with respect changes in memory due to I/O devices. We
now use them to safely update the command field.
Tested by: Bernd Walter <ticso@mail.cicely.de>
|
| |
|
| |
|
|\
| |
| |
| | |
which included commits to RCS files with non-trunk default branches.
|
| | |
|
| |
| |
| |
| |
| | |
PR: conf/18614
Submitted by: James Housley <jim@thehousleys.net>
|
| |
| |
| |
| |
| | |
general terms instead. This follows a discussion with alfred,
in which it became clear that I had misunderstood sched_sync().
|
| | |
|
| | |
|
| |
| |
| |
| | |
``ident'' command will expand macros.
|
| |
| |
| |
| | |
Reviewed by: dfr
|
| |
| |
| |
| |
| | |
PR: bin/20025
Submitted by: HIYAMA Takeshi <th@cis.ibaraki.ac.jp>
|
| |
| |
| |
| | |
Change reference from update(4) to syncer(4).
|
| |
| |
| |
| | |
Reviewed by: peter
|
| |
| |
| |
| | |
syncer(4) manual page.
|
| |
| |
| |
| | |
not abble to solicit review from <freebsd-hackers>.
|
| | |
|
| |
| |
| |
| | |
device read only so we can suppot a readonly apm device.
|