Skip to content

Commit

Permalink
3680 Want a library to allow programatic access to the pci database (…
Browse files Browse the repository at this point in the history
…fix sparc pkg)

3701 Chelsio Terminator 4 NIC driver for illumos (fix sparc pkg)
3676 dt_print_enum hardcodes a value of zero (fix sparc lint)
  • Loading branch information
richlowe committed May 29, 2013
1 parent 3731b53 commit 2974b68
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 4 additions & 2 deletions exception_lists/packaging
Original file line number Diff line number Diff line change
Expand Up @@ -986,8 +986,10 @@ usr/lib/amd64/llib-lsaveargs.ln i386
# libpcidb is private
#
usr/include/pcidb.h
usr/lib/amd64/libpcidb.so
usr/lib/amd64/llib-lpcidb.ln
usr/lib/amd64/libpcidb.so i386
usr/lib/amd64/llib-lpcidb.ln i386
usr/lib/sparcv9/libpcidb.so sparc
usr/lib/sparcv9/llib-lpcidb.ln sparc
usr/lib/libpcidb.so
usr/lib/llib-lpcidb
usr/lib/llib-lpcidb.ln
2 changes: 2 additions & 0 deletions usr/src/lib/libdtrace/common/dt_print.c
Original file line number Diff line number Diff line change
Expand Up @@ -493,9 +493,11 @@ dt_print_enum(ctf_id_t base, ulong_t off, dt_printarg_t *pap)
value = *(uint8_t *)addr;
break;
case sizeof (uint16_t):
/* LINTED - alignment */
value = *(uint16_t *)addr;
break;
case sizeof (int32_t):
/* LINTED - alignment */
value = *(int32_t *)addr;
break;
default:
Expand Down
2 changes: 1 addition & 1 deletion usr/src/pkg/manifests/driver-network-cxgbe.mf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ set name=pkg.description \
set name=pkg.summary value="Chelsio Terminator 4 10GE NIC Driver"
set name=info.classification \
value=org.opensolaris.category.2008:Drivers/Networking
set name=variant.arch value=$(ARCH)
set name=variant.arch value=i386
dir path=kernel group=sys
dir path=kernel/drv group=sys
dir path=kernel/drv/$(ARCH64) group=sys
Expand Down

0 comments on commit 2974b68

Please sign in to comment.