Log the renaming of an interface. This should make it easier to follow

kernel log files.
This commit is contained in:
Brooks Davis 2004-09-18 05:02:08 +00:00
parent ca9b2364c3
commit 71672bb6f6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=135416

View File

@ -1160,6 +1160,9 @@ ifhwioctl(u_long cmd, struct ifnet *ifp, caddr_t data, struct thread *td)
/* Announce the departure of the interface. */
rt_ifannouncemsg(ifp, IFAN_DEPARTURE);
log(LOG_INFO, "%s: changing name to '%s'\n",
ifp->if_xname, new_name);
strlcpy(ifp->if_xname, new_name, sizeof(ifp->if_xname));
ifa = ifaddr_byindex(ifp->if_index);
IFA_LOCK(ifa);